From eea1fd94104ed39b4240e2c2a9ca27305e700ecd Mon Sep 17 00:00:00 2001 From: Dei Vilkinsons <6226576+vilkinsons@users.noreply.github.com> Date: Sat, 14 Dec 2024 01:05:50 +0000 Subject: [PATCH 001/159] H-3809: Update glossary pages (#5900) --- apps/hashdotai/glossary/actor-model.mdx | 8 +++---- .../glossary/agent-based-modeling.mdx | 2 +- apps/hashdotai/glossary/attributes.mdx | 12 ++++++++++ apps/hashdotai/glossary/block-protocol.mdx | 22 +++++++++++-------- apps/hashdotai/glossary/blocks.mdx | 4 ++++ apps/hashdotai/glossary/digital-twin.mdx | 4 ++-- apps/hashdotai/glossary/graphs.mdx | 8 +++---- apps/hashdotai/glossary/properties.mdx | 4 +++- 8 files changed, 43 insertions(+), 21 deletions(-) create mode 100644 apps/hashdotai/glossary/attributes.mdx diff --git a/apps/hashdotai/glossary/actor-model.mdx b/apps/hashdotai/glossary/actor-model.mdx index 14079b79bcf..3ab8b23d0be 100644 --- a/apps/hashdotai/glossary/actor-model.mdx +++ b/apps/hashdotai/glossary/actor-model.mdx @@ -5,7 +5,7 @@ slug: actor-model tags: ["Simulation Modeling", "Software Engineering"] --- -[HASH Engine](/platform/engine) (which powers [HASH Core](/platform/core) and our [cloud compute platform](/platform/cloud)) provides an ultra-fast framework for running large-scale simulations in a distributed fashion. To enable this, an _actor model_ is utilized, and simulations built atop HASH must take this into account. This sets HASH apart from more traditionally _object-oriented_ simulation packages. +[HASH Engine](/platform/engine) provides an ultra-fast framework for running large-scale simulations in a distributed fashion. To enable this, an _actor model_ is utilized, and simulations built atop HASH must take this into account. This sets HASH apart from more traditionally _object-oriented_ simulation packages. ## What is object-oriented simulation? @@ -86,7 +86,7 @@ In the actor model, agents consist of **state**, have **behaviors**, and communi ## Actor-based implementation -The same simulation shown in object-oriented form can easily be implemented using the actor-based framework in HASH. This simulation is available to view and run on [hIndex](https://simulation.hash.ai/@hash/random-coins). We start by initializing the simulation — specifying which agents should be created and setting their initial state. This may be performed declaratively as shown in `init.json` below. +The same simulation shown in object-oriented form can easily be implemented using the actor-based framework in HASH. This simulation is available to view and run on [HASH](https://simulation.hash.ai/@hash/random-coins). We start by initializing the simulation — specifying which agents should be created and setting their initial state. This may be performed declaratively as shown in `init.json` below. ```json [ @@ -108,7 +108,7 @@ The same simulation shown in object-oriented form can easily be implemented usin ] ``` -There a few interesting points of note here. First, agents in hash can create other agents. The simulation is initialized with a single agent which in-turn creates all people agents in the model. Second, behaviors compose with each other. All people agents have two behaviors: `make_bet.js` and `@hash/random-movement/random_movement.rs`. The first is a user-defined behavior which allows an agent to engage in bets, and the second allows agents to move throughout the grid as the simulation progresses — one of the many behaviors made available by the community on [hIndex](https://simulation.hash.ai/index). +There a few interesting points of note here. First, agents in hash can create other agents. The simulation is initialized with a single agent which in-turn creates all people agents in the model. Second, behaviors compose with each other. All people agents have two behaviors: `make_bet.js` and `@hash/random-movement/random_movement.rs`. The first is a user-defined behavior which allows an agent to engage in bets, and the second allows agents to move throughout the grid as the simulation progresses — one of the many behaviors made available by the community on [HASH](https://simulation.hash.ai/index). The `make_bet.js` behavior is shown below. @@ -148,4 +148,4 @@ The behavior logic is similar to that of the object-oriented method, but is cruc The actor model allows HASH to present a user-friendly and intuitive approach to agent-based modelling. Because only agents can modify their own state, the requirement that object-oriented frameworks place on the user to implement lock-based synchronization is removed, allowing for much more scalable world-building. The very same simulations run locally on multiple cores, and scale seamlessly to large clusters running in the cloud. -For users looking for an approach to class inheritance offered by object-oriented programming, HASH provides [Agent Types](https://hash.dev/docs/simulations/behaviors/inheritance). Agents in HASH can have any number of types, allowing agent logic to be similarly clustered, inherited, and attached in the form of grouped behaviors. +For users looking for an approach to class inheritance offered by object-oriented programming, HASH provides [Entity Types](/glossary/entity-types) which allow both [attribute](/glossary/attributes) and [behavior inheritance](https://hash.dev/docs/simulations/create/behaviors/inheritance). Agents in HASH can have any number of types, allowing agent logic to be similarly clustered, inherited, and attached in the form of grouped behaviors. diff --git a/apps/hashdotai/glossary/agent-based-modeling.mdx b/apps/hashdotai/glossary/agent-based-modeling.mdx index 39530c3b698..68ae5bf44f3 100644 --- a/apps/hashdotai/glossary/agent-based-modeling.mdx +++ b/apps/hashdotai/glossary/agent-based-modeling.mdx @@ -7,7 +7,7 @@ tags: ["Simulation Modeling"] ## What is ABM? -An Agent-Based Model (ABM) is a construction of how entities (agents) act in an imagined environment. Typically used as aides when modeling difficult or complex real-world systems, ABMs allow environments to be synthesized in digital form, with differing scenarios run within them, in order to observe how the behavior of agents changes under varying conditions, and itself can impact the broader system. This coevolution, and modeling of interdependencies, can be hard to capture via other means. ABMs are often used in support of probabilistic modeling efforts. +An Agent-Based Model (ABM) is a construction of how [entities](/glossary/entities) (agents) act in an imagined environment. Typically used as aides when modeling difficult or complex real-world systems, ABMs allow environments to be synthesized in digital form, with differing scenarios run within them, in order to observe how the behavior of agents changes under varying conditions, and itself can impact the broader system. This coevolution, and modeling of interdependencies, can be hard to capture via other means. ABMs are often used in support of probabilistic modeling efforts. Agents in ABMs do not necessarily have ‘agency’ in the traditional sense of the word, but should be thought of as component parts of a wider system capable of impacting it and/or being affected by it. Varying any the the number, type, or properties/behaviors of agents can have a ripple effect on the system as a whole. Experiments within ABMs seek to tweak these variables to explore how different scenarios unfold, and what end-states are likely to result. diff --git a/apps/hashdotai/glossary/attributes.mdx b/apps/hashdotai/glossary/attributes.mdx new file mode 100644 index 00000000000..67dd3207b03 --- /dev/null +++ b/apps/hashdotai/glossary/attributes.mdx @@ -0,0 +1,12 @@ +--- +title: Attributes +description: "Attributes are the properties and links that exist on and describe an entity." +slug: attributes +tags: ["Data Science", "Graphs"] +--- + +Attributes describe [entities](/glossary/entities) and are either [properties](/glossary/properties) or [links](/glossary/links). + +The attributes that exist on an entity are determined by an [entity's type](/glossary/entity-types), which in turn defines what kinds of properties and links can be associated with it (through [property types](/glossary/property-types) and [link types](/glossary/link-types)). + +A single entity can be of more than one entity type. For example, a `Person` entity might also be an `Employee`, allowing specific employment-related information to be stored in conjunction with a person's record in HASH. diff --git a/apps/hashdotai/glossary/block-protocol.mdx b/apps/hashdotai/glossary/block-protocol.mdx index 32450889c88..e3e246c3444 100644 --- a/apps/hashdotai/glossary/block-protocol.mdx +++ b/apps/hashdotai/glossary/block-protocol.mdx @@ -13,43 +13,47 @@ tags: ["Software Engineering", "Standards"] The Block Protocol is an open standard which standardizes the means by which [blocks](/glossary/blocks) and applications are able to communicate, so that any block can be embedded in any application, without either one possessing any special knowledge about the other. -The Block Protocol consists of a **Core** specification, and various optional **modules**, each with their own additional specifications. You can learn about these in full by reading the Block Protocol documentation and specification at blockprotocol.org/docs. +The Block Protocol consists of a **Core** specification, and various optional **modules**, each with their own additional specifications. You can learn about these in full by reading the [Block Protocol documentation](https://blockprotocol.org/docs) and [Block Protocol specification](https://blockprotocol.org/spec). -Blocks built in accordance with the Block Protocol are also made available on the Block Protocol Hub, located at blockprotocol.org/hub +Blocks built in accordance with the Block Protocol are also made available on the [Block Protocol Hub](https://blockprotocol.org/hub). A high-level summary of the Block Protocol is provided below. ## Target Audience -The Block Protocol is written for two audiences: +The Block Protocol was designed to be understood by two different audiences: 1. Potential block developers who wish to build interoperable, cross-application blocks 1. Potential embedding application developers who wish to build block-based ‘embedding applications’ that leverage the Block Protocol. +While end-users of block-embedding applications may interface with Block Protocol blocks, they are not required or expected to understand its technical implementation or even be aware of its existence. + ## Architectural Overview ### Block Protocol Core -The Block Protocol Core outlines what constitutes a bare minimum block publishable to the Block Protocol Hub. Namely, a publishable block combines: +The [Block Protocol _Core_](https://blockprotocol.org/spec/core) specification outlines what constitutes a block publishable to the Block Protocol Hub. At minimum, a publishable block combines: - some source code; and - a block metadata file (which can be used to identify a block by potential embedding applications). The combination of these two things is called a **block package**, and it is these that can be submitted for listing on the Block Protocol Hub, for download and use by others as **blocks**. -The Block Protocol Core also defines how modules can be specified. - ### Block Protocol Modules -The Block Protocol Core specifies how a block is defined, and how they communicate with embedding applications. Modules define what blocks and applications can communicate. +While the Block Protocol Core specifies how a block is defined, and how it communicates with an embedding application, modules define what kinds of things blocks and applications can communicate about. Modules provide logical groups of functionality or aim to solve a specific problem related to block-application interaction. Modules are defined in their own specifications that live separate to, but alongside, the Block Protocol Core. Most blocks will want to use one or more modules defined as part of the Block Protocol specification. -For example, the **Graph** module defines the protocol by which blocks can create, read, update or delete **entities** -- as well as any **links** between those entities -- within an embedding application’s datastore. +For example: + +- the [Graph](https://blockprotocol.org/spec/graph) module defines the protocol by which blocks can create, read, update or delete **entities** -- as well as any **links** between those entities -- within an embedding application’s datastore; +- the [Hook](https://blockprotocol.org/spec/hook) module defines a protocol via which embedding applications can take over specific parts of a block to insert a native application experience, if one exists (e.g. a file picker, or photo gallery); +- the [Service](https://blockprotocol.org/spec/service) module provides a standardized capability for blocks to interact with external APIs, without needing to ship with their own API keys or prompt users to insert their own. -There are many different types of modules under discussion for inclusion in the Block Protocol, which are described alongside the specification. +There are many different types of modules under discussion for inclusion in the Block Protocol, which are described [alongside the specification](https://blockprotocol.org/roadmap#new-modules). In their metadata, blocks can declare which modules (and which version of those modules) they support. diff --git a/apps/hashdotai/glossary/blocks.mdx b/apps/hashdotai/glossary/blocks.mdx index 6ee7a5b6442..1473d95ec05 100644 --- a/apps/hashdotai/glossary/blocks.mdx +++ b/apps/hashdotai/glossary/blocks.mdx @@ -24,3 +24,7 @@ A single individual block can be referred to as an ‘instance of a block’, or ## The Block Protocol The [Block Protocol](/glossary/block-protocol) is an open standard for developing blocks, and block-based applications. It defines the methods by which blocks may communicate and interact with the applications that embed them (“embedding applications”). + +## Using blocks + +Blocks are most prominently used within HASH in [pages](/guide/pages). You can learn more about [using blocks within pages](/guide/pages/blocks) in the HASH user guide. diff --git a/apps/hashdotai/glossary/digital-twin.mdx b/apps/hashdotai/glossary/digital-twin.mdx index fde37c107f7..b7734efda46 100644 --- a/apps/hashdotai/glossary/digital-twin.mdx +++ b/apps/hashdotai/glossary/digital-twin.mdx @@ -7,9 +7,9 @@ tags: ["Business Intelligence", "Simulation Modeling"] The term digital twin (sometimes used interchangeably with "synthetic environment") refers to an in-silico, computer simulated analogue to a real-world system. It is often used to describe computer simulations that mirror real-world biological systems, engineering projects (like jet engines, wind turbines, or vehicles), and architectural spaces, as well as individual factories and warehouses within larger supply chains. -These "digital twins" (computer simulations) mirroring real-world counterparts can be placed in different virtual environments. This allows them to be inexpensively and safely examined under a wide range of conditions, often exceeding the number and range of environments affordable or practical to test in the physical, offline world. +These "digital twins" (individual [entities](/glossary/entities) or entire [simulation models](/glossary/simulations)) mirroring real-world counterparts can be placed in different virtual environments, and have their parameters modified, to allow them to be inexpensively and safely examined under a wide range of conditions, often exceeding the number and range of environments affordable or practical to test in the physical, offline world. -These simulations can also be used to generate [synthetic data](/glossary/synthetic-data-generation), perform low-cost tradespace analyses by modifying the digital system, and generate risk assessments by introducing simulated stochastic failures, among other things. +These simulations can also be used to generate [synthetic data](/glossary/synthetic-data-generation), perform low-cost tradespace analyses, and generate risk assessments (e.g. by introducing simulated stochastic failures). All of these things can be fed back into the design of real-world systems, allowing them to be tested and improved online, before being built "in the real world" offline. diff --git a/apps/hashdotai/glossary/graphs.mdx b/apps/hashdotai/glossary/graphs.mdx index ff6b82f86e2..06db4959cb1 100644 --- a/apps/hashdotai/glossary/graphs.mdx +++ b/apps/hashdotai/glossary/graphs.mdx @@ -9,15 +9,15 @@ tags: ["Graphs", "Machine Learning", "Software Engineering"] ### In HASH -In the context of HASH, a graph is a collection of entities which may be connected to other entities by [links](/glossary/links). +In the context of HASH, a graph is a collection of [entities](/glossary/entities) which may be connected to other entities by [links](/glossary/links). -The data in a single HASH workspace can be thought of as a graph, some of which may be kept private, and parts of which may be public. +The data and [types](/glossary/types) in a single HASH workspace are known as a [web](/guide/webs), and these can be thought of as a graph in which some information might be kept private, while other parts may be shared publicly. -The totality of all public data in HASH may also be thought of as a graph, as many individual workspaces are connected through [linked entities](/glossary/entities#Linked-entities) and shared [types](/glossary/types). +The totality of all public data in HASH, sometimes called the "[HASH public web](https://hash.ai/guide/webs#hash-public-web)", may also be thought of as a graph, as many individual workspaces are connected to each other through [linked entities](/glossary/entities#Linked-entities) and shared types. ### In the Block Protocol -The [Block Protocol](/glossary/block-protocol) module which deals with entities and the links between them is known as the _Graph Module_. +The [Block Protocol](/glossary/block-protocol) module which deals with entities and the links between them is known as the _Graph_ module. ### In mathematics and computer science diff --git a/apps/hashdotai/glossary/properties.mdx b/apps/hashdotai/glossary/properties.mdx index 405e0234bcb..bb61d30b884 100644 --- a/apps/hashdotai/glossary/properties.mdx +++ b/apps/hashdotai/glossary/properties.mdx @@ -5,10 +5,12 @@ slug: properties tags: ["Data Science", "Graphs"] --- -Properties store individual pieces of information about [entities](/glossary/entities) as [values](/glossary/values). All properties on an entity are inferred from its [entity type(s)](/glossary/entity-types). +Properties store individual pieces of information about [entities](/glossary/entities) as [values](/glossary/values). All properties on an entity are inferred from that [entity's type(s)](/glossary/entity-types). Property values (the contents of a property field) can either be **required** or **optional**. In either case, marking a property as required or not will be specified on the thing _using the property_ (e.g. the entity type which requires the property) rather than on the property itself. +Properties are one of two kinds of [attributes](/glossary/attributes) (things which describe entities), with the other being [links](/glossary/links). + ## Property types A **property type** is how a property is defined. It can be used by one or more entity types, or _other_ property types. A property type: From 606ff05b2b67c640c607a79608f8dcfa8f6122c1 Mon Sep 17 00:00:00 2001 From: "hash-worker[bot]" <180894564+hash-worker[bot]@users.noreply.github.com> Date: Sat, 14 Dec 2024 01:23:15 +0000 Subject: [PATCH 002/159] Update Rust crate `thiserror` to v2.0.7 (#5912) Co-authored-by: hash-worker[bot] <180894564+hash-worker[bot]@users.noreply.github.com> --- Cargo.lock | 46 +++++++++++++++++++++++----------------------- Cargo.toml | 2 +- 2 files changed, 24 insertions(+), 24 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index e3473a16d53..5f20649b554 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -1167,7 +1167,7 @@ dependencies = [ "image", "insta", "pdfium-render", - "thiserror 2.0.6", + "thiserror 2.0.7", ] [[package]] @@ -1993,7 +1993,7 @@ dependencies = [ "spin 0.9.8", "supports-color", "supports-unicode", - "thiserror 2.0.6", + "thiserror 2.0.7", "tracing", "tracing-error", "tracing-subscriber", @@ -2514,7 +2514,7 @@ dependencies = [ "multiaddr", "serde", "serde-value", - "thiserror 2.0.6", + "thiserror 2.0.7", "tokio-util", "tower 0.5.2", ] @@ -2532,7 +2532,7 @@ dependencies = [ "pin-project-lite", "serde", "serde_json", - "thiserror 2.0.6", + "thiserror 2.0.7", "tokio", ] @@ -2570,7 +2570,7 @@ dependencies = [ "serde", "tachyonix", "test-log", - "thiserror 2.0.6", + "thiserror 2.0.7", "tokio", "tokio-stream", "tokio-util", @@ -2598,7 +2598,7 @@ dependencies = [ "multiaddr", "scc", "serde", - "thiserror 2.0.6", + "thiserror 2.0.7", "tokio", "tokio-util", "tower 0.5.2", @@ -2631,7 +2631,7 @@ dependencies = [ "pin-project", "pin-project-lite", "serde", - "thiserror 2.0.6", + "thiserror 2.0.7", "tokio", "tokio-test", "tokio-util", @@ -2665,7 +2665,7 @@ dependencies = [ "serde_json", "similar-asserts", "test-strategy", - "thiserror 2.0.6", + "thiserror 2.0.7", ] [[package]] @@ -2927,7 +2927,7 @@ dependencies = [ "postgres-types", "serde", "serde_json", - "thiserror 2.0.6", + "thiserror 2.0.7", "tokio", "tokio-postgres", "tracing", @@ -3023,7 +3023,7 @@ dependencies = [ "semver", "serde", "serde_json", - "thiserror 2.0.6", + "thiserror 2.0.7", "time", "tokio", "trait-variant", @@ -3047,7 +3047,7 @@ dependencies = [ "regex", "serde", "serde_json", - "thiserror 2.0.6", + "thiserror 2.0.7", "tokio", "type-system", "url", @@ -3070,7 +3070,7 @@ dependencies = [ "inferno", "serde", "serde_json", - "thiserror 2.0.6", + "thiserror 2.0.7", "tokio", "walkdir", ] @@ -3092,7 +3092,7 @@ dependencies = [ "serde_json", "temporal-client", "temporal-sdk-core-protos", - "thiserror 2.0.6", + "thiserror 2.0.7", "url", "uuid", ] @@ -3291,7 +3291,7 @@ dependencies = [ "serde_json", "serde_with", "text-size", - "thiserror 2.0.6", + "thiserror 2.0.7", ] [[package]] @@ -7149,7 +7149,7 @@ dependencies = [ "slotmap", "temporal-sdk-core-api", "temporal-sdk-core-protos", - "thiserror 2.0.6", + "thiserror 2.0.7", "tokio", "tonic", "tower 0.5.2", @@ -7170,7 +7170,7 @@ dependencies = [ "prost-types", "serde_json", "temporal-sdk-core-protos", - "thiserror 2.0.6", + "thiserror 2.0.7", "tonic", "tracing-core", "url", @@ -7192,7 +7192,7 @@ dependencies = [ "prost-wkt-types", "serde", "serde_json", - "thiserror 2.0.6", + "thiserror 2.0.7", "tonic", "tonic-build", ] @@ -7321,11 +7321,11 @@ dependencies = [ [[package]] name = "thiserror" -version = "2.0.6" +version = "2.0.7" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "8fec2a1820ebd077e2b90c4df007bebf344cd394098a13c563957d0afc83ea47" +checksum = "93605438cbd668185516ab499d589afb7ee1859ea3d5fc8f6b0755e1c7443767" dependencies = [ - "thiserror-impl 2.0.6", + "thiserror-impl 2.0.7", ] [[package]] @@ -7341,9 +7341,9 @@ dependencies = [ [[package]] name = "thiserror-impl" -version = "2.0.6" +version = "2.0.7" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "d65750cab40f4ff1929fb1ba509e9914eb756131cef4210da8d5d700d26f6312" +checksum = "e1d8749b4531af2117677a5fcd12b1348a3fe2b81e36e61ffeac5c4aa3273e36" dependencies = [ "proc-macro2", "quote", @@ -7935,7 +7935,7 @@ dependencies = [ "regex", "serde", "serde_json", - "thiserror 2.0.6", + "thiserror 2.0.7", "tokio", "tsify", "url", diff --git a/Cargo.toml b/Cargo.toml index e2db6a035e5..2c6e24a598c 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -220,7 +220,7 @@ temporal-sdk-core-protos = { git = "https://github.com/temporalio/sdk-core", rev test-fuzz = { version = "=7.0.1", default-features = false } test-log = { version = "=0.2.16", default-features = false } test-strategy = { version = "=0.4.0", default-features = false } -thiserror = { version = "=2.0.6", default-features = false } +thiserror = { version = "=2.0.7", default-features = false } tokio-stream = { version = "=0.1.17", default-features = false } tokio-test = { version = "=0.4.4", default-features = false } tower = { version = "=0.5.2", default-features = false } From 52b1f187b964e9b30b85c15e754e1729e400f283 Mon Sep 17 00:00:00 2001 From: "hash-worker[bot]" <180894564+hash-worker[bot]@users.noreply.github.com> Date: Sat, 14 Dec 2024 04:27:01 +0000 Subject: [PATCH 003/159] Update GitHub Action `taiki-e/install-action` to v2.46.9 (#5913) Co-authored-by: hash-worker[bot] <180894564+hash-worker[bot]@users.noreply.github.com> --- .github/actions/warm-up-repo/action.yml | 2 +- .github/workflows/bench.yml | 4 ++-- .github/workflows/lint.yml | 2 +- .github/workflows/test.yml | 4 ++-- 4 files changed, 6 insertions(+), 6 deletions(-) diff --git a/.github/actions/warm-up-repo/action.yml b/.github/actions/warm-up-repo/action.yml index 9f1c6238c34..8f21185f5a3 100644 --- a/.github/actions/warm-up-repo/action.yml +++ b/.github/actions/warm-up-repo/action.yml @@ -17,7 +17,7 @@ runs: # cache: yarn ## Currently disabled because of frequent timeouts - name: Install WASM tools - uses: taiki-e/install-action@8c39981484df4e7ba41af8e8e078ac546d5e1b11 # v2.46.8 + uses: taiki-e/install-action@e523301c9af289ba196edd3ab08abdece06107d2 # v2.46.9 with: tool: wasm-pack@0.12.1 diff --git a/.github/workflows/bench.yml b/.github/workflows/bench.yml index fe189b31b26..40315237295 100644 --- a/.github/workflows/bench.yml +++ b/.github/workflows/bench.yml @@ -99,7 +99,7 @@ jobs: - name: Install Rust tools if: steps.benches.outputs.has-rust == 'true' - uses: taiki-e/install-action@8c39981484df4e7ba41af8e8e078ac546d5e1b11 # v2.46.8 + uses: taiki-e/install-action@e523301c9af289ba196edd3ab08abdece06107d2 # v2.46.9 with: tool: just@1.34.0,critcmp@0.1.8 @@ -251,7 +251,7 @@ jobs: - name: Install Rust tools if: steps.benches.outputs.has-rust == 'true' - uses: taiki-e/install-action@8c39981484df4e7ba41af8e8e078ac546d5e1b11 # v2.46.8 + uses: taiki-e/install-action@e523301c9af289ba196edd3ab08abdece06107d2 # v2.46.9 with: tool: just@1.34.0,critcmp@0.1.8 diff --git a/.github/workflows/lint.yml b/.github/workflows/lint.yml index 78a119f8998..b63666519ef 100644 --- a/.github/workflows/lint.yml +++ b/.github/workflows/lint.yml @@ -111,7 +111,7 @@ jobs: - name: Install Rust tools if: always() && steps.lints.outputs.has-rust == 'true' - uses: taiki-e/install-action@8c39981484df4e7ba41af8e8e078ac546d5e1b11 # v2.46.8 + uses: taiki-e/install-action@e523301c9af289ba196edd3ab08abdece06107d2 # v2.46.9 with: tool: just@1.34.0,cargo-hack@0.6.30,clippy-sarif@0.6.5,sarif-fmt@0.6.5 diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index 72be3967985..06fb0a11fed 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -163,7 +163,7 @@ jobs: - name: Install Rust tools if: always() && steps.tests.outputs.has-rust == 'true' - uses: taiki-e/install-action@8c39981484df4e7ba41af8e8e078ac546d5e1b11 # v2.46.8 + uses: taiki-e/install-action@e523301c9af289ba196edd3ab08abdece06107d2 # v2.46.9 with: tool: just@1.34.0,cargo-hack@0.6.30,cargo-nextest@0.9.72,cargo-llvm-cov@0.6.11 @@ -281,7 +281,7 @@ jobs: - name: Install Rust tools if: steps.tests.outputs.has-rust == 'true' - uses: taiki-e/install-action@8c39981484df4e7ba41af8e8e078ac546d5e1b11 # v2.46.8 + uses: taiki-e/install-action@e523301c9af289ba196edd3ab08abdece06107d2 # v2.46.9 with: tool: just@1.34.0,cargo-hack@0.6.30,cargo-nextest@0.9.72,cargo-llvm-cov@0.6.11 From 5ea54f48113e8bcdc5997bd03363f5524e62020f Mon Sep 17 00:00:00 2001 From: "hash-worker[bot]" <180894564+hash-worker[bot]@users.noreply.github.com> Date: Sat, 14 Dec 2024 04:32:35 +0000 Subject: [PATCH 004/159] Update npm package `@effect/vitest` to v0.14.7 (#5914) Co-authored-by: hash-worker[bot] <180894564+hash-worker[bot]@users.noreply.github.com> --- libs/@local/harpc/client/typescript/package.json | 2 +- yarn.lock | 12 ++++++------ 2 files changed, 7 insertions(+), 7 deletions(-) diff --git a/libs/@local/harpc/client/typescript/package.json b/libs/@local/harpc/client/typescript/package.json index a6ec83c7303..ada9b0c6b7b 100644 --- a/libs/@local/harpc/client/typescript/package.json +++ b/libs/@local/harpc/client/typescript/package.json @@ -41,7 +41,7 @@ "devDependencies": { "@effect/platform": "0.70.7", "@effect/platform-node": "0.65.7", - "@effect/vitest": "0.14.5", + "@effect/vitest": "0.14.7", "@local/eslint": "0.0.0-private", "@local/tsconfig": "0.0.0-private", "@rust/harpc-wire-protocol": "0.0.0-private", diff --git a/yarn.lock b/yarn.lock index 0169ef13b49..c8d1c2d745f 100644 --- a/yarn.lock +++ b/yarn.lock @@ -5793,13 +5793,13 @@ __metadata: languageName: node linkType: hard -"@effect/vitest@npm:0.14.5": - version: 0.14.5 - resolution: "@effect/vitest@npm:0.14.5" +"@effect/vitest@npm:0.14.7": + version: 0.14.7 + resolution: "@effect/vitest@npm:0.14.7" peerDependencies: - effect: ^3.11.5 + effect: ^3.11.7 vitest: ^2.0.5 - checksum: 10c0/b9592e1143bf2d52b06302c76ce1b25f1133cab6d95232a578f2f05ed673ac1058ff11a295f37ac578b48e6807a19b27965661a741027bf7d5e6c1c7555547cd + checksum: 10c0/2df79062f3cc926473ed1e88e2435d56a4284d99b71347d1353d83b148f0bc9e5d10a914a3a9f7d2c6391cf83ca4faffd470ad628650f7b377ae6a997bcccbd7 languageName: node linkType: hard @@ -9078,7 +9078,7 @@ __metadata: "@chainsafe/libp2p-yamux": "npm:7.0.1" "@effect/platform": "npm:0.70.7" "@effect/platform-node": "npm:0.65.7" - "@effect/vitest": "npm:0.14.5" + "@effect/vitest": "npm:0.14.7" "@libp2p/crypto": "npm:5.0.8" "@libp2p/identify": "npm:3.0.14" "@libp2p/interface": "npm:2.3.0" From da379b98d1320a078a864c4bd65feb734f69b57b Mon Sep 17 00:00:00 2001 From: "hash-worker[bot]" <180894564+hash-worker[bot]@users.noreply.github.com> Date: Sat, 14 Dec 2024 05:26:06 +0000 Subject: [PATCH 005/159] Update `effect` npm packages (#5915) Co-authored-by: hash-worker[bot] <180894564+hash-worker[bot]@users.noreply.github.com> --- apps/hash-api/package.json | 2 +- libs/@local/eslint/package.json | 2 +- libs/@local/graph/sdk/typescript/package.json | 2 +- .../harpc/client/typescript/package.json | 6 +- yarn.lock | 56 +++++++++---------- 5 files changed, 34 insertions(+), 34 deletions(-) diff --git a/apps/hash-api/package.json b/apps/hash-api/package.json index 17390f582db..f2a5adb7c5c 100644 --- a/apps/hash-api/package.json +++ b/apps/hash-api/package.json @@ -73,7 +73,7 @@ "cors": "2.8.5", "cross-env": "7.0.3", "dedent": "0.7.0", - "effect": "3.11.5", + "effect": "3.11.7", "exponential-backoff": "3.1.1", "express": "4.21.2", "express-handlebars": "7.1.3", diff --git a/libs/@local/eslint/package.json b/libs/@local/eslint/package.json index 4a868fc0374..d316c820c3d 100644 --- a/libs/@local/eslint/package.json +++ b/libs/@local/eslint/package.json @@ -24,7 +24,7 @@ "@babel/eslint-parser": "7.25.9", "@eslint/compat": "1.2.4", "@eslint/eslintrc": "3.2.0", - "effect": "3.11.5", + "effect": "3.11.7", "eslint": "9.17.0", "eslint-config-airbnb": "19.0.4", "eslint-config-flat-gitignore": "0.3.0", diff --git a/libs/@local/graph/sdk/typescript/package.json b/libs/@local/graph/sdk/typescript/package.json index 676c893c866..f56a5e92400 100644 --- a/libs/@local/graph/sdk/typescript/package.json +++ b/libs/@local/graph/sdk/typescript/package.json @@ -28,7 +28,7 @@ "@local/harpc-client": "0.0.0-private", "@local/hash-graph-client": "0.0.0-private", "@local/hash-graph-types": "0.0.0-private", - "effect": "3.11.5" + "effect": "3.11.7" }, "devDependencies": { "@local/eslint": "0.0.0-private", diff --git a/libs/@local/harpc/client/typescript/package.json b/libs/@local/harpc/client/typescript/package.json index ada9b0c6b7b..a705d8fac7a 100644 --- a/libs/@local/harpc/client/typescript/package.json +++ b/libs/@local/harpc/client/typescript/package.json @@ -32,15 +32,15 @@ "@libp2p/tcp": "10.0.14", "@multiformats/dns": "1.0.6", "@multiformats/multiaddr": "12.3.4", - "effect": "3.11.5", + "effect": "3.11.7", "it-stream-types": "2.0.2", "libp2p": "2.4.2", "multiformats": "13.3.1", "uint8arraylist": "2.4.8" }, "devDependencies": { - "@effect/platform": "0.70.7", - "@effect/platform-node": "0.65.7", + "@effect/platform": "0.71.2", + "@effect/platform-node": "0.66.2", "@effect/vitest": "0.14.7", "@local/eslint": "0.0.0-private", "@local/tsconfig": "0.0.0-private", diff --git a/yarn.lock b/yarn.lock index c8d1c2d745f..f228dbc7dff 100644 --- a/yarn.lock +++ b/yarn.lock @@ -434,7 +434,7 @@ __metadata: cors: "npm:2.8.5" cross-env: "npm:7.0.3" dedent: "npm:0.7.0" - effect: "npm:3.11.5" + effect: "npm:3.11.7" eslint: "npm:9.17.0" exponential-backoff: "npm:3.1.1" express: "npm:4.21.2" @@ -5753,43 +5753,43 @@ __metadata: languageName: node linkType: hard -"@effect/platform-node-shared@npm:^0.20.7": - version: 0.20.7 - resolution: "@effect/platform-node-shared@npm:0.20.7" +"@effect/platform-node-shared@npm:^0.21.2": + version: 0.21.2 + resolution: "@effect/platform-node-shared@npm:0.21.2" dependencies: "@parcel/watcher": "npm:^2.4.1" multipasta: "npm:^0.2.5" peerDependencies: - "@effect/platform": ^0.70.7 - effect: ^3.11.5 - checksum: 10c0/16553e3479cf00305ce69626f23544f2d2569efe6c8890a1aa84a22e58dcd3d05f2b66616d4284c9008614ab06b57767f1b8049720163c34a55efd58f16e1591 + "@effect/platform": ^0.71.2 + effect: ^3.11.7 + checksum: 10c0/9c283db57751b5eb4ed3b8386a8f74a8e115be897c32d758cab287bcda3f8e52f84060d8b390782d2e61e3ec975d15ce057af6652ba3bbb86936ba8687b986a3 languageName: node linkType: hard -"@effect/platform-node@npm:0.65.7": - version: 0.65.7 - resolution: "@effect/platform-node@npm:0.65.7" +"@effect/platform-node@npm:0.66.2": + version: 0.66.2 + resolution: "@effect/platform-node@npm:0.66.2" dependencies: - "@effect/platform-node-shared": "npm:^0.20.7" + "@effect/platform-node-shared": "npm:^0.21.2" mime: "npm:^3.0.0" undici: "npm:^6.19.7" ws: "npm:^8.18.0" peerDependencies: - "@effect/platform": ^0.70.7 - effect: ^3.11.5 - checksum: 10c0/bc31367ea54cef8bea00dc437729d5f34dc4cc63f4fca33334c4d5fe3c7da82b92cc00cd2fa15ec21a11fc5b59bb4ad6cc1397d39430392f7370fc6e9f558914 + "@effect/platform": ^0.71.2 + effect: ^3.11.7 + checksum: 10c0/5f2246ab10eec32bad19f57260305ede5764b61e85dffed669b24fa18bd8a6b6e47c4687c13efa437edad9772709b4793730356649f1167968301bc5aeb7bc09 languageName: node linkType: hard -"@effect/platform@npm:0.70.7": - version: 0.70.7 - resolution: "@effect/platform@npm:0.70.7" +"@effect/platform@npm:0.71.2": + version: 0.71.2 + resolution: "@effect/platform@npm:0.71.2" dependencies: find-my-way-ts: "npm:^0.1.5" multipasta: "npm:^0.2.5" peerDependencies: - effect: ^3.11.5 - checksum: 10c0/7e4be2bca8f4ad589dbe6d5739aa9e5c4d16bdbddb9ad42cdf7517bb5f29fb1ea187ecd32de1fa422315a032d3dcca33c1f59585efa820e478f1f32534848b70 + effect: ^3.11.7 + checksum: 10c0/8cda4abaa90bcb8e646a8937db97b9cd4d15f2f2daa0cf1197fbfc8a004668823f9fda355a49206999cddbb923225dbd96f50a3782209661411c8334074e8aeb languageName: node linkType: hard @@ -9051,7 +9051,7 @@ __metadata: "@types/babel__core": "npm:^7" "@types/eslint__eslintrc": "npm:2.1.2" "@types/node": "npm:22.10.2" - effect: "npm:3.11.5" + effect: "npm:3.11.7" eslint: "npm:9.17.0" eslint-config-airbnb: "npm:19.0.4" eslint-config-flat-gitignore: "npm:0.3.0" @@ -9076,8 +9076,8 @@ __metadata: dependencies: "@chainsafe/libp2p-noise": "npm:16.0.0" "@chainsafe/libp2p-yamux": "npm:7.0.1" - "@effect/platform": "npm:0.70.7" - "@effect/platform-node": "npm:0.65.7" + "@effect/platform": "npm:0.71.2" + "@effect/platform-node": "npm:0.66.2" "@effect/vitest": "npm:0.14.7" "@libp2p/crypto": "npm:5.0.8" "@libp2p/identify": "npm:3.0.14" @@ -9091,7 +9091,7 @@ __metadata: "@rust/harpc-wire-protocol": "npm:0.0.0-private" "@types/node": "npm:22.10.2" "@vitest/coverage-istanbul": "npm:2.1.8" - effect: "npm:3.11.5" + effect: "npm:3.11.7" eslint: "npm:9.17.0" it-stream-types: "npm:2.0.2" libp2p: "npm:2.4.2" @@ -9179,7 +9179,7 @@ __metadata: "@local/hash-graph-types": "npm:0.0.0-private" "@local/tsconfig": "npm:0.0.0-private" "@vitest/coverage-istanbul": "npm:2.1.8" - effect: "npm:3.11.5" + effect: "npm:3.11.7" eslint: "npm:9.17.0" rimraf: "npm:6.0.1" typescript: "npm:5.6.3" @@ -25262,12 +25262,12 @@ __metadata: languageName: node linkType: hard -"effect@npm:3.11.5": - version: 3.11.5 - resolution: "effect@npm:3.11.5" +"effect@npm:3.11.7": + version: 3.11.7 + resolution: "effect@npm:3.11.7" dependencies: fast-check: "npm:^3.21.0" - checksum: 10c0/5d367ef49254c332ffd5fa506bb9e651c76509c5e4e5ef598aaa92dfbfa78e8824f5f9f9d16720ce504df21097062c91b1a424a10ab06dd2a379d564f069d3ff + checksum: 10c0/e7d7d5ba96b34a0403177ef99102f98788be9a6da6459e54f4dc3cf84915e5f7a1e19373fbf8a5b5f98c9b55e902ef9799b9dbbaf36378e4197e1d9d7a0c859f languageName: node linkType: hard From 516e08bfb99b81f49e02bd7233704fa1924dc5b9 Mon Sep 17 00:00:00 2001 From: "hash-worker[bot]" <180894564+hash-worker[bot]@users.noreply.github.com> Date: Sat, 14 Dec 2024 22:25:57 +0000 Subject: [PATCH 006/159] Update Rust crate `orx-concurrent-vec` to v3.1.0 (#5916) Co-authored-by: hash-worker[bot] <180894564+hash-worker[bot]@users.noreply.github.com> --- Cargo.lock | 20 ++++++++++---------- Cargo.toml | 2 +- 2 files changed, 11 insertions(+), 11 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index 5f20649b554..127080db594 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -5095,9 +5095,9 @@ checksum = "7f6316222b51039f5d61cae27dccf7167ba4d2fe98816e0fe46af8abd27a5ed3" [[package]] name = "orx-concurrent-vec" -version = "3.0.2" +version = "3.1.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "0022bc5fba197582938deb1a944d123c9034242a170d98200d0863e0e6b0157a" +checksum = "186e4c404b07fe4c7937adacd7d81e3468500b577e07bd7fa1ca0cc28f896fdc" dependencies = [ "orx-concurrent-option", "orx-fixed-vec", @@ -5109,9 +5109,9 @@ dependencies = [ [[package]] name = "orx-fixed-vec" -version = "3.10.0" +version = "3.11.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "a599bc903d8f7af099503fa67237aeb51f81918b37ebe043849baf4437168a58" +checksum = "2c76340cf3cb33b8b890d8553164e64acdad5a619f476c60df23c3792bfa1638" dependencies = [ "orx-pinned-vec", "orx-pseudo-default", @@ -5119,9 +5119,9 @@ dependencies = [ [[package]] name = "orx-pinned-concurrent-col" -version = "2.8.0" +version = "2.9.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "859bd0a451eff1c98da539ca79372c2295004e191b24371c2819f2e8c2608496" +checksum = "ad874a35b15c02f49f39e0604e74911c66c2cf25606fde2ea3bdb6d4e438b05d" dependencies = [ "orx-fixed-vec", "orx-pinned-vec", @@ -5131,9 +5131,9 @@ dependencies = [ [[package]] name = "orx-pinned-vec" -version = "3.10.0" +version = "3.11.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "cd9630a8f2fb79750ce034d355fdce8d1729d39f42e76b9b849ddc6b9dda3110" +checksum = "937c374a3c1b494878d2a9c76142041b14a5a59c317358d4ed0b2d4370788ccb" dependencies = [ "orx-pseudo-default", ] @@ -5146,9 +5146,9 @@ checksum = "b97dde303d83e7609797d0c1222a9fb02e66445abc47643cc3d7168fd7c804cc" [[package]] name = "orx-split-vec" -version = "3.10.0" +version = "3.11.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "35e520e3d4ae1c69a0dd0e03751f956f10d990bfa06d20791470aeeda2a758fa" +checksum = "36b38e49b6bc0365b06b6010e775460f49d2da264db4971a385c0806afcc7607" dependencies = [ "orx-pinned-vec", "orx-pseudo-default", diff --git a/Cargo.toml b/Cargo.toml index 2c6e24a598c..3e53cd63fcb 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -189,7 +189,7 @@ once_cell = { version = "=1.20.2", default-features = false } opentelemetry = { version = "=0.27.1", default-features = false } opentelemetry-otlp = { version = "=0.27.0", default-features = false } opentelemetry_sdk = { version = "=0.27.1", default-features = false } -orx-concurrent-vec = { version = "=3.0.2", default-features = false } +orx-concurrent-vec = { version = "=3.1.0", default-features = false } owo-colors = { version = "=4.1.0", default-features = false } paste = { version = "=1.0.15", default-features = false } pin-project = { version = "=1.1.7", default-features = false } From 24733a8ca2d5bbaf97de507fb7d88f47cd61f135 Mon Sep 17 00:00:00 2001 From: "hash-worker[bot]" <180894564+hash-worker[bot]@users.noreply.github.com> Date: Sun, 15 Dec 2024 21:55:22 +0000 Subject: [PATCH 007/159] Update npm package `express-rate-limit` to v7.5.0 (#5918) Co-authored-by: hash-worker[bot] <180894564+hash-worker[bot]@users.noreply.github.com> --- apps/hash-api/package.json | 2 +- yarn.lock | 12 ++++++------ 2 files changed, 7 insertions(+), 7 deletions(-) diff --git a/apps/hash-api/package.json b/apps/hash-api/package.json index f2a5adb7c5c..72166c6285d 100644 --- a/apps/hash-api/package.json +++ b/apps/hash-api/package.json @@ -78,7 +78,7 @@ "express": "4.21.2", "express-handlebars": "7.1.3", "express-http-proxy": "2.1.1", - "express-rate-limit": "7.4.1", + "express-rate-limit": "7.5.0", "fractional-indexing": "2.1.0", "googleapis": "133.0.0", "graphql": "16.9.0", diff --git a/yarn.lock b/yarn.lock index f228dbc7dff..52ffdae6fc2 100644 --- a/yarn.lock +++ b/yarn.lock @@ -440,7 +440,7 @@ __metadata: express: "npm:4.21.2" express-handlebars: "npm:7.1.3" express-http-proxy: "npm:2.1.1" - express-rate-limit: "npm:7.4.1" + express-rate-limit: "npm:7.5.0" fractional-indexing: "npm:2.1.0" googleapis: "npm:133.0.0" graphql: "npm:16.9.0" @@ -27226,12 +27226,12 @@ __metadata: languageName: node linkType: hard -"express-rate-limit@npm:7.4.1": - version: 7.4.1 - resolution: "express-rate-limit@npm:7.4.1" +"express-rate-limit@npm:7.5.0": + version: 7.5.0 + resolution: "express-rate-limit@npm:7.5.0" peerDependencies: - express: 4 || 5 || ^5.0.0-beta.1 - checksum: 10c0/111673b43e7c2eef8bc3b6d5e7b46cabe055782d446b0aa93e55ef277e1c7995366443c16fa92101948dafdf1c4f39523c03adbfcc7c57cbbb9c9131ee374049 + express: ^4.11 || 5 || ^5.0.0-beta.1 + checksum: 10c0/3e96afa05b4f577395688ede37e0cb19901f20c350b32575fb076f3d25176209fb88d3648151755c232aaf304147c58531f070757978f376e2f08326449299fd languageName: node linkType: hard From c6d0d1cf8a616ee9bbcd5e0a8cbadcd9c9306c0d Mon Sep 17 00:00:00 2001 From: "hash-worker[bot]" <180894564+hash-worker[bot]@users.noreply.github.com> Date: Sun, 15 Dec 2024 22:05:52 +0000 Subject: [PATCH 008/159] Update npm package `graphql` to v16.10.0 (#5919) Co-authored-by: hash-worker[bot] <180894564+hash-worker[bot]@users.noreply.github.com> --- apps/hash-api/package.json | 2 +- apps/hash-frontend/package.json | 2 +- apps/plugin-browser/package.json | 2 +- .../@local/hash-isomorphic-utils/package.json | 2 +- tests/hash-backend-integration/package.json | 2 +- tests/hash-playwright/package.json | 2 +- yarn.lock | 20 +++++++++---------- 7 files changed, 16 insertions(+), 16 deletions(-) diff --git a/apps/hash-api/package.json b/apps/hash-api/package.json index 72166c6285d..3c6175c2328 100644 --- a/apps/hash-api/package.json +++ b/apps/hash-api/package.json @@ -81,7 +81,7 @@ "express-rate-limit": "7.5.0", "fractional-indexing": "2.1.0", "googleapis": "133.0.0", - "graphql": "16.9.0", + "graphql": "16.10.0", "graphql-parse-resolve-info": "4.13.0", "graphql-scalars": "1.24.0", "helmet": "4.6.0", diff --git a/apps/hash-frontend/package.json b/apps/hash-frontend/package.json index 9ffca8d4794..50f00a2e603 100644 --- a/apps/hash-frontend/package.json +++ b/apps/hash-frontend/package.json @@ -79,7 +79,7 @@ "graphology-layout-forceatlas2": "0.10.1", "graphology-shortest-path": "2.1.0", "graphology-simple-path": "0.2.0", - "graphql": "16.9.0", + "graphql": "16.10.0", "iframe-resizer": "4.4.5", "immer": "9.0.21", "jsonpath": "1.1.1", diff --git a/apps/plugin-browser/package.json b/apps/plugin-browser/package.json index bfd0df68cc0..55954f20823 100755 --- a/apps/plugin-browser/package.json +++ b/apps/plugin-browser/package.json @@ -40,7 +40,7 @@ "bowser": "2.11.0", "date-fns": "4.1.0", "fractional-indexing": "2.1.0", - "graphql": "16.9.0", + "graphql": "16.10.0", "lodash.debounce": "4.0.8", "react": "18.2.0", "react-dom": "18.2.0", diff --git a/libs/@local/hash-isomorphic-utils/package.json b/libs/@local/hash-isomorphic-utils/package.json index 56effbeb244..143f788cb4f 100644 --- a/libs/@local/hash-isomorphic-utils/package.json +++ b/libs/@local/hash-isomorphic-utils/package.json @@ -68,7 +68,7 @@ "@types/pluralize": "0.0.33", "@vitest/coverage-istanbul": "2.1.8", "eslint": "9.17.0", - "graphql": "16.9.0", + "graphql": "16.10.0", "next": "13.5.5", "prettier": "3.4.2", "react": "18.2.0", diff --git a/tests/hash-backend-integration/package.json b/tests/hash-backend-integration/package.json index 141172d6ae3..e7748e5ec10 100644 --- a/tests/hash-backend-integration/package.json +++ b/tests/hash-backend-integration/package.json @@ -26,7 +26,7 @@ "@rust/hash-graph-type-defs": "0.0.0-private", "execa": "5.1.1", "fractional-indexing": "2.1.0", - "graphql": "16.9.0", + "graphql": "16.10.0", "graphql-request": "3.7.0", "node-fetch": "2.7.0" }, diff --git a/tests/hash-playwright/package.json b/tests/hash-playwright/package.json index f4d7bc1c9d6..0a70fc4828c 100644 --- a/tests/hash-playwright/package.json +++ b/tests/hash-playwright/package.json @@ -18,7 +18,7 @@ "@local/tsconfig": "0.0.0-private", "@playwright/test": "1.49.1", "execa": "5.1.1", - "graphql": "16.9.0", + "graphql": "16.10.0", "js-yaml": "4.1.0" }, "devDependencies": { diff --git a/yarn.lock b/yarn.lock index 52ffdae6fc2..399eb98a873 100644 --- a/yarn.lock +++ b/yarn.lock @@ -443,7 +443,7 @@ __metadata: express-rate-limit: "npm:7.5.0" fractional-indexing: "npm:2.1.0" googleapis: "npm:133.0.0" - graphql: "npm:16.9.0" + graphql: "npm:16.10.0" graphql-parse-resolve-info: "npm:4.13.0" graphql-scalars: "npm:1.24.0" helmet: "npm:4.6.0" @@ -569,7 +569,7 @@ __metadata: graphology-shortest-path: "npm:2.1.0" graphology-simple-path: "npm:0.2.0" graphology-types: "npm:0.24.8" - graphql: "npm:16.9.0" + graphql: "npm:16.10.0" iframe-resizer: "npm:4.4.5" immer: "npm:9.0.21" jsonpath: "npm:1.1.1" @@ -852,7 +852,7 @@ __metadata: file-loader: "npm:6.2.0" fractional-indexing: "npm:2.1.0" fs-extra: "npm:11.1.0" - graphql: "npm:16.9.0" + graphql: "npm:16.10.0" html-loader: "npm:4.2.0" html-webpack-plugin: "npm:5.6.3" lodash.debounce: "npm:4.0.8" @@ -9233,7 +9233,7 @@ __metadata: eslint: "npm:9.17.0" fix-esm-import-path: "npm:1.10.1" fractional-indexing: "npm:2.1.0" - graphql: "npm:16.9.0" + graphql: "npm:16.10.0" id128: "npm:1.6.6" immer: "npm:9.0.21" jsonschema: "npm:1.4.1" @@ -16557,7 +16557,7 @@ __metadata: eslint: "npm:9.17.0" execa: "npm:5.1.1" fractional-indexing: "npm:2.1.0" - graphql: "npm:16.9.0" + graphql: "npm:16.10.0" graphql-request: "npm:3.7.0" node-fetch: "npm:2.7.0" rimraf: "npm:6.0.1" @@ -16620,7 +16620,7 @@ __metadata: "@playwright/test": "npm:1.49.1" eslint: "npm:9.17.0" execa: "npm:5.1.1" - graphql: "npm:16.9.0" + graphql: "npm:16.10.0" js-yaml: "npm:4.1.0" rimraf: "npm:6.0.1" typescript: "npm:5.6.3" @@ -29340,10 +29340,10 @@ __metadata: languageName: node linkType: hard -"graphql@npm:16.9.0": - version: 16.9.0 - resolution: "graphql@npm:16.9.0" - checksum: 10c0/a8850f077ff767377237d1f8b1da2ec70aeb7623cdf1dfc9e1c7ae93accc0c8149c85abe68923be9871a2934b1bce5a2496f846d4d56e1cfb03eaaa7ddba9b6a +"graphql@npm:16.10.0": + version: 16.10.0 + resolution: "graphql@npm:16.10.0" + checksum: 10c0/303730675538c8bd6c76b447dc6f03e61242e2d2596b408c34759666ec4877409e5593a7a0467d590ac5407b8c663b093b599556a77f24f281abea69ddc53de6 languageName: node linkType: hard From 51d230ec99c402374ed3b75b84461f7cd096ab67 Mon Sep 17 00:00:00 2001 From: Bilal Mahmoud Date: Mon, 16 Dec 2024 13:19:46 +0100 Subject: [PATCH 009/159] H-3818: Switch to stricter ESLint configuration for `@local/harpc-client` (#5920) --- libs/@local/eslint/src/builtIn.ts | 15 ++++ libs/@local/eslint/src/index.ts | 4 + libs/@local/eslint/src/jsdoc.ts | 17 ++++ libs/@local/eslint/src/unicorn.ts | 2 + libs/@local/eslint/src/vitest.ts | 27 ++++++ .../harpc/client/typescript/eslint.config.js | 20 ++--- .../typescript/src/binary/MutableBytes.ts | 33 ++++--- .../client/typescript/src/codec/Decoder.ts | 13 ++- .../client/typescript/src/codec/Encoder.ts | 13 ++- .../typescript/src/codec/JsonDecoder.ts | 17 ++-- .../harpc/client/typescript/src/net/Client.ts | 4 + .../harpc/client/typescript/src/net/Config.ts | 28 +++--- .../client/typescript/src/net/Connection.ts | 32 ++++--- .../typescript/src/net/NetworkLogger.ts | 8 +- .../client/typescript/src/net/Request.ts | 15 ++-- .../client/typescript/src/net/Response.ts | 11 ++- .../client/typescript/src/net/Transaction.ts | 9 +- .../client/typescript/src/net/Transport.ts | 17 +--- .../harpc/client/typescript/src/net/index.ts | 2 +- .../typescript/src/net/internal/multiaddr.ts | 2 + .../src/net/internal/networkLogger.ts | 64 +++++++++----- .../typescript/src/net/internal/transport.ts | 61 ++++++++----- .../client/typescript/src/types/ErrorCode.ts | 27 +++--- .../src/types/ProcedureDescriptor.ts | 4 +- .../typescript/src/types/ProcedureId.ts | 21 +++-- .../typescript/src/types/ResponseKind.ts | 17 ++-- .../src/types/SubsystemDescriptor.ts | 4 +- .../typescript/src/types/SubsystemId.ts | 21 +++-- .../client/typescript/src/types/Version.ts | 3 +- .../harpc/client/typescript/src/utils.ts | 21 +++-- .../typescript/src/wire-protocol/Buffer.ts | 48 ++++++---- .../src/wire-protocol/RequestIdProducer.ts | 3 + .../src/wire-protocol/models/Payload.ts | 5 +- .../src/wire-protocol/models/Protocol.ts | 5 +- .../wire-protocol/models/ProtocolVersion.ts | 3 +- .../wire-protocol/models/request/Request.ts | 7 +- .../models/request/RequestBegin.ts | 4 +- .../models/request/RequestBody.ts | 15 ++-- .../models/request/RequestFlags.ts | 18 ++-- .../models/request/RequestFrame.ts | 3 +- .../models/request/RequestHeader.ts | 3 +- .../wire-protocol/models/request/RequestId.ts | 3 +- .../wire-protocol/models/response/Response.ts | 7 +- .../models/response/ResponseBegin.ts | 3 +- .../models/response/ResponseBody.ts | 15 ++-- .../models/response/ResponseFlags.ts | 18 ++-- .../models/response/ResponseFrame.ts | 3 +- .../models/response/ResponseHeader.ts | 3 +- .../stream/RequestToBytesStream.ts | 48 ++++------ .../stream/ResponseFromBytesStream.ts | 88 ++++++++----------- .../tests/codec/JsonDecoder.test.ts | 5 ++ .../tests/codec/JsonEncoder.test.ts | 2 + .../typescript/tests/net/Request.test.ts | 5 +- .../tests/wire-protocol/decode.test.ts | 6 +- .../tests/wire-protocol/encode.test.ts | 13 ++- .../typescript/tests/wire-protocol/utils.ts | 5 +- .../harpc/client/typescript/vitest.config.ts | 1 - 57 files changed, 542 insertions(+), 329 deletions(-) create mode 100644 libs/@local/eslint/src/jsdoc.ts create mode 100644 libs/@local/eslint/src/vitest.ts diff --git a/libs/@local/eslint/src/builtIn.ts b/libs/@local/eslint/src/builtIn.ts index 01b0ff48bf9..b6656519502 100644 --- a/libs/@local/eslint/src/builtIn.ts +++ b/libs/@local/eslint/src/builtIn.ts @@ -1,5 +1,6 @@ import { Array as ReadonlyArray, Option, pipe, Predicate } from "effect"; import type { PartialDeep } from "type-fest"; +import { baseNoRestrictedSyntaxRules } from "eslint-config-sheriff"; import type { NoRestrictedImportsRule } from "./types.js"; import { defineConfig, type ESConfig } from "./utils.js"; @@ -89,6 +90,20 @@ export const builtIn = allowAsStatement: true, }, ], + // remap the `ClassDeclaration` rule to exclude `Error` classes + "no-restricted-syntax": [ + "error", + ...baseNoRestrictedSyntaxRules.map((rule) => + rule.selector === "ClassDeclaration" + ? { + selector: "ClassDeclaration[id.name!=/Error$/]", + message: rule.message, + } + : rule, + ), + ], + // exclude forEach from `array-callback-return`, as it only checks by name, not by type and clashes with effect. + "array-callback-return": ["error", { allowImplicit: true }], }, }, ...noRestrictedImports(config, options.noRestrictedImports ?? (() => [])), diff --git a/libs/@local/eslint/src/index.ts b/libs/@local/eslint/src/index.ts index c7201dcc325..d92cb3e8143 100644 --- a/libs/@local/eslint/src/index.ts +++ b/libs/@local/eslint/src/index.ts @@ -9,7 +9,9 @@ import { react } from "./react.js"; import { stylistic } from "./stylistic.js"; import type { NoRestrictedImportsRule } from "./types.js"; import { typescript } from "./typescript.js"; +import { jsdoc } from "./jsdoc.js"; import { unicorn } from "./unicorn.js"; +import { vitest } from "./vitest.js"; import { projectIgnoreFiles, type ESConfig } from "./utils.js"; export type * from "./types.js"; @@ -60,5 +62,7 @@ export const create = ( react(options ?? {}), typescript, stylistic, + jsdoc, + vitest(options ?? {}), ); }; diff --git a/libs/@local/eslint/src/jsdoc.ts b/libs/@local/eslint/src/jsdoc.ts new file mode 100644 index 00000000000..5d0e6506d78 --- /dev/null +++ b/libs/@local/eslint/src/jsdoc.ts @@ -0,0 +1,17 @@ +import { Array } from "effect"; + +import type { ESConfig } from "./utils.js"; + +export const jsdoc = (config: readonly ESConfig[]): readonly ESConfig[] => + Array.appendAll(config, [ + { + rules: { + "jsdoc/require-description": [ + "error", + { exemptedBy: ["inheritdoc", "internal"] }, + ], + // conflicts with tsdoc + "jsdoc/check-tag-names": "off", + }, + }, + ]); diff --git a/libs/@local/eslint/src/unicorn.ts b/libs/@local/eslint/src/unicorn.ts index b6356b5c44f..4a29f4df686 100644 --- a/libs/@local/eslint/src/unicorn.ts +++ b/libs/@local/eslint/src/unicorn.ts @@ -154,6 +154,8 @@ export const unicorn = (config: readonly ESConfig[]): readonly ESConfig[] => // spread operator. It's also a very common pattern in functional // programming. "unicorn/no-array-reduce": "off", + // This doesn't work well with `effect/Data/TaggedError`. + "unicorn/throw-new-error": "off", }, }, preventAbbreviations(), diff --git a/libs/@local/eslint/src/vitest.ts b/libs/@local/eslint/src/vitest.ts new file mode 100644 index 00000000000..d0efdad0bde --- /dev/null +++ b/libs/@local/eslint/src/vitest.ts @@ -0,0 +1,27 @@ +import type { PartialDeep } from "type-fest"; +import { Array } from "effect"; +import { testsFilePatterns } from "eslint-config-sheriff"; + +import type { ESConfig } from "./utils.js"; + +import type { Options } from "./index.js"; + +export const vitest = + (options: PartialDeep) => + (config: readonly ESConfig[]): readonly ESConfig[] => { + if (!options.enabled?.tests) { + return config; + } + + return Array.appendAll(config, [ + { + files: [...testsFilePatterns], + rules: { + // this rule is too buggy + "vitest/require-hook": "off", + // in tests non-null assertions are fine + "@typescript-eslint/no-non-null-assertion": "off", + }, + }, + ]); + }; diff --git a/libs/@local/harpc/client/typescript/eslint.config.js b/libs/@local/harpc/client/typescript/eslint.config.js index 9b68b9bc5bd..27d065afde7 100644 --- a/libs/@local/harpc/client/typescript/eslint.config.js +++ b/libs/@local/harpc/client/typescript/eslint.config.js @@ -1,17 +1,17 @@ -import { createBase } from "@local/eslint/deprecated"; +import { create } from "@local/eslint"; export default [ - ...createBase(import.meta.dirname), + ...create(import.meta.dirname, { + enabled: { + frontend: false, + playwright: false, + tests: true, + storybook: false, + }, + }), { rules: { - "@typescript-eslint/no-redeclare": "off", - "unicorn/filename-case": "off", - "func-names": "off", - "canonical/filename-no-index": "off", - "@typescript-eslint/no-empty-object-type": [ - "error", - { allowInterfaces: "with-single-extends" }, - ], + "fsecond/prefer-destructured-optionals": "off", }, }, ]; diff --git a/libs/@local/harpc/client/typescript/src/binary/MutableBytes.ts b/libs/@local/harpc/client/typescript/src/binary/MutableBytes.ts index 63239c4f98f..0afe375f431 100644 --- a/libs/@local/harpc/client/typescript/src/binary/MutableBytes.ts +++ b/libs/@local/harpc/client/typescript/src/binary/MutableBytes.ts @@ -3,6 +3,7 @@ import { Match, Option, Pipeable, Predicate } from "effect"; import { createProto } from "../utils.js"; const TypeId: unique symbol = Symbol("@local/harpc-client/binary/Bytes"); + export type TypeId = typeof TypeId; export type GrowthStrategy = "doubling" | "linear" | "exponential"; @@ -38,13 +39,13 @@ export const make = (options?: { /** * The initial capacity of the buffer. * - * @default 1024 + * @defaultValue 1024 */ readonly initialCapacity?: number; /** * The strategy for growing the buffer when more space is needed. * - * @default "doubling" + * @defaultValue "doubling" */ readonly growthStrategy?: GrowthStrategy; }): MutableBytes => @@ -74,8 +75,10 @@ const allocate = (self: MutableBytes, newCapacity: number) => { const impl = self as MutableBytesImpl; const newBuffer = new ArrayBuffer(newCapacity); + new Uint8Array(newBuffer).set(new Uint8Array(impl.inner)); impl.inner = newBuffer; + return self; }; @@ -86,11 +89,12 @@ const requiredCapacity = (self: MutableBytes, minimum: number) => { while (next < minimum) { next = Match.value(impl.growthStrategy).pipe( - // eslint-disable-next-line no-loop-func + // eslint-disable-next-line @typescript-eslint/no-loop-func Match.when(Match.is("doubling"), () => next * 2), Match.when( Match.is("linear"), - // eslint-disable-next-line no-loop-func + + // eslint-disable-next-line @typescript-eslint/no-loop-func () => next + // if the initialCapacity is 0 we should use the default, otherwise this turns into an infinite loop @@ -98,7 +102,7 @@ const requiredCapacity = (self: MutableBytes, minimum: number) => { ? DEFAULT_INITIAL_CAPACITY : impl.initialCapacity), ), - // eslint-disable-next-line no-loop-func + // eslint-disable-next-line @typescript-eslint/no-loop-func Match.when(Match.is("exponential"), () => next ** 2), Match.exhaustive, ); @@ -133,13 +137,16 @@ export const appendArray = ( return self; } - const totalLength = bytes.reduce((acc, b) => acc + b.byteLength, 0); + const totalLength = bytes.reduce( + (accumulator, b) => accumulator + b.byteLength, + 0, + ); reserve(self, totalLength); for (const array of bytes) { new Uint8Array(impl.inner).set(array, impl.length); - impl.length += array.byteLength; + impl.length = impl.length + array.byteLength; } return self; @@ -160,20 +167,23 @@ export const append = ( return self; } - const totalLength = other.reduce((acc, b) => acc + length(b), 0); + const totalLength = other.reduce( + (accumulator, b) => accumulator + length(b), + 0, + ); reserve(self, totalLength); for (const array of other) { new Uint8Array(impl.inner).set(asArray(array), impl.length); - impl.length += length(array); + impl.length = impl.length + length(array); } return self; }; /** - * Split the bytes object, so that bytes object contains `[at,length)` and the rest is returned as a new bytes object + * Split the bytes object, so that bytes object contains `[at,length)` and the rest is returned as a new bytes object. */ export const splitTo = (self: MutableBytes, at: number) => { if (at > length(self)) { @@ -186,10 +196,11 @@ export const splitTo = (self: MutableBytes, at: number) => { initialCapacity: at, growthStrategy: impl.growthStrategy, }); + appendBuffer(destination, impl.inner.slice(0, at)); impl.inner = impl.inner.slice(at); - impl.length -= at; + impl.length = impl.length - at; return Option.some(destination); }; diff --git a/libs/@local/harpc/client/typescript/src/codec/Decoder.ts b/libs/@local/harpc/client/typescript/src/codec/Decoder.ts index 7d601715b58..10018811056 100644 --- a/libs/@local/harpc/client/typescript/src/codec/Decoder.ts +++ b/libs/@local/harpc/client/typescript/src/codec/Decoder.ts @@ -1,10 +1,18 @@ -import type { ParseResult, Schema, Stream } from "effect"; -import { Data, Function, Inspectable, Pipeable } from "effect"; +import { + type ParseResult, + type Schema, + type Stream, + Data, + Function, + Inspectable, + Pipeable, +} from "effect"; import { GenericTag } from "effect/Context"; import { createProto } from "../utils.js"; const TypeId: unique symbol = Symbol("@local/harpc-client/codec/Decoder"); + export type TypeId = typeof TypeId; export class DecodingError extends Data.TaggedError("DecodingError")<{ @@ -67,6 +75,7 @@ const DecoderProto: Omit = { }, }; +// eslint-disable-next-line @typescript-eslint/no-non-null-assertion -- description is defined export const Decoder = GenericTag(TypeId.description!); export const make = ( diff --git a/libs/@local/harpc/client/typescript/src/codec/Encoder.ts b/libs/@local/harpc/client/typescript/src/codec/Encoder.ts index cafef748f13..9a284c5b3b4 100644 --- a/libs/@local/harpc/client/typescript/src/codec/Encoder.ts +++ b/libs/@local/harpc/client/typescript/src/codec/Encoder.ts @@ -1,10 +1,18 @@ -import type { ParseResult, Schema, Stream } from "effect"; -import { Data, Function, Inspectable, Pipeable } from "effect"; +import { + type ParseResult, + type Schema, + type Stream, + Data, + Function, + Inspectable, + Pipeable, +} from "effect"; import { GenericTag } from "effect/Context"; import { createProto } from "../utils.js"; const TypeId: unique symbol = Symbol("@local/harpc-client/codec/Encoder"); + export type TypeId = typeof TypeId; export class EncodingError extends Data.TaggedError("EncodingError")<{ @@ -67,6 +75,7 @@ const EncoderProto: Omit = { }, }; +// eslint-disable-next-line @typescript-eslint/no-non-null-assertion -- description is defined export const Encoder = GenericTag(TypeId.description!); export const make = ( diff --git a/libs/@local/harpc/client/typescript/src/codec/JsonDecoder.ts b/libs/@local/harpc/client/typescript/src/codec/JsonDecoder.ts index e51531cb81b..1d95c07b175 100644 --- a/libs/@local/harpc/client/typescript/src/codec/JsonDecoder.ts +++ b/libs/@local/harpc/client/typescript/src/codec/JsonDecoder.ts @@ -3,6 +3,7 @@ import { TextDecoder } from "node:util"; import { Data, Effect, Layer, Option, pipe, Schema, Stream } from "effect"; import { InvalidUtf8Error } from "../ClientError.js"; + import * as Decoder from "./Decoder.js"; // 1E is the ASCII record separator character, and is invalid in JSON. @@ -49,20 +50,23 @@ const processArrayBuffer = ( while (slice.byteLength > 0) { const separatorPosition = pipe( new Uint8Array(slice), - (array) => array.findIndex((byte) => byte === SEPARATOR), + (array) => array.indexOf(SEPARATOR), Option.liftPredicate((position) => position >= 0), ); if (Option.isNone(separatorPosition)) { - fragment += yield* textDecode(decoder, slice, { stream: true }); + fragment = + fragment + (yield* textDecode(decoder, slice, { stream: true })); return [fragment, items] as const; } const left = slice.slice(0, separatorPosition.value); + slice = slice.slice(separatorPosition.value + 1); - fragment += yield* textDecode(decoder, left, { stream: false }); + fragment = + fragment + (yield* textDecode(decoder, left, { stream: false })); if (Option.isSome(decodeText)) { items.push(yield* decodeText.value(fragment)); @@ -80,7 +84,7 @@ interface Options { schema: boolean; } -const decoder = (options: Options) => +const make = (options: Options) => Decoder.make((input, schema) => { const useSchema = options.schema; @@ -105,6 +109,7 @@ const decoder = (options: Options) => useSchema ? Option.some(decodeJson) : Option.none(), ); + // eslint-disable-next-line require-atomic-updates -- this is correct, as the stream runs sequentially fragment = nextFragment; return items; @@ -113,7 +118,7 @@ const decoder = (options: Options) => ); }); -export const layer = Layer.succeed(Decoder.Decoder, decoder({ schema: true })); +export const layer = Layer.succeed(Decoder.Decoder, make({ schema: true })); /** * Like `layer`, but won't invoke the schema decoder, therefore neither transforming or validating the input. @@ -121,5 +126,5 @@ export const layer = Layer.succeed(Decoder.Decoder, decoder({ schema: true })); */ export const layerUnchecked = Layer.succeed( Decoder.Decoder, - decoder({ schema: false }), + make({ schema: false }), ); diff --git a/libs/@local/harpc/client/typescript/src/net/Client.ts b/libs/@local/harpc/client/typescript/src/net/Client.ts index f2b87465aa2..c09694aff8b 100644 --- a/libs/@local/harpc/client/typescript/src/net/Client.ts +++ b/libs/@local/harpc/client/typescript/src/net/Client.ts @@ -2,11 +2,13 @@ import { Effect, Function, Layer, type Scope } from "effect"; import { GenericTag } from "effect/Context"; import { createProto } from "../utils.js"; + import * as Connection from "./Connection.js"; import * as internalTransport from "./internal/transport.js"; import type * as Transport from "./Transport.js"; const TypeId: unique symbol = Symbol("@local/harpc-client/net/Client"); + export type TypeId = typeof TypeId; export interface ClientConfig { @@ -27,10 +29,12 @@ const ClientProto: Omit = { [TypeId]: TypeId, }; +// eslint-disable-next-line @typescript-eslint/no-non-null-assertion -- TypeId is defined export const Client = GenericTag(TypeId.description!); // TODO: add a metrics compatability layer // see: https://linear.app/hash/issue/H-3712/libp2p-metrics-compatibility-layer + export const make = (config?: ClientConfig) => Effect.gen(function* () { const client = yield* internalTransport.make(config?.transport); diff --git a/libs/@local/harpc/client/typescript/src/net/Config.ts b/libs/@local/harpc/client/typescript/src/net/Config.ts index 9833e4a0bc3..b89966d2f52 100644 --- a/libs/@local/harpc/client/typescript/src/net/Config.ts +++ b/libs/@local/harpc/client/typescript/src/net/Config.ts @@ -13,39 +13,39 @@ export interface KeyPair { privateKey: Uint8Array; } -export interface ICryptoInterface { - hashSHA256(data: Uint8Array | Uint8ArrayList): Uint8Array; +export interface CryptoInterface { + hashSHA256: (data: Uint8Array | Uint8ArrayList) => Uint8Array; - getHKDF( + getHKDF: ( ck: Uint8Array, ikm: Uint8Array, - ): [Uint8Array, Uint8Array, Uint8Array]; + ) => [Uint8Array, Uint8Array, Uint8Array]; - generateX25519KeyPair(): KeyPair; - generateX25519KeyPairFromSeed(seed: Uint8Array): KeyPair; - generateX25519SharedKey( + generateX25519KeyPair: () => KeyPair; + generateX25519KeyPairFromSeed: (seed: Uint8Array) => KeyPair; + generateX25519SharedKey: ( privateKey: Uint8Array | Uint8ArrayList, publicKey: Uint8Array | Uint8ArrayList, - ): Uint8Array; + ) => Uint8Array; - chaCha20Poly1305Encrypt( + chaCha20Poly1305Encrypt: ( plaintext: Uint8Array | Uint8ArrayList, nonce: Uint8Array, ad: Uint8Array, k: Uint8Array, - ): Uint8ArrayList | Uint8Array; - chaCha20Poly1305Decrypt( + ) => Uint8ArrayList | Uint8Array; + chaCha20Poly1305Decrypt: ( ciphertext: Uint8Array | Uint8ArrayList, nonce: Uint8Array, ad: Uint8Array, k: Uint8Array, - dst?: Uint8Array, - ): Uint8ArrayList | Uint8Array; + destination?: Uint8Array, + ) => Uint8ArrayList | Uint8Array; } export interface NoiseConfig { staticNoiseKey?: Uint8Array; extensions?: NoiseExtensions; - crypto?: ICryptoInterface; + crypto?: CryptoInterface; prologueBytes?: Uint8Array; } diff --git a/libs/@local/harpc/client/typescript/src/net/Connection.ts b/libs/@local/harpc/client/typescript/src/net/Connection.ts index e4b674b80c0..bf3157f184e 100644 --- a/libs/@local/harpc/client/typescript/src/net/Connection.ts +++ b/libs/@local/harpc/client/typescript/src/net/Connection.ts @@ -1,5 +1,6 @@ -import type { Chunk, Scope } from "effect"; import { + type Chunk, + type Scope, Deferred, Duration, Effect, @@ -15,18 +16,24 @@ import { GenericTag } from "effect/Context"; import { createProto } from "../utils.js"; import { Buffer } from "../wire-protocol/index.js"; -import type { RequestId } from "../wire-protocol/models/request/index.js"; -import { Request as WireRequest } from "../wire-protocol/models/request/index.js"; -import type { Response as WireResponse } from "../wire-protocol/models/response/index.js"; -import { ResponseFlags } from "../wire-protocol/models/response/index.js"; +import { + type RequestId, + Request as WireRequest, +} from "../wire-protocol/models/request/index.js"; +import { + type Response as WireResponse, + ResponseFlags, +} from "../wire-protocol/models/response/index.js"; import { ResponseFromBytesStream } from "../wire-protocol/stream/index.js"; import type { IncompleteResponseError } from "../wire-protocol/stream/ResponseFromBytesStream.js"; + import * as internalTransport from "./internal/transport.js"; import * as Request from "./Request.js"; import * as Transaction from "./Transaction.js"; import * as Transport from "./Transport.js"; const TypeId: unique symbol = Symbol("@local/harpc-client/net/Connection"); + export type TypeId = typeof TypeId; interface ConnectionDuplex { @@ -50,16 +57,16 @@ export interface ConnectionConfig { * The maximum duration to wait for a response before considering the transaction lagged. * If a response is not received within this timeout, the transaction will be dropped. * - * @default 200ms + * @defaultValue 200ms */ lagTimeout?: Duration.DurationInput; /** * The size of the number of buffered responses to keep in memory. * A larger buffer can improve performance and allows for more lenient timeouts, - * but consumes more memory. (a single response is a maximum of 64KiB) + * but consumes more memory. (a single response is a maximum of 64KiB). * - * @default 16 + * @defaultValue 16 */ responseBufferSize?: number; @@ -78,7 +85,7 @@ export interface ConnectionConfig { * will be transferring a lot of data or the stream will be open for a long time * consider upgrading to a direct connection before opening the stream. * - * @default false + * @defaultValue false */ runOnLimitedConnection?: boolean; } @@ -110,15 +117,16 @@ const ConnectionProto: Omit< [TypeId]: TypeId, }; +// eslint-disable-next-line @typescript-eslint/no-non-null-assertion -- always defined export const Connection = GenericTag(TypeId.description!); const makeSink = (connection: ConnectionImpl) => - // eslint-disable-next-line unicorn/no-array-for-each Sink.forEach((response: WireResponse.Response) => Effect.gen(function* () { const id = response.header.requestId; const transaction = MutableHashMap.get(connection.transactions, id); + if (Option.isNone(transaction)) { yield* Effect.logWarning("response without a transaction found"); @@ -163,6 +171,7 @@ const wrapDrop = ( ) => Effect.gen(function* () { const transaction = MutableHashMap.get(connection.transactions, id); + if (Option.isNone(transaction)) { yield* Effect.logWarning("transaction has been dropped multiple times"); @@ -174,6 +183,7 @@ const wrapDrop = ( // call user defined drop function const dropImpl = yield* Deferred.poll(drop); + if (Option.isSome(dropImpl)) { yield* dropImpl.value; } @@ -233,6 +243,7 @@ export const makeUnchecked = ( yield* WireRequest.encode(buffer, request); const array = yield* Buffer.take(buffer); + return new Uint8Array(array); }), ), @@ -274,6 +285,7 @@ export const send: { request: Request.Request, ): Effect.Effect> => Effect.gen(function* () { + // eslint-disable-next-line @typescript-eslint/no-invalid-void-type -- it's indeed correct here const deferredDrop = yield* Deferred.make(); const drop = wrapDrop(self, request.id, deferredDrop); diff --git a/libs/@local/harpc/client/typescript/src/net/NetworkLogger.ts b/libs/@local/harpc/client/typescript/src/net/NetworkLogger.ts index a4eebf192a6..554f28f3dc7 100644 --- a/libs/@local/harpc/client/typescript/src/net/NetworkLogger.ts +++ b/libs/@local/harpc/client/typescript/src/net/NetworkLogger.ts @@ -2,9 +2,11 @@ import type { ComponentLogger, Logger } from "@libp2p/interface"; import { Effect, LogLevel, Runtime } from "effect"; import { createProto } from "../utils.js"; + import * as internal from "./internal/networkLogger.js"; const TypeId: unique symbol = Symbol("@local/harpc-client/net/Logger"); + export type TypeId = typeof TypeId; export type Formatter = internal.Formatter; @@ -20,10 +22,10 @@ interface NetworkLoggerImpl extends NetworkLogger { readonly runtime: Runtime.Runtime; - logger( + logger: ( name: string, level: LogLevel.LogLevel, - ): (formatter: unknown, ...args: ReadonlyArray) => void; + ) => (formatter: unknown, ...args: readonly unknown[]) => void; } const NetworkLoggerProto: Omit = { @@ -32,7 +34,7 @@ const NetworkLoggerProto: Omit = { logger(this: NetworkLoggerImpl, name: string, level: LogLevel.LogLevel) { const fork = Runtime.runFork(this.runtime); - return (formatter: unknown, ...args: ReadonlyArray) => { + return (formatter: unknown, ...args: readonly unknown[]) => { const effect = internal .format(this.formatters, level, formatter, args) .pipe(Effect.withSpan(name)); diff --git a/libs/@local/harpc/client/typescript/src/net/Request.ts b/libs/@local/harpc/client/typescript/src/net/Request.ts index e24fc33a027..2f0b7111c60 100644 --- a/libs/@local/harpc/client/typescript/src/net/Request.ts +++ b/libs/@local/harpc/client/typescript/src/net/Request.ts @@ -10,8 +10,8 @@ import { Protocol, ProtocolVersion, } from "../wire-protocol/models/index.js"; -import type { RequestId } from "../wire-protocol/models/request/index.js"; import { + type RequestId, Request, RequestBegin, RequestBody, @@ -22,6 +22,7 @@ import { import * as RequestIdProducer from "../wire-protocol/RequestIdProducer.js"; const TypeId: unique symbol = Symbol("@local/harpc-client/net/Request"); + export type TypeId = typeof TypeId; export interface Request { @@ -80,6 +81,7 @@ const splitBuffer = (scratch: Scratch, that: ArrayBuffer) => { const available = Payload.MAX_SIZE - self.length; const selfView = new Uint8Array(self.buffer); + selfView.set(new Uint8Array(buffer, 0, available), self.length); output.push(self.buffer); @@ -92,9 +94,10 @@ const splitBuffer = (scratch: Scratch, that: ArrayBuffer) => { // we can just copy the buffer into the scratch buffer. if (buffer.byteLength > 0) { const view = new Uint8Array(self.buffer); + view.set(new Uint8Array(buffer), self.length); - self.length += buffer.byteLength; + self.length = self.length + buffer.byteLength; } return [self, output] as const; @@ -115,9 +118,9 @@ const pack = ( return pipe( stream, Stream.mapConcat((buffer) => { - const [scratch, output] = splitBuffer(makeScratch(), buffer); + const [remaining, output] = splitBuffer(makeScratch(), buffer); - output.push(scratch.buffer.slice(0, scratch.length)); + output.push(remaining.buffer.slice(0, remaining.length)); return output; }), @@ -246,7 +249,9 @@ export const encode: { options?: EncodeOptions, ): (self: Request) => Stream.Stream; } = Function.dual( - // function is `DataFirst` (will be executed immediately), if: + /** + * Function is `DataFirst` (will be executed immediately), if... + */ (args) => isRequest(args[0]), encodeImpl, ); diff --git a/libs/@local/harpc/client/typescript/src/net/Response.ts b/libs/@local/harpc/client/typescript/src/net/Response.ts index 750891002f5..92b7bd1ea92 100644 --- a/libs/@local/harpc/client/typescript/src/net/Response.ts +++ b/libs/@local/harpc/client/typescript/src/net/Response.ts @@ -4,13 +4,14 @@ import { MutableBytes } from "../binary/index.js"; import { InvalidUtf8Error } from "../ClientError.js"; import { type ErrorCode, ResponseKind } from "../types/index.js"; import { createProto } from "../utils.js"; -import type { Response } from "../wire-protocol/models/response/index.js"; import { + type Response, ResponseBody, ResponseFlags, } from "../wire-protocol/models/response/index.js"; const TypeId = Symbol("@local/harpc-client/net/Response"); + export type TypeId = typeof TypeId; export class UnexpectedResponseTypeError extends Data.TaggedError( @@ -79,8 +80,9 @@ const flattenResponseStream = ( const output: ResponseSegment[] = []; const begin = ResponseBody.getBegin(response.body); + if (Option.isSome(begin)) { - const kind = begin.value.kind; + const { kind } = begin.value; const code = ResponseKind.getErr(kind); output.push(ResponseSegment.ControlFlow({ code })); @@ -92,6 +94,7 @@ const flattenResponseStream = ( ); output.push(ResponseSegment.Body({ data: payload })); + return output; }), ); @@ -105,9 +108,11 @@ const processResponseStream = ( stream, Stream.mapConcatEffect((segment) => { return ResponseSegment.$match(segment, { + // eslint-disable-next-line @typescript-eslint/naming-convention ControlFlow: ({ code }) => { // replace the existing error with a new one if we have an error const error = partialError; + partialError = Option.map( code, (_) => new NetworkError({ code: _, bytes: MutableBytes.make() }), @@ -118,12 +123,14 @@ const processResponseStream = ( onSome: Effect.fail, }); }, + // eslint-disable-next-line @typescript-eslint/naming-convention Body: ({ data }) => { if (Option.isNone(partialError)) { return Effect.succeed([data]); } MutableBytes.appendBuffer(partialError.value.bytes, data); + return Effect.succeed([]); }, }); diff --git a/libs/@local/harpc/client/typescript/src/net/Transaction.ts b/libs/@local/harpc/client/typescript/src/net/Transaction.ts index 928fb43ea00..07e9a6ac93f 100644 --- a/libs/@local/harpc/client/typescript/src/net/Transaction.ts +++ b/libs/@local/harpc/client/typescript/src/net/Transaction.ts @@ -1,12 +1,13 @@ -import type { Effect, Queue } from "effect"; -import { Deferred, Function } from "effect"; +import { type Effect, type Queue, Deferred, Function } from "effect"; import { createProto } from "../utils.js"; import type { RequestId } from "../wire-protocol/models/request/index.js"; import type { Response as WireResponse } from "../wire-protocol/models/response/index.js"; + import * as Response from "./Response.js"; const TypeId: unique symbol = Symbol("@local/harpc-client/net/Transaction"); + export type TypeId = typeof TypeId; export interface Transaction { @@ -28,10 +29,10 @@ const TransactionProto: Omit = { /** @internal */ export const makeUnchecked = ( id: RequestId.RequestId, - read: Queue.Dequeue, + readQueue: Queue.Dequeue, drop: Deferred.Deferred, ): Transaction => - createProto(TransactionProto, { id, read, drop }) as Transaction; + createProto(TransactionProto, { id, read: readQueue, drop }) as Transaction; export const registerDestructor: { ( diff --git a/libs/@local/harpc/client/typescript/src/net/Transport.ts b/libs/@local/harpc/client/typescript/src/net/Transport.ts index 2fa6eb1e326..17b97c04a7b 100644 --- a/libs/@local/harpc/client/typescript/src/net/Transport.ts +++ b/libs/@local/harpc/client/typescript/src/net/Transport.ts @@ -1,20 +1,11 @@ import type { DNS } from "@multiformats/dns"; -import { Data } from "effect"; import type { NoiseConfig, TCPConfig, YamuxConfig } from "./Config.js"; import type * as internal from "./internal/transport.js"; -export { TransportError } from "./internal/transport.js"; +export { InitializationError, TransportError } from "./internal/transport.js"; export { type Multiaddr, multiaddr } from "@multiformats/multiaddr"; -export class InitializationError extends Data.TaggedError( - "InitializationError", -)<{ cause: unknown }> { - get message() { - return "Failed to initialize client"; - } -} - export type Address = internal.Address; export interface DNSConfig { @@ -27,21 +18,21 @@ export interface DNSConfig { * When resolving DNSADDR Multiaddrs that resolve to other DNSADDR Multiaddrs, * limit how many times we will recursively resolve them. * - * @default 32 + * @defaultValue 32 */ maxRecursiveDepth?: number; /** * Amount of cached resolved multiaddrs to keep in memory. * - * @default 32 + * @defaultValue 32 */ cacheCapacity?: number; /** * Time in milliseconds until a cached resolved multiaddr is considered stale. * - * @default 5 minutes + * @defaultValue 5 minutes */ cacheTimeToLive?: number; } diff --git a/libs/@local/harpc/client/typescript/src/net/index.ts b/libs/@local/harpc/client/typescript/src/net/index.ts index 3112d0fc669..e24da4dc9d4 100644 --- a/libs/@local/harpc/client/typescript/src/net/index.ts +++ b/libs/@local/harpc/client/typescript/src/net/index.ts @@ -1,5 +1,5 @@ export * as Client from "./Client.js"; -export * as Config from "./Config.js"; +export type * as Config from "./Config.js"; export * as Connection from "./Connection.js"; export * as NetworkLogger from "./NetworkLogger.js"; export * as Request from "./Request.js"; diff --git a/libs/@local/harpc/client/typescript/src/net/internal/multiaddr.ts b/libs/@local/harpc/client/typescript/src/net/internal/multiaddr.ts index 9559960271f..872be29afd6 100644 --- a/libs/@local/harpc/client/typescript/src/net/internal/multiaddr.ts +++ b/libs/@local/harpc/client/typescript/src/net/internal/multiaddr.ts @@ -9,11 +9,13 @@ import { Equal, Hash, pipe, Predicate } from "effect"; import { createProto, hashUint8Array } from "../../utils.js"; const MultiaddrSymbol = Symbol.for("@multiformats/js-multiaddr/multiaddr"); + type MultiaddrSymbol = typeof MultiaddrSymbol; const TypeId: unique symbol = Symbol( "@local/harpc-client/net/internal/HashableMultiaddr", ); + type TypeId = typeof TypeId; /** @internal */ diff --git a/libs/@local/harpc/client/typescript/src/net/internal/networkLogger.ts b/libs/@local/harpc/client/typescript/src/net/internal/networkLogger.ts index 1fa87f5fcbd..0c0f2f30628 100644 --- a/libs/@local/harpc/client/typescript/src/net/internal/networkLogger.ts +++ b/libs/@local/harpc/client/typescript/src/net/internal/networkLogger.ts @@ -4,8 +4,8 @@ import { isPeerId } from "@libp2p/interface"; import { isMultiaddr } from "@multiformats/multiaddr"; -import type { LogLevel } from "effect"; import { + type LogLevel, Effect, Inspectable, Option, @@ -68,13 +68,13 @@ interface Literal { type Token = Format | Literal; -const tokenize = (format: string) => { +const tokenize = (spec: string) => { const tokens: Token[] = []; - let rest = format; + let rest = spec; while (rest.length > 0) { - const nextToken = rest.search(/%[a-zA-Z%]/); + const nextToken = rest.search(/%[a-z%]/i); if (nextToken === -1) { tokens.push({ value: rest }); @@ -83,6 +83,7 @@ const tokenize = (format: string) => { tokens.push({ value: rest.slice(0, nextToken) }); + // eslint-disable-next-line @typescript-eslint/no-non-null-assertion -- guaranteed by regex const type = rest[nextToken + 1]!; if (type === "%") { @@ -110,6 +111,7 @@ const enrichContext = ( Option.getOrElse(() => `unknown${index}`), ); + // eslint-disable-next-line no-param-reassign context[name] = value; }; @@ -123,7 +125,7 @@ export const format = ( const inputArguments = [...args]; const context: Record = {}; - let formatString = ""; + let formatString; // special casing of some arguments if (Predicate.isError(input)) { @@ -147,19 +149,20 @@ export const format = ( for (const token of tokens) { if (Predicate.hasProperty(token, "value")) { - output += token.value; + output = output + token.value; continue; } if (argumentIndex >= inputArguments.length) { - output += "???"; + output = `${output}???`; continue; } const argument = inputArguments[argumentIndex]; + enrichContext(context, argumentIndex, argument); - argumentIndex += 1; + argumentIndex = argumentIndex + 1; const formatOutput = pipe( formatters[token.type], @@ -169,11 +172,11 @@ export const format = ( Option.getOrElse(() => "???"), ); - output += formatOutput; + output = output + formatOutput; } // add any arguments to the context that were not used - for (let i = argumentIndex; i < inputArguments.length; i++) { + for (let i = argumentIndex; i < inputArguments.length; i = i + 1) { enrichContext(context, i, inputArguments[i]); } @@ -196,15 +199,20 @@ const debugJsFormatters: FormatterCollection = { Option.liftPredicate(value, Predicate.isNumber), // Option.map((number) => number.toString()), ), + // eslint-disable-next-line unicorn/prevent-abbreviations j: (value: unknown) => Option.some(JSON.stringify(value)), + // eslint-disable-next-line @typescript-eslint/naming-convention O: (value: unknown) => Option.some(Inspectable.toStringUnknown(value)), o: (value: unknown) => - Option.some(Inspectable.toStringUnknown(value, "").replace(/\n/g, " ")), + Option.some(Inspectable.toStringUnknown(value, "").replaceAll("\n", " ")), }; // Taken from libp2p/logger const libp2pFormatters: FormatterCollection = { - // custom (more sane) UTF-8 first formatter + /** + * Custom (more sane) UTF-8 first formatter. + */ + // eslint-disable-next-line @typescript-eslint/naming-convention B: (value: unknown) => pipe( Option.liftPredicate(value, Predicate.isUint8Array), @@ -218,51 +226,67 @@ const libp2pFormatters: FormatterCollection = { Option.getOrElse(() => // see: https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Uint8Array/toHex array.reduce( - (acc, val) => acc + val.toString(16).padStart(2, "0"), + (accumulator, byte) => + accumulator + byte.toString(16).padStart(2, "0"), "", ), ), ), ), ), - // Uint8Array -> Base58 + /** + * Uint8Array as Base58. + */ b: (value: unknown) => pipe( Option.liftPredicate(value, Predicate.isUint8Array), Option.map(base58btc.baseEncode), ), - // Uint8Array -> Base32 + /** + * Uint8Array as Base32. + */ t: (value: unknown) => pipe( Option.liftPredicate(value, Predicate.isUint8Array), Option.map(base32.baseEncode), ), - // Uint8Array -> Base64 + /** + * Uint8Array as Base64. + */ m: (value: unknown) => pipe( Option.liftPredicate(value, Predicate.isUint8Array), Option.map(base64.baseEncode), ), - // PeerId + /** + * PeerId. + */ p: (value: unknown) => pipe( Option.liftPredicate(value, isPeerId), Option.map((peerId) => peerId.toString()), ), - // CID + /** + * CID. + */ c: (value: unknown) => pipe( Option.liftPredicate(value, (_) => _ instanceof CID), Option.map((cid) => cid.toString()), ), // interface-datastore (k) is not supported as it is IPFS only - // Multiaddr + /** + * Multiaddr. + */ a: (value: unknown) => pipe( Option.liftPredicate(value, isMultiaddr), Option.map((addr) => addr.toString()), ), - // Error + /** + * Error. + */ + // eslint-disable-next-line unicorn/prevent-abbreviations e: (value: unknown) => pipe( Option.liftPredicate(value, Predicate.isError), diff --git a/libs/@local/harpc/client/typescript/src/net/internal/transport.ts b/libs/@local/harpc/client/typescript/src/net/internal/transport.ts index 115c12d7610..fe4ef0d14df 100644 --- a/libs/@local/harpc/client/typescript/src/net/internal/transport.ts +++ b/libs/@local/harpc/client/typescript/src/net/internal/transport.ts @@ -1,10 +1,8 @@ import { noise } from "@chainsafe/libp2p-noise"; import { yamux } from "@chainsafe/libp2p-yamux"; -import type { Identify } from "@libp2p/identify"; -import { identify } from "@libp2p/identify"; +import { type Identify, identify } from "@libp2p/identify"; import { isPeerId, type PeerId } from "@libp2p/interface"; -import type { PingService } from "@libp2p/ping"; -import { ping } from "@libp2p/ping"; +import { type PingService, ping } from "@libp2p/ping"; import { tcp } from "@libp2p/tcp"; import { type DNS, dns as defaultDns } from "@multiformats/dns"; import { @@ -30,12 +28,11 @@ import { Struct, } from "effect"; import type { NonEmptyArray } from "effect/Array"; -import type { Libp2p } from "libp2p"; -import { createLibp2p } from "libp2p"; +import { type Libp2p, createLibp2p } from "libp2p"; import * as NetworkLogger from "../NetworkLogger.js"; import type { DNSConfig, Multiaddr, TransportConfig } from "../Transport.js"; -import { InitializationError } from "../Transport.js"; + import * as Dns from "./dns.js"; import * as HashableMultiaddr from "./multiaddr.js"; @@ -66,6 +63,15 @@ export class TransportError extends Data.TaggedError("TransportError")<{ } } +/** @internal */ +export class InitializationError extends Data.TaggedError( + "InitializationError", +)<{ cause: unknown }> { + get message() { + return "Failed to initialize client"; + } +} + const DNS_PROTOCOL = getProtocol("dns"); const DNS4_PROTOCOL = getProtocol("dns4"); const DNS6_PROTOCOL = getProtocol("dns6"); @@ -122,7 +128,7 @@ const resolveDnsMultiaddrSegment = (code: number, value?: string) => }); /** - * Resolve DNS addresses in a multiaddr (excluding DNSADDR) + * Resolve DNS addresses in a multiaddr (excluding DNSADDR). * * @internal */ @@ -132,19 +138,25 @@ const resolveDnsMultiaddr = (multiaddr: Multiaddr) => { Stream.mapEffect(Function.tupled(resolveDnsMultiaddrSegment), { concurrency: "unbounded", }), - Stream.runFold([] as (number | string | undefined)[][], (acc, segments) => { - // we basically have a fan out approach here, meaning that if our output is: - // ["ip4", "127.0.0.1"], [["ip4", "192.168.178.1"], ["ip6", "2001:0db8:85a3:0000:0000:8a2e:0370:7334"]] [["tcp", "4002"]] - // the result will be: - // ["ip4", "127.0.0.1", "ip4", "192.168.178.1", "tcp", "4002"] - // ["ip4", "127.0.0.1", "ip6", "2001:0db8:85a3:0000:0000:8a2e:0370:7334", "tcp", "4002"] - // This is also known as a cartesian product - if (acc.length === 0) { - return Array.map(segments, (segment) => [...segment]); - } - - return Array.cartesianWith(acc, segments, (a, b) => [...a, ...b]); - }), + Stream.runFold( + [] as (number | string | undefined)[][], + (accumulator, segments) => { + // we basically have a fan out approach here, meaning that if our output is: + // ["ip4", "127.0.0.1"], [["ip4", "192.168.178.1"], ["ip6", "2001:0db8:85a3:0000:0000:8a2e:0370:7334"]] [["tcp", "4002"]] + // the result will be: + // ["ip4", "127.0.0.1", "ip4", "192.168.178.1", "tcp", "4002"] + // ["ip4", "127.0.0.1", "ip6", "2001:0db8:85a3:0000:0000:8a2e:0370:7334", "tcp", "4002"] + // This is also known as a cartesian product + if (accumulator.length === 0) { + return Array.map(segments, (segment) => [...segment]); + } + + return Array.cartesianWith(accumulator, segments, (a, b) => [ + ...a, + ...b, + ]); + }, + ), Effect.map( Array.map( flow( @@ -170,9 +182,9 @@ const resolveDnsMultiaddr = (multiaddr: Multiaddr) => { }; /** - * Recursively resolve DNSADDR multiaddrs + * Recursively resolve DNSADDR multiaddrs. * - * Adapted from: https://github.com/libp2p/js-libp2p/blob/92f9acbc1d2aa7b1bb5a8e460e4e0b5770f4455c/packages/libp2p/src/connection-manager/utils.ts#L9 + * Adapted from: https://github.com/libp2p/js-libp2p/blob/92f9acbc1d2aa7b1bb5a8e460e4e0b5770f4455c/packages/libp2p/src/connection-manager/utils.ts#L9. */ const resolveDnsaddrMultiaddr = (multiaddr: Multiaddr, options: DNSConfig) => Effect.gen(function* () { @@ -277,6 +289,7 @@ const resolvePeer = ( const key = HashableMultiaddr.make(address); const peerIdEither = yield* cache.getEither(key); + if (Either.isLeft(peerIdEither)) { yield* Effect.logTrace("retrieved PeerID from cache"); } else { @@ -284,6 +297,7 @@ const resolvePeer = ( } const peerId = Either.merge(peerIdEither); + if (Option.isNone(peerId)) { yield* Effect.logDebug("PeerID lookup failed, invalidating cache entry"); @@ -380,6 +394,7 @@ export const make = (config?: TransportConfig) => const transport = yield* Effect.acquireRelease(acquire, (client) => Effect.promise(() => { const result = client.stop(); + return Predicate.isPromise(result) ? result : Promise.resolve(result); }), ); diff --git a/libs/@local/harpc/client/typescript/src/types/ErrorCode.ts b/libs/@local/harpc/client/typescript/src/types/ErrorCode.ts index 30d5bcb9957..7e71af4edda 100644 --- a/libs/@local/harpc/client/typescript/src/types/ErrorCode.ts +++ b/libs/@local/harpc/client/typescript/src/types/ErrorCode.ts @@ -1,5 +1,5 @@ -import type { FastCheck } from "effect"; import { + type FastCheck, Data, Effect, Equal, @@ -15,9 +15,12 @@ import { createProto, encodeDual } from "../utils.js"; import * as Buffer from "../wire-protocol/Buffer.js"; const TypeId = Symbol("@local/harpc-client/wire-protocol/types/ErrorCode"); + export type TypeId = typeof TypeId; -export class ErrorCodeTooLarge extends Data.TaggedError("ErrorCodeTooLarge")<{ +export class ErrorCodeTooLargeError extends Data.TaggedError( + "ErrorCodeTooLargeError", +)<{ received: number; }> { get message() { @@ -25,8 +28,8 @@ export class ErrorCodeTooLarge extends Data.TaggedError("ErrorCodeTooLarge")<{ } } -export class ErrorCodeTooSmall extends Data.TaggedError( - "ErrorCodeNotPositive", +export class ErrorCodeTooSmallError extends Data.TaggedError( + "ErrorCodeNotPositiveError", )<{ received: number }> { get message() { return `error code mut be a positive number, got ${this.received}`; @@ -85,14 +88,18 @@ export const makeUnchecked = (value: number): ErrorCode => export const make = ( value: number, -): Effect.Effect => { +): Effect.Effect< + ErrorCode, + ErrorCodeTooLargeError | ErrorCodeTooSmallError +> => { if (value < 1) { - return Effect.fail(new ErrorCodeTooSmall({ received: value })); - } else if (value > U16_MAX) { - return Effect.fail(new ErrorCodeTooLarge({ received: value })); - } else { - return Effect.succeed(makeUnchecked(value)); + return Effect.fail(new ErrorCodeTooSmallError({ received: value })); + } + if (value > U16_MAX) { + return Effect.fail(new ErrorCodeTooLargeError({ received: value })); } + + return Effect.succeed(makeUnchecked(value)); }; export type EncodeError = Effect.Effect.Error>; diff --git a/libs/@local/harpc/client/typescript/src/types/ProcedureDescriptor.ts b/libs/@local/harpc/client/typescript/src/types/ProcedureDescriptor.ts index 6cabaef9c95..eaf89bf6914 100644 --- a/libs/@local/harpc/client/typescript/src/types/ProcedureDescriptor.ts +++ b/libs/@local/harpc/client/typescript/src/types/ProcedureDescriptor.ts @@ -1,5 +1,5 @@ -import type { FastCheck } from "effect"; import { + type FastCheck, Effect, Equal, Hash, @@ -11,11 +11,13 @@ import { import { createProto, encodeDual } from "../utils.js"; import type * as Buffer from "../wire-protocol/Buffer.js"; + import * as ProcedureId from "./ProcedureId.js"; const TypeId: unique symbol = Symbol( "@local/harpc-client/wire-protocol/types/ProcedureDescriptor", ); + export type TypeId = typeof TypeId; export interface ProcedureDescriptor diff --git a/libs/@local/harpc/client/typescript/src/types/ProcedureId.ts b/libs/@local/harpc/client/typescript/src/types/ProcedureId.ts index 21a7e054a88..2ce9b8fbaa0 100644 --- a/libs/@local/harpc/client/typescript/src/types/ProcedureId.ts +++ b/libs/@local/harpc/client/typescript/src/types/ProcedureId.ts @@ -1,5 +1,5 @@ -import type { FastCheck } from "effect"; import { + type FastCheck, Data, Effect, Equal, @@ -17,18 +17,19 @@ import * as Buffer from "../wire-protocol/Buffer.js"; const TypeId: unique symbol = Symbol( "@local/harpc-client/wire-protocol/types/ProcedureId", ); + export type TypeId = typeof TypeId; -export class ProcedureIdTooLarge extends Data.TaggedError( - "ProcedureIdTooLarge", +export class ProcedureIdTooLargeError extends Data.TaggedError( + "ProcedureIdTooLargeError", )<{ received: number }> { get message() { return `Procedure ID too large: ${this.received}, expected between ${U16_MIN} and ${U16_MAX}`; } } -export class ProcedureIdTooSmall extends Data.TaggedError( - "ProcedureIdTooSmall", +export class ProcedureIdTooSmallError extends Data.TaggedError( + "ProcedureIdTooSmallError", )<{ received: number }> { get message() { return `Procedure ID too small: ${this.received}, expected between ${U16_MIN} and ${U16_MAX}`; @@ -89,12 +90,15 @@ export const makeUnchecked = (value: number): ProcedureId => export const make = ( id: number, -): Effect.Effect => { +): Effect.Effect< + ProcedureId, + ProcedureIdTooSmallError | ProcedureIdTooLargeError +> => { if (id < U16_MIN) { - return Effect.fail(new ProcedureIdTooSmall({ received: id })); + return Effect.fail(new ProcedureIdTooSmallError({ received: id })); } if (id > U16_MAX) { - return Effect.fail(new ProcedureIdTooLarge({ received: id })); + return Effect.fail(new ProcedureIdTooLargeError({ received: id })); } return Effect.succeed(makeUnchecked(id)); @@ -116,7 +120,6 @@ export const isProcedureId = (value: unknown): value is ProcedureId => Predicate.hasProperty(value, TypeId); export const isReserved = (value: ProcedureId) => - // eslint-disable-next-line no-bitwise (value.value & 0xf0_00) === 0xf0_00; export const arbitrary = (fc: typeof FastCheck) => diff --git a/libs/@local/harpc/client/typescript/src/types/ResponseKind.ts b/libs/@local/harpc/client/typescript/src/types/ResponseKind.ts index 675653534ff..ca256b4ded0 100644 --- a/libs/@local/harpc/client/typescript/src/types/ResponseKind.ts +++ b/libs/@local/harpc/client/typescript/src/types/ResponseKind.ts @@ -1,3 +1,4 @@ +/* eslint-disable unicorn/prevent-abbreviations -- same name as Rust reference implementation */ import { Effect, Equal, @@ -13,6 +14,7 @@ import { import { createProto, encodeDual } from "../utils.js"; import * as Buffer from "../wire-protocol/Buffer.js"; + import * as ErrorCode from "./ErrorCode.js"; const TypeId: unique symbol = Symbol( @@ -130,9 +132,9 @@ export const encode = encodeDual( // eslint-disable-next-line @typescript-eslint/no-use-before-define if (isOk(kind)) { return yield* Buffer.putU16(buffer, 0); - } else { - return yield* ErrorCode.encode(buffer, kind.code); } + + return yield* ErrorCode.encode(buffer, kind.code); }), ); @@ -141,12 +143,13 @@ export type DecodeError = Effect.Effect.Error>; export const decode = (buffer: Buffer.ReadBuffer) => Effect.gen(function* () { const value = yield* Buffer.getU16(buffer); + if (value === 0) { return ok(); - } else { - const code = ErrorCode.makeUnchecked(value); - return err(code); } + const code = ErrorCode.makeUnchecked(value); + + return err(code); }); export const isResponseKind = (value: unknown): value is ResponseKind => @@ -181,9 +184,9 @@ export const match: { ) => { if (isOk(self)) { return options.onOk(); - } else { - return options.onErr(self.code); } + + return options.onErr(self.code); }, ); diff --git a/libs/@local/harpc/client/typescript/src/types/SubsystemDescriptor.ts b/libs/@local/harpc/client/typescript/src/types/SubsystemDescriptor.ts index 25c76099745..06175d8c6fb 100644 --- a/libs/@local/harpc/client/typescript/src/types/SubsystemDescriptor.ts +++ b/libs/@local/harpc/client/typescript/src/types/SubsystemDescriptor.ts @@ -1,5 +1,5 @@ -import type { FastCheck } from "effect"; import { + type FastCheck, Effect, Equal, Function, @@ -12,12 +12,14 @@ import { import { createProto, encodeDual } from "../utils.js"; import type * as Buffer from "../wire-protocol/Buffer.js"; + import * as SubsystemId from "./SubsystemId.js"; import * as Version from "./Version.js"; const TypeId: unique symbol = Symbol( "@local/harpc-client/wire-protocol/types/SubsystemDescriptor", ); + export type TypeId = typeof TypeId; export interface SubsystemDescriptor diff --git a/libs/@local/harpc/client/typescript/src/types/SubsystemId.ts b/libs/@local/harpc/client/typescript/src/types/SubsystemId.ts index 6d064700d1a..84ee0c35236 100644 --- a/libs/@local/harpc/client/typescript/src/types/SubsystemId.ts +++ b/libs/@local/harpc/client/typescript/src/types/SubsystemId.ts @@ -1,5 +1,5 @@ -import type { FastCheck } from "effect"; import { + type FastCheck, Data, Effect, Equal, @@ -17,18 +17,19 @@ import * as Buffer from "../wire-protocol/Buffer.js"; const TypeId: unique symbol = Symbol( "@local/harpc-client/wire-protocol/types/SubsystemId", ); + export type TypeId = typeof TypeId; -export class SubsystemIdTooLarge extends Data.TaggedError( - "SubsystemIdTooLarge", +export class SubsystemIdTooLargeError extends Data.TaggedError( + "SubsystemIdTooLargeError", )<{ received: number }> { get message() { return `Procedure ID too large: ${this.received}, expected between ${U16_MIN} and ${U16_MAX}`; } } -export class SubsystemIdTooSmall extends Data.TaggedError( - "SubsystemIdTooSmall", +export class SubsystemIdTooSmallError extends Data.TaggedError( + "SubsystemIdTooSmallError", )<{ received: number }> { get message() { return `Procedure ID too small: ${this.received}, expected between ${U16_MIN} and ${U16_MAX}`; @@ -89,13 +90,16 @@ export const makeUnchecked = (value: number): SubsystemId => export const make = ( id: number, -): Effect.Effect => { +): Effect.Effect< + SubsystemId, + SubsystemIdTooLargeError | SubsystemIdTooSmallError +> => { if (id < U16_MIN) { - return Effect.fail(new SubsystemIdTooSmall({ received: id })); + return Effect.fail(new SubsystemIdTooSmallError({ received: id })); } if (id > U16_MAX) { - return Effect.fail(new SubsystemIdTooLarge({ received: id })); + return Effect.fail(new SubsystemIdTooLargeError({ received: id })); } return Effect.succeed(makeUnchecked(id)); @@ -117,7 +121,6 @@ export const isSubsystemId = (value: unknown): value is SubsystemId => Predicate.hasProperty(value, TypeId); export const isReserved = (value: SubsystemId) => - // eslint-disable-next-line no-bitwise (value.value & 0xf0_00) === 0xf0_00; export const arbitrary = (fc: typeof FastCheck) => diff --git a/libs/@local/harpc/client/typescript/src/types/Version.ts b/libs/@local/harpc/client/typescript/src/types/Version.ts index eb5d3f71e3b..cdec655dde9 100644 --- a/libs/@local/harpc/client/typescript/src/types/Version.ts +++ b/libs/@local/harpc/client/typescript/src/types/Version.ts @@ -1,5 +1,5 @@ -import type { FastCheck } from "effect"; import { + type FastCheck, Effect, Equal, Function, @@ -17,6 +17,7 @@ import * as Buffer from "../wire-protocol/Buffer.js"; const TypeId: unique symbol = Symbol( "@local/harpc-client/wire-protocol/types/Version", ); + export type TypeId = typeof TypeId; export interface Version diff --git a/libs/@local/harpc/client/typescript/src/utils.ts b/libs/@local/harpc/client/typescript/src/utils.ts index 440828c9120..bb2b1521213 100644 --- a/libs/@local/harpc/client/typescript/src/utils.ts +++ b/libs/@local/harpc/client/typescript/src/utils.ts @@ -10,7 +10,7 @@ export const createProto = < proto: T, readableProperties: ReadableProperties, writeableProperties?: WriteableProperties, -): T & ReadableProperties & WriteableProperties => { +): T & Readonly & WriteableProperties => { const readablePropertyDescriptors = Record.map( readableProperties, (value): PropertyDescriptor => ({ @@ -38,10 +38,12 @@ export const createProto = < writeablePropertyDescriptors, Function.untupled(Tuple.getFirst), ), - ) as T & ReadableProperties & WriteableProperties; + ) as T & Readonly & WriteableProperties; }; -// This is more strictly typed than necessary, but this allows us to give better type hints +/** + * This is more strictly typed than necessary, but this allows us to give better type hints. + */ export const encodeDual: ( closure: (buffer: Buffer.WriteBuffer, self: U) => Buffer.WriteResult, ) => { @@ -58,22 +60,23 @@ export const hashUint8Array = (array: Uint8Array) => { // because they're just numbers and the safe integer range is 2^53 - 1, // we can just take it in 32 bit chunks, which means we need to do less overall. - for (let i = 0; i < array.length - remainder; i += 4) { + for (let i = 0; i < array.length - remainder; i = i + 4) { const value = - // eslint-disable-next-line no-bitwise + // eslint-disable-next-line @typescript-eslint/no-non-null-assertion array[i]! | - // eslint-disable-next-line no-bitwise + // eslint-disable-next-line @typescript-eslint/no-non-null-assertion (array[i + 1]! << 8) | - // eslint-disable-next-line no-bitwise + // eslint-disable-next-line @typescript-eslint/no-non-null-assertion (array[i + 2]! << 16) | - // eslint-disable-next-line no-bitwise + // eslint-disable-next-line @typescript-eslint/no-non-null-assertion (array[i + 3]! << 24); state = Hash.combine(value)(state); } // if there are any remaining bytes, we hash them as well - for (let i = array.length - remainder; i < array.length; i++) { + for (let i = array.length - remainder; i < array.length; i = i + 1) { + // eslint-disable-next-line @typescript-eslint/no-non-null-assertion state = Hash.combine(array[i]!)(state); } diff --git a/libs/@local/harpc/client/typescript/src/wire-protocol/Buffer.ts b/libs/@local/harpc/client/typescript/src/wire-protocol/Buffer.ts index 401b08fc03f..5ff16c3997a 100644 --- a/libs/@local/harpc/client/typescript/src/wire-protocol/Buffer.ts +++ b/libs/@local/harpc/client/typescript/src/wire-protocol/Buffer.ts @@ -3,16 +3,19 @@ import { Data, Effect, Function, SubscriptionRef } from "effect"; const TypeId: unique symbol = Symbol( "@local/harpc-client/wire-protocol/Buffer", ); + export type TypeId = typeof TypeId; const Read: unique symbol = Symbol( "@local/harpc-client/wire-protocol/Buffer/Read", ); + export type Read = typeof Read; const Write: unique symbol = Symbol( "@local/harpc-client/wire-protocol/Buffer/Write", ); + export type Write = typeof Write; export class UnexpectedEndOfBufferError extends Data.TaggedError( @@ -57,7 +60,7 @@ const validateBounds = ( const makeUnchecked = (view: DataView, mode: T) => Effect.gen(function* () { // the buffer we write to is always a single page of 64KiB - // eslint-disable-next-line @typescript-eslint/no-unsafe-assignment + const object = Object.create(BufferProto); // eslint-disable-next-line @typescript-eslint/no-unsafe-member-access @@ -72,7 +75,9 @@ const makeUnchecked = (view: DataView, mode: T) => export const makeRead = (view: DataView) => makeUnchecked(view, Read); -// the buffer we write to is always a single page of 64KiB +/** + * The buffer we write to is always a single page of 64KiB. + */ export const makeWrite = () => makeUnchecked(new DataView(new ArrayBuffer(64 * 1024)), Write); @@ -147,23 +152,25 @@ export type ReadResult = Effect.Effect< UnexpectedEndOfBufferError >; -type WriteSignature = { +interface WriteSignature { (value: number): (buffer: Buffer) => WriteResult; (buffer: Buffer, value: number): WriteResult; -}; +} export const putU8: WriteSignature = Function.dual( 2, - putInt(1, (view, byteOffset, value) => view.setUint8(byteOffset, value)), + putInt(1, (view, byteOffset, value) => { + view.setUint8(byteOffset, value); + }), ); export const getU8 = getInt(1, (view, byteOffset) => view.getUint8(byteOffset)); export const putU16: WriteSignature = Function.dual( 2, - putInt(2, (view, byteOffset, value) => - view.setUint16(byteOffset, value, false), - ), + putInt(2, (view, byteOffset, value) => { + view.setUint16(byteOffset, value, false); + }), ); export const getU16 = getInt(2, (view, byteOffset) => @@ -172,9 +179,9 @@ export const getU16 = getInt(2, (view, byteOffset) => export const putU32: WriteSignature = Function.dual( 2, - putInt(4, (view, byteOffset, value) => - view.setUint32(byteOffset, value, false), - ), + putInt(4, (view, byteOffset, value) => { + view.setUint32(byteOffset, value, false); + }), ); export const getU32 = getInt(4, (view, byteOffset) => @@ -196,6 +203,7 @@ export const putSlice: { index, value.length, ); + uint8Array.set(value); return [buffer, index + value.length] as const; @@ -205,7 +213,7 @@ export const putSlice: { export const getSlice = ( buffer: Buffer, - length: number, + byteLength: number, ): ReadResult => SubscriptionRef.modifyEffect( (buffer as unknown as BufferImpl).index, @@ -213,28 +221,29 @@ export const getSlice = ( Effect.gen(function* () { const impl = buffer as unknown as BufferImpl; - yield* validateBounds(impl, index, length); + yield* validateBounds(impl, index, byteLength); // clone the buffer - const clone = new ArrayBuffer(length); + const clone = new ArrayBuffer(byteLength); const value = new Uint8Array(clone); - value.set(new Uint8Array(impl.value.buffer, index, length)); - return [value, index + length] as const; + value.set(new Uint8Array(impl.value.buffer, index, byteLength)); + + return [value, index + byteLength] as const; }), ); export const advance: { (length: number): (buffer: Buffer) => WriteResult; (buffer: Buffer, length: number): WriteResult; -} = Function.dual(2, (buffer: Buffer, length: number) => +} = Function.dual(2, (buffer: Buffer, byteLength: number) => SubscriptionRef.modifyEffect( (buffer as unknown as BufferImpl).index, (index) => Effect.gen(function* () { - yield* validateBounds(buffer as BufferImpl, index, length); + yield* validateBounds(buffer as BufferImpl, index, byteLength); - return [buffer, index + length] as const; + return [buffer, index + byteLength] as const; }), ), ); @@ -264,5 +273,6 @@ export const take = (buffer: Buffer) => const impl = buffer as unknown as BufferImpl; const inner = impl.value.buffer.slice(0, currentLength); + return inner; }); diff --git a/libs/@local/harpc/client/typescript/src/wire-protocol/RequestIdProducer.ts b/libs/@local/harpc/client/typescript/src/wire-protocol/RequestIdProducer.ts index 58e10a7f8ae..587f37609d8 100644 --- a/libs/@local/harpc/client/typescript/src/wire-protocol/RequestIdProducer.ts +++ b/libs/@local/harpc/client/typescript/src/wire-protocol/RequestIdProducer.ts @@ -2,11 +2,13 @@ import { Effect, Layer, Ref } from "effect"; import { GenericTag } from "effect/Context"; import { createProto } from "../utils.js"; + import * as RequestId from "./models/request/RequestId.js"; const TypeId: unique symbol = Symbol( "@local/harpc-client/wire-protocol/RequestIdProducer", ); + export type TypeId = typeof TypeId; export interface RequestIdProducer { @@ -22,6 +24,7 @@ const RequestIdProducerProto: Omit = { }; export const RequestIdProducer = GenericTag( + // eslint-disable-next-line @typescript-eslint/no-non-null-assertion -- always defined TypeId.description!, ); diff --git a/libs/@local/harpc/client/typescript/src/wire-protocol/models/Payload.ts b/libs/@local/harpc/client/typescript/src/wire-protocol/models/Payload.ts index a5d57d1dc0b..ade86c547ec 100644 --- a/libs/@local/harpc/client/typescript/src/wire-protocol/models/Payload.ts +++ b/libs/@local/harpc/client/typescript/src/wire-protocol/models/Payload.ts @@ -1,5 +1,5 @@ -import type { FastCheck } from "effect"; import { + type FastCheck, Data, Effect, Equal, @@ -17,6 +17,7 @@ import * as Buffer from "../Buffer.js"; const TypeId: unique symbol = Symbol( "@local/harpc-client/wire-protocol/Payload", ); + export type TypeId = typeof TypeId; export const MAX_SIZE = U16_MAX - 32; @@ -67,7 +68,7 @@ const PayloadProto: Omit = { toJSON(this: Payload) { return { _id: "Payload", - buffer: Array.from(this.buffer), + buffer: [...this.buffer], }; }, diff --git a/libs/@local/harpc/client/typescript/src/wire-protocol/models/Protocol.ts b/libs/@local/harpc/client/typescript/src/wire-protocol/models/Protocol.ts index fbfc0cdf2d1..a8fec0393cc 100644 --- a/libs/@local/harpc/client/typescript/src/wire-protocol/models/Protocol.ts +++ b/libs/@local/harpc/client/typescript/src/wire-protocol/models/Protocol.ts @@ -1,5 +1,5 @@ -import type { FastCheck } from "effect"; import { + type FastCheck, Data, Effect, Equal, @@ -12,11 +12,13 @@ import { import { createProto, encodeDual } from "../../utils.js"; import * as Buffer from "../Buffer.js"; + import * as ProtocolVersion from "./ProtocolVersion.js"; const TypeId: unique symbol = Symbol( "@local/harpc-client/wire-protocol/models/Protocol", ); + export type TypeId = typeof TypeId; export class InvalidMagicError extends Data.TaggedError("InvalidMagicError")<{ @@ -24,6 +26,7 @@ export class InvalidMagicError extends Data.TaggedError("InvalidMagicError")<{ }> { get message(): string { const receivedString = new TextDecoder().decode(this.received); + return `Invalid magic received: ${receivedString}`; } } diff --git a/libs/@local/harpc/client/typescript/src/wire-protocol/models/ProtocolVersion.ts b/libs/@local/harpc/client/typescript/src/wire-protocol/models/ProtocolVersion.ts index 9267841d0bd..b7be13d2922 100644 --- a/libs/@local/harpc/client/typescript/src/wire-protocol/models/ProtocolVersion.ts +++ b/libs/@local/harpc/client/typescript/src/wire-protocol/models/ProtocolVersion.ts @@ -1,5 +1,5 @@ -import type { FastCheck } from "effect"; import { + type FastCheck, Data, Effect, Equal, @@ -16,6 +16,7 @@ import * as Buffer from "../Buffer.js"; const TypeId: unique symbol = Symbol( "@local/harpc-client/wire-protocol/models/ProtocolVersion", ); + export type TypeId = typeof TypeId; export class InvalidProtocolVersionError extends Data.TaggedError( diff --git a/libs/@local/harpc/client/typescript/src/wire-protocol/models/request/Request.ts b/libs/@local/harpc/client/typescript/src/wire-protocol/models/request/Request.ts index 12449e7491e..a4f93d36f8c 100644 --- a/libs/@local/harpc/client/typescript/src/wire-protocol/models/request/Request.ts +++ b/libs/@local/harpc/client/typescript/src/wire-protocol/models/request/Request.ts @@ -1,5 +1,5 @@ -import type { FastCheck } from "effect"; import { + type FastCheck, Effect, Equal, Function, @@ -12,6 +12,7 @@ import { import { createProto, encodeDual } from "../../../utils.js"; import type * as Buffer from "../../Buffer.js"; + import * as RequestBody from "./RequestBody.js"; import * as RequestFlags from "./RequestFlags.js"; import * as RequestHeader from "./RequestHeader.js"; @@ -19,6 +20,7 @@ import * as RequestHeader from "./RequestHeader.js"; const TypeId: unique symbol = Symbol( "@local/harpc-client/wire-protocol/models/request/Request", ); + export type TypeId = typeof TypeId; export interface Request @@ -79,7 +81,8 @@ export const make = ( body: RequestBody.RequestBody, ): Request => createProto(RequestProto, { header, body }); -/* +/** + * * Prepare a request for encoding, this will ensure that the header has all computed flags set. * * This step is automatically done during encoding, but can be useful to call manually if you want to inspect the diff --git a/libs/@local/harpc/client/typescript/src/wire-protocol/models/request/RequestBegin.ts b/libs/@local/harpc/client/typescript/src/wire-protocol/models/request/RequestBegin.ts index 25e36018267..7c9997ac682 100644 --- a/libs/@local/harpc/client/typescript/src/wire-protocol/models/request/RequestBegin.ts +++ b/libs/@local/harpc/client/typescript/src/wire-protocol/models/request/RequestBegin.ts @@ -1,5 +1,5 @@ -import type { FastCheck } from "effect"; import { + type FastCheck, Effect, Equal, Function, @@ -19,6 +19,7 @@ import * as Payload from "../Payload.js"; const TypeId: unique symbol = Symbol( "@local/harpc-client/wire-protocol/models/request/RequestBegin", ); + export type TypeId = typeof TypeId; export interface RequestBegin @@ -108,6 +109,7 @@ export const decode = (buffer: Buffer.ReadBuffer) => Effect.gen(function* () { const subsystem = yield* SubsystemDescriptor.decode(buffer); const procedure = yield* ProcedureDescriptor.decode(buffer); + yield* Buffer.advance(buffer, 13); const payload = yield* Payload.decode(buffer); diff --git a/libs/@local/harpc/client/typescript/src/wire-protocol/models/request/RequestBody.ts b/libs/@local/harpc/client/typescript/src/wire-protocol/models/request/RequestBody.ts index 4af649155cd..1a39acd8df5 100644 --- a/libs/@local/harpc/client/typescript/src/wire-protocol/models/request/RequestBody.ts +++ b/libs/@local/harpc/client/typescript/src/wire-protocol/models/request/RequestBody.ts @@ -1,5 +1,6 @@ -import type { FastCheck, Option } from "effect"; import { + type FastCheck, + type Option, Effect, Either, Equal, @@ -13,12 +14,14 @@ import { import { createProto, encodeDual } from "../../../utils.js"; import type * as Buffer from "../../Buffer.js"; + import * as RequestBegin from "./RequestBegin.js"; import * as RequestFrame from "./RequestFrame.js"; const TypeId: unique symbol = Symbol( "@local/harpc-client/wire-protocol/models/request/RequestBody", ); + export type TypeId = typeof TypeId; export type RequestBodyVariant = "RequestBegin" | "RequestFrame"; @@ -151,21 +154,23 @@ export type DecodeError = Effect.Effect.Error>; export const decode = ( buffer: Buffer.ReadBuffer, - variant: RequestBodyVariant, + variantHint: RequestBodyVariant, ) => { - switch (variant) { - case "RequestBegin": + switch (variantHint) { + case "RequestBegin": { return pipe( buffer, RequestBegin.decode, Effect.andThen((begin) => make(Either.right(begin))), ); - case "RequestFrame": + } + case "RequestFrame": { return pipe( buffer, RequestFrame.decode, Effect.andThen((frame) => make(Either.left(frame))), ); + } } }; diff --git a/libs/@local/harpc/client/typescript/src/wire-protocol/models/request/RequestFlags.ts b/libs/@local/harpc/client/typescript/src/wire-protocol/models/request/RequestFlags.ts index 5ed4b25a7d2..8b4f289bb86 100644 --- a/libs/@local/harpc/client/typescript/src/wire-protocol/models/request/RequestFlags.ts +++ b/libs/@local/harpc/client/typescript/src/wire-protocol/models/request/RequestFlags.ts @@ -1,5 +1,5 @@ -import type { FastCheck } from "effect"; import { + type FastCheck, Effect, Equal, Hash, @@ -12,11 +12,13 @@ import { import { createProto, encodeDual } from "../../../utils.js"; import * as Buffer from "../../Buffer.js"; + import type * as RequestBody from "./RequestBody.js"; const TypeId: unique symbol = Symbol( "@local/harpc-client/wire-protocol/models/request/RequestFlags", ); + export type TypeId = typeof TypeId; export type Flag = @@ -81,10 +83,12 @@ export const applyBodyVariant = ( variant: RequestBody.RequestBodyVariant, ) => { switch (variant) { - case "RequestBegin": + case "RequestBegin": { return HashSet.add(flags.flags, "beginOfRequest").pipe(makeUnchecked); - case "RequestFrame": + } + case "RequestFrame": { return HashSet.remove(flags.flags, "beginOfRequest").pipe(makeUnchecked); + } } }; @@ -92,13 +96,11 @@ export const repr = (flags: RequestFlags) => { let value = 0x00; if (HashSet.has(flags.flags, "beginOfRequest")) { - // eslint-disable-next-line no-bitwise - value |= 0b1000_0000; + value = value | 0b1000_0000; } if (HashSet.has(flags.flags, "endOfRequest")) { - // eslint-disable-next-line no-bitwise - value |= 0b0000_0001; + value = value | 0b0000_0001; } return value; @@ -123,12 +125,10 @@ export const decode = (buffer: Buffer.ReadBuffer) => const flags = HashSet.empty().pipe(HashSet.beginMutation); - // eslint-disable-next-line no-bitwise if ((value & 0b1000_0000) === 0b1000_0000) { HashSet.add(flags, "beginOfRequest"); } - // eslint-disable-next-line no-bitwise if ((value & 0b0000_0001) === 0b0000_0001) { HashSet.add(flags, "endOfRequest"); } diff --git a/libs/@local/harpc/client/typescript/src/wire-protocol/models/request/RequestFrame.ts b/libs/@local/harpc/client/typescript/src/wire-protocol/models/request/RequestFrame.ts index 5b1f01490bb..31bbca3e1fa 100644 --- a/libs/@local/harpc/client/typescript/src/wire-protocol/models/request/RequestFrame.ts +++ b/libs/@local/harpc/client/typescript/src/wire-protocol/models/request/RequestFrame.ts @@ -1,5 +1,5 @@ -import type { FastCheck } from "effect"; import { + type FastCheck, Effect, Equal, Hash, @@ -16,6 +16,7 @@ import * as Payload from "../Payload.js"; const TypeId: unique symbol = Symbol( "@local/harpc-client/wire-protocol/models/request/RequestFrame", ); + export type TypeId = typeof TypeId; export interface RequestFrame diff --git a/libs/@local/harpc/client/typescript/src/wire-protocol/models/request/RequestHeader.ts b/libs/@local/harpc/client/typescript/src/wire-protocol/models/request/RequestHeader.ts index ff2a8d24a78..df9d7bdea85 100644 --- a/libs/@local/harpc/client/typescript/src/wire-protocol/models/request/RequestHeader.ts +++ b/libs/@local/harpc/client/typescript/src/wire-protocol/models/request/RequestHeader.ts @@ -1,5 +1,5 @@ -import type { FastCheck } from "effect"; import { + type FastCheck, Effect, Equal, Function, @@ -13,6 +13,7 @@ import { import { createProto, encodeDual } from "../../../utils.js"; import type * as Buffer from "../../Buffer.js"; import * as Protocol from "../Protocol.js"; + import type * as RequestBody from "./RequestBody.js"; import * as RequestFlags from "./RequestFlags.js"; import * as RequestId from "./RequestId.js"; diff --git a/libs/@local/harpc/client/typescript/src/wire-protocol/models/request/RequestId.ts b/libs/@local/harpc/client/typescript/src/wire-protocol/models/request/RequestId.ts index b08607bc3aa..dd45e0ae64d 100644 --- a/libs/@local/harpc/client/typescript/src/wire-protocol/models/request/RequestId.ts +++ b/libs/@local/harpc/client/typescript/src/wire-protocol/models/request/RequestId.ts @@ -1,5 +1,5 @@ -import type { FastCheck } from "effect"; import { + type FastCheck, Effect, Equal, Hash, @@ -16,6 +16,7 @@ import * as Buffer from "../../Buffer.js"; const TypeId: unique symbol = Symbol( "@local/harpc-client/wire-protocol/models/request/RequestId", ); + export type TypeId = typeof TypeId; export const MIN_VALUE = U32_MIN; diff --git a/libs/@local/harpc/client/typescript/src/wire-protocol/models/response/Response.ts b/libs/@local/harpc/client/typescript/src/wire-protocol/models/response/Response.ts index 6f0369281b5..1658760123f 100644 --- a/libs/@local/harpc/client/typescript/src/wire-protocol/models/response/Response.ts +++ b/libs/@local/harpc/client/typescript/src/wire-protocol/models/response/Response.ts @@ -1,5 +1,5 @@ -import type { FastCheck } from "effect"; import { + type FastCheck, Effect, Equal, Function, @@ -12,6 +12,7 @@ import { import { createProto, encodeDual } from "../../../utils.js"; import type * as Buffer from "../../Buffer.js"; + import * as ResponseBody from "./ResponseBody.js"; import * as ResponseFlags from "./ResponseFlags.js"; import * as ResponseHeader from "./ResponseHeader.js"; @@ -19,6 +20,7 @@ import * as ResponseHeader from "./ResponseHeader.js"; const TypeId: unique symbol = Symbol( "@local/harpc-client/wire-protocol/models/response/Response", ); + export type TypeId = typeof TypeId; export interface Response @@ -79,7 +81,8 @@ export const make = ( body: ResponseBody.ResponseBody, ): Response => createProto(ResponseProto, { header, body }); -/* +/** + * * Prepare a response for encoding, this will ensure that the header has all computed flags set. * * This step is automatically done during encoding, but can be useful to call manually if you want to inspect the diff --git a/libs/@local/harpc/client/typescript/src/wire-protocol/models/response/ResponseBegin.ts b/libs/@local/harpc/client/typescript/src/wire-protocol/models/response/ResponseBegin.ts index 05b647f59b3..be239009840 100644 --- a/libs/@local/harpc/client/typescript/src/wire-protocol/models/response/ResponseBegin.ts +++ b/libs/@local/harpc/client/typescript/src/wire-protocol/models/response/ResponseBegin.ts @@ -1,5 +1,5 @@ -import type { FastCheck } from "effect"; import { + type FastCheck, Effect, Equal, Function, @@ -18,6 +18,7 @@ import * as Payload from "../Payload.js"; const TypeId: unique symbol = Symbol( "@local/harpc-client/wire-protocol/models/response/ResponseBegin", ); + export type TypeId = typeof TypeId; export interface ResponseBegin diff --git a/libs/@local/harpc/client/typescript/src/wire-protocol/models/response/ResponseBody.ts b/libs/@local/harpc/client/typescript/src/wire-protocol/models/response/ResponseBody.ts index b92a0b6805d..e4b012d49aa 100644 --- a/libs/@local/harpc/client/typescript/src/wire-protocol/models/response/ResponseBody.ts +++ b/libs/@local/harpc/client/typescript/src/wire-protocol/models/response/ResponseBody.ts @@ -1,5 +1,6 @@ -import type { FastCheck, Option } from "effect"; import { + type FastCheck, + type Option, Effect, Either, Equal, @@ -13,12 +14,14 @@ import { import { createProto, encodeDual } from "../../../utils.js"; import type * as Buffer from "../../Buffer.js"; + import * as ResponseBegin from "./ResponseBegin.js"; import * as ResponseFrame from "./ResponseFrame.js"; const TypeId: unique symbol = Symbol( "@local/harpc-client/wire-protocol/models/response/ResponseBody", ); + export type TypeId = typeof TypeId; export type ResponseBodyVariant = "ResponseBegin" | "ResponseFrame"; @@ -145,21 +148,23 @@ export type DecodeError = Effect.Effect.Error>; export const decode = ( buffer: Buffer.ReadBuffer, - variant: ResponseBodyVariant, + variantHint: ResponseBodyVariant, ) => { - switch (variant) { - case "ResponseBegin": + switch (variantHint) { + case "ResponseBegin": { return pipe( buffer, ResponseBegin.decode, Effect.andThen((begin) => make(Either.right(begin))), ); - case "ResponseFrame": + } + case "ResponseFrame": { return pipe( buffer, ResponseFrame.decode, Effect.andThen((frame) => make(Either.left(frame))), ); + } } }; diff --git a/libs/@local/harpc/client/typescript/src/wire-protocol/models/response/ResponseFlags.ts b/libs/@local/harpc/client/typescript/src/wire-protocol/models/response/ResponseFlags.ts index 0d45288cda7..7dd12b380e5 100644 --- a/libs/@local/harpc/client/typescript/src/wire-protocol/models/response/ResponseFlags.ts +++ b/libs/@local/harpc/client/typescript/src/wire-protocol/models/response/ResponseFlags.ts @@ -1,5 +1,5 @@ -import type { FastCheck } from "effect"; import { + type FastCheck, Effect, Equal, Hash, @@ -12,11 +12,13 @@ import { import { createProto, encodeDual } from "../../../utils.js"; import * as Buffer from "../../Buffer.js"; + import type * as ResponseBody from "./ResponseBody.js"; const TypeId: unique symbol = Symbol( "@local/harpc-client/wire-protocol/models/response/ResponseFlags", ); + export type TypeId = typeof TypeId; export type Flag = @@ -78,10 +80,12 @@ export const applyBodyVariant = ( variant: ResponseBody.ResponseBodyVariant, ) => { switch (variant) { - case "ResponseBegin": + case "ResponseBegin": { return HashSet.add(flags.flags, "beginOfResponse").pipe(make); - case "ResponseFrame": + } + case "ResponseFrame": { return HashSet.remove(flags.flags, "beginOfResponse").pipe(make); + } } }; @@ -89,13 +93,11 @@ export const repr = (flags: ResponseFlags) => { let value = 0x00; if (HashSet.has(flags.flags, "beginOfResponse")) { - // eslint-disable-next-line no-bitwise - value |= 0b1000_0000; + value = value | 0b1000_0000; } if (HashSet.has(flags.flags, "endOfResponse")) { - // eslint-disable-next-line no-bitwise - value |= 0b0000_0001; + value = value | 0b0000_0001; } return value; @@ -120,12 +122,10 @@ export const decode = (buffer: Buffer.ReadBuffer) => const flags = HashSet.empty().pipe(HashSet.beginMutation); - // eslint-disable-next-line no-bitwise if ((value & 0b1000_0000) === 0b1000_0000) { HashSet.add(flags, "beginOfResponse"); } - // eslint-disable-next-line no-bitwise if ((value & 0b0000_0001) === 0b0000_0001) { HashSet.add(flags, "endOfResponse"); } diff --git a/libs/@local/harpc/client/typescript/src/wire-protocol/models/response/ResponseFrame.ts b/libs/@local/harpc/client/typescript/src/wire-protocol/models/response/ResponseFrame.ts index 46c3c74cf0f..25b9f264c5a 100644 --- a/libs/@local/harpc/client/typescript/src/wire-protocol/models/response/ResponseFrame.ts +++ b/libs/@local/harpc/client/typescript/src/wire-protocol/models/response/ResponseFrame.ts @@ -1,5 +1,5 @@ -import type { FastCheck } from "effect"; import { + type FastCheck, Effect, Equal, Hash, @@ -16,6 +16,7 @@ import * as Payload from "../Payload.js"; const TypeId: unique symbol = Symbol( "@local/harpc-client/wire-protocol/models/response/ResponseFrame", ); + export type TypeId = typeof TypeId; export interface ResponseFrame diff --git a/libs/@local/harpc/client/typescript/src/wire-protocol/models/response/ResponseHeader.ts b/libs/@local/harpc/client/typescript/src/wire-protocol/models/response/ResponseHeader.ts index 4f82813b4ce..a790e60e5b5 100644 --- a/libs/@local/harpc/client/typescript/src/wire-protocol/models/response/ResponseHeader.ts +++ b/libs/@local/harpc/client/typescript/src/wire-protocol/models/response/ResponseHeader.ts @@ -1,5 +1,5 @@ -import type { FastCheck } from "effect"; import { + type FastCheck, Effect, Equal, Function, @@ -14,6 +14,7 @@ import { createProto, encodeDual } from "../../../utils.js"; import type * as Buffer from "../../Buffer.js"; import * as Protocol from "../Protocol.js"; import { RequestId } from "../request/index.js"; + import type * as ResponseBody from "./ResponseBody.js"; import * as ResponseFlags from "./ResponseFlags.js"; diff --git a/libs/@local/harpc/client/typescript/src/wire-protocol/stream/RequestToBytesStream.ts b/libs/@local/harpc/client/typescript/src/wire-protocol/stream/RequestToBytesStream.ts index 3aa83be6e28..bce0924c2df 100644 --- a/libs/@local/harpc/client/typescript/src/wire-protocol/stream/RequestToBytesStream.ts +++ b/libs/@local/harpc/client/typescript/src/wire-protocol/stream/RequestToBytesStream.ts @@ -1,36 +1,20 @@ -import { Effect, pipe, Stream, Streamable } from "effect"; +import { Effect, pipe, Stream } from "effect"; import * as Buffer from "../Buffer.js"; import { Request } from "../models/request/index.js"; -export class RequestToBytesStream extends Streamable.Class< - ArrayBuffer, - E | Request.EncodeError, - R -> { - readonly #stream: Stream.Stream; - - constructor(stream: Stream.Stream) { - super(); - - this.#stream = stream; - } - - toStream(): Stream.Stream { - return pipe( - this.#stream, - Stream.mapEffect((request) => - Effect.gen(function* () { - const buffer = yield* Buffer.makeWrite(); - - yield* Request.encode(buffer, request); - - return yield* Buffer.take(buffer); - }), - ), - ); - } -} - -export const make = (stream: Stream.Stream) => - new RequestToBytesStream(stream); +export const make = ( + stream: Stream.Stream, +): Stream.Stream => + pipe( + stream, + Stream.mapEffect((request) => + Effect.gen(function* () { + const buffer = yield* Buffer.makeWrite(); + + yield* Request.encode(buffer, request); + + return yield* Buffer.take(buffer); + }), + ), + ); diff --git a/libs/@local/harpc/client/typescript/src/wire-protocol/stream/ResponseFromBytesStream.ts b/libs/@local/harpc/client/typescript/src/wire-protocol/stream/ResponseFromBytesStream.ts index cd65eccf669..7d22a71686a 100644 --- a/libs/@local/harpc/client/typescript/src/wire-protocol/stream/ResponseFromBytesStream.ts +++ b/libs/@local/harpc/client/typescript/src/wire-protocol/stream/ResponseFromBytesStream.ts @@ -1,4 +1,4 @@ -import { Data, Effect, Option, pipe, Stream, Streamable } from "effect"; +import { Data, Effect, Option, pipe, Stream } from "effect"; import { MutableBytes } from "../../binary/index.js"; import * as Buffer from "../Buffer.js"; @@ -14,7 +14,9 @@ export class IncompleteResponseError extends Data.TaggedError( } } -// initial scratch buffer is 2x size of the largest possible packet +/** + * Initial scratch buffer is 2x size of the largest possible packet. + */ const makeScratch = () => MutableBytes.make({ initialCapacity: 2 * 1024 * 64, @@ -33,6 +35,7 @@ const tryDecodePacket = (scratch: MutableBytes.MutableBytes) => const packetLength = bufferView.getUint16(0, false); const split = MutableBytes.splitTo(scratch, packetLength + 32); + if (Option.isNone(split)) { // we cannot yet read the full message return Option.none(); @@ -45,6 +48,7 @@ const tryDecodePacket = (scratch: MutableBytes.MutableBytes) => new DataView(MutableBytes.asBuffer(packet)), ); const response = yield* Response.decode(reader); + return Option.some(response); }); @@ -69,57 +73,39 @@ const tryDecode = (scratch: MutableBytes.MutableBytes) => return output; }); -export class ResponseFromBytesStream< - E = never, - R = never, -> extends Streamable.Class< +export const make = ( + stream: Stream.Stream, +): Stream.Stream< Response.Response, E | Response.DecodeError | IncompleteResponseError, R -> { - readonly #stream: Stream.Stream; - - constructor(stream: Stream.Stream) { - super(); - - this.#stream = stream; - } - - toStream(): Stream.Stream< - Response.Response, - E | Response.DecodeError | IncompleteResponseError, - R - > { - const scratch = makeScratch(); - - return pipe( - this.#stream, - Stream.mapConcatEffect((chunk) => - Effect.gen(function* () { - MutableBytes.appendBuffer(scratch, chunk); - - return yield* tryDecode(scratch); - }), - ), - Stream.concat( - Stream.fromIterableEffect( - Effect.suspend(() => - Effect.gen(function* () { - // we don't need to `tryDecode` here again, because anytime we receive a value, we try to decode as much as possible. - if (MutableBytes.length(scratch) > 0) { - yield* new IncompleteResponseError({ - length: MutableBytes.length(scratch), - }); - } - - return []; - }), - ), +> => { + const scratch = makeScratch(); + + return pipe( + stream, + Stream.mapConcatEffect((chunk) => + Effect.gen(function* () { + MutableBytes.appendBuffer(scratch, chunk); + + return yield* tryDecode(scratch); + }), + ), + Stream.concat( + Stream.fromIterableEffect( + Effect.suspend(() => + Effect.gen(function* () { + // we don't need to `tryDecode` here again, because anytime we receive a value, we try to decode as much as possible. + if (MutableBytes.length(scratch) > 0) { + yield* new IncompleteResponseError({ + length: MutableBytes.length(scratch), + }); + } + + return []; + }), ), ), - ); - } -} - -export const make = (stream: Stream.Stream) => - new ResponseFromBytesStream(stream); + ), + ); +}; diff --git a/libs/@local/harpc/client/typescript/tests/codec/JsonDecoder.test.ts b/libs/@local/harpc/client/typescript/tests/codec/JsonDecoder.test.ts index aa783136b52..63633f8b099 100644 --- a/libs/@local/harpc/client/typescript/tests/codec/JsonDecoder.test.ts +++ b/libs/@local/harpc/client/typescript/tests/codec/JsonDecoder.test.ts @@ -32,6 +32,7 @@ describe.concurrent("JsonDecoder", () => { const textPayload = '{"key": "value"}\x1E'; const items = yield* decode([textPayload]); + cx.expect(items).toMatchObject([{ key: "value" }]); }).pipe(Effect.provide(JsonDecoder.layer)), ); @@ -41,6 +42,7 @@ describe.concurrent("JsonDecoder", () => { const textPayload = '{"key": "value1"}\x1E{"key": "value2"}\x1E'; const items = yield* decode([textPayload]); + cx.expect(items).toMatchObject([{ key: "value1" }, { key: "value2" }]); }).pipe(Effect.provide(JsonDecoder.layer)), ); @@ -50,6 +52,7 @@ describe.concurrent("JsonDecoder", () => { const textPayload = '{"key": "value1"}\x1E{"key": "value2'; const items = yield* decode([textPayload]); + cx.expect(items).toMatchObject([{ key: "value1" }]); }).pipe(Effect.provide(JsonDecoder.layer)), ); @@ -59,6 +62,7 @@ describe.concurrent("JsonDecoder", () => { const textPayload = ['{"key": "val', 'ue1"}\x1E']; const items = yield* decode(textPayload); + cx.expect(items).toMatchObject([{ key: "value1" }]); }).pipe(Effect.provide(JsonDecoder.layer)), ); @@ -70,6 +74,7 @@ describe.concurrent("JsonDecoder", () => { const textPayload = ['{"key": "val', 'ue1"}\x1E{"key": "value2"}\x1E']; const items = yield* decode(textPayload); + cx.expect(items).toMatchObject([{ key: "value1" }, { key: "value2" }]); }).pipe(Effect.provide(JsonDecoder.layer)), ); diff --git a/libs/@local/harpc/client/typescript/tests/codec/JsonEncoder.test.ts b/libs/@local/harpc/client/typescript/tests/codec/JsonEncoder.test.ts index d86c8eddddd..b605f804b68 100644 --- a/libs/@local/harpc/client/typescript/tests/codec/JsonEncoder.test.ts +++ b/libs/@local/harpc/client/typescript/tests/codec/JsonEncoder.test.ts @@ -26,6 +26,7 @@ describe.concurrent("JsonEncoder", () => { const payload = [{ key: "value" }]; const items = yield* encode(payload); + cx.expect(items).toMatchObject(['{"key":"value"}\x1E']); }).pipe(Effect.provide(JsonEncoder.layer)), ); @@ -35,6 +36,7 @@ describe.concurrent("JsonEncoder", () => { const payload = [{ key: "value1" }, { key: "value2" }]; const items = yield* encode(payload); + cx.expect(items).toMatchObject([ '{"key":"value1"}\x1E', '{"key":"value2"}\x1E', diff --git a/libs/@local/harpc/client/typescript/tests/net/Request.test.ts b/libs/@local/harpc/client/typescript/tests/net/Request.test.ts index af3d0d8696e..42657bd905c 100644 --- a/libs/@local/harpc/client/typescript/tests/net/Request.test.ts +++ b/libs/@local/harpc/client/typescript/tests/net/Request.test.ts @@ -12,8 +12,8 @@ import { } from "../../src/types/index.js"; import { RequestIdProducer } from "../../src/wire-protocol/index.js"; import { Payload } from "../../src/wire-protocol/models/index.js"; -import type { Request as WireRequest } from "../../src/wire-protocol/models/request/index.js"; import { + type Request as WireRequest, RequestBody, RequestFlags, } from "../../src/wire-protocol/models/request/index.js"; @@ -31,7 +31,7 @@ const makeRequest = (stream: Stream.Stream) => }); const assertBody = ( - cx: vitest.TaskContext> & vitest.TestContext, + cx: vitest.TaskContext & vitest.TestContext, request: WireRequest.Request, bodyIs: (request: RequestBody.RequestBody) => boolean, body: string | number, @@ -45,6 +45,7 @@ const assertBody = ( if (Predicate.isString(body)) { const text = new TextDecoder().decode(buffer); + cx.expect(text).toBe(body); } else if (Predicate.isNumber(body)) { cx.expect(buffer.byteLength).toBe(body); diff --git a/libs/@local/harpc/client/typescript/tests/wire-protocol/decode.test.ts b/libs/@local/harpc/client/typescript/tests/wire-protocol/decode.test.ts index ff1662dff1d..2c99337faa6 100644 --- a/libs/@local/harpc/client/typescript/tests/wire-protocol/decode.test.ts +++ b/libs/@local/harpc/client/typescript/tests/wire-protocol/decode.test.ts @@ -12,6 +12,7 @@ import { ResponseFrame, ResponseHeader, } from "../../src/wire-protocol/models/response/index.js"; + import { callDecode } from "./utils.js"; const ResponseHeaderFromSelf = Schema.declare(ResponseHeader.isResponseHeader, { @@ -50,9 +51,10 @@ const convertResponseBegin = ( ): ResponseBeginData => ({ kind: ResponseKind.match(begin.kind, { onOk: () => "Ok", + // eslint-disable-next-line unicorn/prevent-abbreviations onErr: (code) => ({ Err: code.value }), }), - payload: Array.from(begin.payload.buffer), + payload: [...begin.payload.buffer], }); const ResponseFrameFromSelf = Schema.declare(ResponseFrame.isResponseFrame, { @@ -66,7 +68,7 @@ interface ResponseFrameData { const convertResponseFrame = ( frame: ResponseFrame.ResponseFrame, ): ResponseFrameData => ({ - payload: Array.from(frame.payload.buffer), + payload: [...frame.payload.buffer], }); const ResponseFromSelf = Schema.declare(Response.isResponse, { diff --git a/libs/@local/harpc/client/typescript/tests/wire-protocol/encode.test.ts b/libs/@local/harpc/client/typescript/tests/wire-protocol/encode.test.ts index 7bb02aed0fb..57a0385e13a 100644 --- a/libs/@local/harpc/client/typescript/tests/wire-protocol/encode.test.ts +++ b/libs/@local/harpc/client/typescript/tests/wire-protocol/encode.test.ts @@ -1,6 +1,5 @@ import { NodeContext } from "@effect/platform-node"; -import type { TestContext } from "@effect/vitest"; -import { describe, it } from "@effect/vitest"; +import { type TestContext, describe, it } from "@effect/vitest"; import { Effect, Option, Predicate, Schema } from "effect"; import { Buffer } from "../../src/wire-protocol/index.js"; @@ -12,6 +11,7 @@ import { RequestFrame, RequestHeader, } from "../../src/wire-protocol/models/request/index.js"; + import { callEncode } from "./utils.js"; const RequestHeaderFromSelf = Schema.declare(RequestHeader.isRequestHeader, { @@ -63,7 +63,7 @@ const assertRequestBegin = ( cx.expect(a.subsystem.version.major).toBe(b.subsystem.version.major); cx.expect(a.subsystem.version.minor).toBe(b.subsystem.version.minor); cx.expect(a.procedure.id.value).toBe(b.procedure.id); - cx.expect(Array.from(a.payload.buffer)).toEqual(b.payload); + cx.expect([...a.payload.buffer]).toEqual(b.payload); }; const RequestFrameFromSelf = Schema.declare(RequestFrame.isRequestFrame, { @@ -79,7 +79,7 @@ const assertRequestFrame = ( a: RequestFrame.RequestFrame, b: RequestFrameData, ) => { - cx.expect(Array.from(a.payload.buffer)).toEqual(b.payload); + cx.expect([...a.payload.buffer]).toEqual(b.payload); }; const RequestFromSelf = Schema.declare(Request.isRequest, { @@ -121,6 +121,7 @@ describe.concurrent("encode", () => { ({ header }, cx) => Effect.gen(function* () { const buffer = yield* Buffer.makeWrite(); + yield* RequestHeader.encode(buffer, header); const array = yield* Buffer.take(buffer); @@ -139,6 +140,7 @@ describe.concurrent("encode", () => { ({ begin }, cx) => Effect.gen(function* () { const buffer = yield* Buffer.makeWrite(); + yield* RequestBegin.encode(buffer, begin); const array = yield* Buffer.take(buffer); @@ -146,6 +148,7 @@ describe.concurrent("encode", () => { "request-begin", new Uint8Array(array), ); + assertRequestBegin(cx, begin, received as RequestBeginData); }).pipe(Effect.provide(NodeContext.layer)), ); @@ -156,6 +159,7 @@ describe.concurrent("encode", () => { ({ frame }, cx) => Effect.gen(function* () { const buffer = yield* Buffer.makeWrite(); + yield* RequestFrame.encode(buffer, frame); const array = yield* Buffer.take(buffer); @@ -174,6 +178,7 @@ describe.concurrent("encode", () => { ({ request }, cx) => Effect.gen(function* () { const buffer = yield* Buffer.makeWrite(); + yield* Request.encode(buffer, request); const array = yield* Buffer.take(buffer); diff --git a/libs/@local/harpc/client/typescript/tests/wire-protocol/utils.ts b/libs/@local/harpc/client/typescript/tests/wire-protocol/utils.ts index 9f7e60cb319..f7c6ed621ae 100644 --- a/libs/@local/harpc/client/typescript/tests/wire-protocol/utils.ts +++ b/libs/@local/harpc/client/typescript/tests/wire-protocol/utils.ts @@ -43,9 +43,9 @@ export const callEncode = ( return received; }); -export const callDecode = ( +export const callDecode = ( mode: "response-header" | "response-begin" | "response-frame" | "response", - payload: T, + payload: unknown, ) => Effect.gen(function* () { const binary = yield* executablePath(); @@ -57,5 +57,6 @@ export const callDecode = ( // convert base64 to Uint8Array const buffer = Buffer.from(output, "base64"); + return Uint8Array.from(buffer); }); diff --git a/libs/@local/harpc/client/typescript/vitest.config.ts b/libs/@local/harpc/client/typescript/vitest.config.ts index 3c557787e67..e21edf32c22 100644 --- a/libs/@local/harpc/client/typescript/vitest.config.ts +++ b/libs/@local/harpc/client/typescript/vitest.config.ts @@ -12,7 +12,6 @@ export default defineConfig({ provider: "istanbul", reporter: ["lcov", "text"], include: ["**/*.{c,m,}{j,t}s{x,}"], - exclude: ["**/node_modules/**", "**/dist/**"], }, environment: "node", testTimeout: 30000, From 63bdf4015798c55aa92a2c806bcae010bdaf9029 Mon Sep 17 00:00:00 2001 From: "hash-worker[bot]" <180894564+hash-worker[bot]@users.noreply.github.com> Date: Mon, 16 Dec 2024 13:18:36 +0000 Subject: [PATCH 010/159] Update LLM provider SDK npm packages (#5038) Co-authored-by: hash-worker[bot] <180894564+hash-worker[bot]@users.noreply.github.com> Co-authored-by: Ciaran Morinan Co-authored-by: Ciaran Morinan <37743469+CiaranMn@users.noreply.github.com> --- apps/hash-ai-worker-ts/package.json | 4 +- .../shared/get-llm-response/llm-message.ts | 6 ++ yarn.lock | 56 +++++++++---------- 3 files changed, 35 insertions(+), 31 deletions(-) diff --git a/apps/hash-ai-worker-ts/package.json b/apps/hash-ai-worker-ts/package.json index 62d76a1c0f0..16aeab58da4 100644 --- a/apps/hash-ai-worker-ts/package.json +++ b/apps/hash-ai-worker-ts/package.json @@ -41,8 +41,8 @@ "test:unit": "vitest --run --exclude \"**/*.ai.test.ts\"" }, "dependencies": { - "@anthropic-ai/bedrock-sdk": "0.10.0", - "@anthropic-ai/sdk": "0.24.0", + "@anthropic-ai/bedrock-sdk": "0.11.2", + "@anthropic-ai/sdk": "0.32.1", "@apps/hash-graph": "0.0.0-private", "@blockprotocol/graph": "0.4.0-canary.0", "@blockprotocol/type-system": "0.1.2-canary.0", diff --git a/apps/hash-ai-worker-ts/src/activities/shared/get-llm-response/llm-message.ts b/apps/hash-ai-worker-ts/src/activities/shared/get-llm-response/llm-message.ts index 2289dbb7bb4..f09f2df7fff 100644 --- a/apps/hash-ai-worker-ts/src/activities/shared/get-llm-response/llm-message.ts +++ b/apps/hash-ai-worker-ts/src/activities/shared/get-llm-response/llm-message.ts @@ -110,6 +110,12 @@ export const mapAnthropicMessageToLlmMessage = (params: { } else if (block.type === "tool_use") { throw new Error("Tool use content not supported"); } else if (block.type === "tool_result") { + if (typeof block.content === "string") { + throw new Error( + "Unexpected string content for tool result, expected object with type field", + ); + } + /** * Currently images are not supported in LLM messages, * so we filter them out from the content. diff --git a/yarn.lock b/yarn.lock index 399eb98a873..1d2e296564e 100644 --- a/yarn.lock +++ b/yarn.lock @@ -25,43 +25,26 @@ __metadata: languageName: node linkType: hard -"@anthropic-ai/bedrock-sdk@npm:0.10.0": - version: 0.10.0 - resolution: "@anthropic-ai/bedrock-sdk@npm:0.10.0" +"@anthropic-ai/bedrock-sdk@npm:0.11.2": + version: 0.11.2 + resolution: "@anthropic-ai/bedrock-sdk@npm:0.11.2" dependencies: "@anthropic-ai/sdk": "npm:^0" "@aws-crypto/sha256-js": "npm:^4.0.0" "@aws-sdk/client-bedrock-runtime": "npm:^3.423.0" "@aws-sdk/credential-providers": "npm:^3.341.0" - "@aws-sdk/protocol-http": "npm:^3.341.0" - "@aws-sdk/signature-v4": "npm:^3.341.0" "@smithy/eventstream-serde-node": "npm:^2.0.10" "@smithy/fetch-http-handler": "npm:^2.2.1" "@smithy/protocol-http": "npm:^3.0.6" + "@smithy/signature-v4": "npm:^3.1.1" "@smithy/smithy-client": "npm:^2.1.9" "@smithy/types": "npm:^2.3.4" "@smithy/util-base64": "npm:^2.0.0" - checksum: 10c0/c69dd8bc7017d15ec0626f71410e0cf5c56b921b376bf0c2027ed4783e0f15db6af6ed0d63d279f98369b6a9468235a90f9a6490e1c8619d9fe6f582ae885f7e - languageName: node - linkType: hard - -"@anthropic-ai/sdk@npm:0.24.0": - version: 0.24.0 - resolution: "@anthropic-ai/sdk@npm:0.24.0" - dependencies: - "@types/node": "npm:^18.11.18" - "@types/node-fetch": "npm:^2.6.4" - abort-controller: "npm:^3.0.0" - agentkeepalive: "npm:^4.2.1" - form-data-encoder: "npm:1.7.2" - formdata-node: "npm:^4.3.2" - node-fetch: "npm:^2.6.7" - web-streams-polyfill: "npm:^3.2.1" - checksum: 10c0/0f1bb1777d3f7ff172fd9f63391e8023cfcd723e9051149763dd7fc84e3fcdd8b759a0377471e01019c1663e9fdf0862453f602b5440907faf480c3ee9d856fd + checksum: 10c0/08534d8bc3a0887150d1e244e9f853d53e82b1b3fef871dc496b2095e71760373c6f0e54fd915db0d73913dd37ee2fc06206c6ac7a0b39de7628e21d47834a22 languageName: node linkType: hard -"@anthropic-ai/sdk@npm:^0": +"@anthropic-ai/sdk@npm:0.32.1, @anthropic-ai/sdk@npm:^0": version: 0.32.1 resolution: "@anthropic-ai/sdk@npm:0.32.1" dependencies: @@ -287,8 +270,8 @@ __metadata: version: 0.0.0-use.local resolution: "@apps/hash-ai-worker-ts@workspace:apps/hash-ai-worker-ts" dependencies: - "@anthropic-ai/bedrock-sdk": "npm:0.10.0" - "@anthropic-ai/sdk": "npm:0.24.0" + "@anthropic-ai/bedrock-sdk": "npm:0.11.2" + "@anthropic-ai/sdk": "npm:0.32.1" "@apps/hash-graph": "npm:0.0.0-private" "@blockprotocol/graph": "npm:0.4.0-canary.0" "@blockprotocol/type-system": "npm:0.1.2-canary.0" @@ -2251,7 +2234,7 @@ __metadata: languageName: node linkType: hard -"@aws-sdk/protocol-http@npm:^3.341.0, @aws-sdk/protocol-http@npm:^3.374.0": +"@aws-sdk/protocol-http@npm:^3.374.0": version: 3.374.0 resolution: "@aws-sdk/protocol-http@npm:3.374.0" dependencies: @@ -2336,7 +2319,7 @@ __metadata: languageName: node linkType: hard -"@aws-sdk/signature-v4@npm:^3.341.0, @aws-sdk/signature-v4@npm:^3.374.0": +"@aws-sdk/signature-v4@npm:^3.374.0": version: 3.374.0 resolution: "@aws-sdk/signature-v4@npm:3.374.0" dependencies: @@ -14491,6 +14474,21 @@ __metadata: languageName: node linkType: hard +"@smithy/signature-v4@npm:^3.1.1": + version: 3.1.2 + resolution: "@smithy/signature-v4@npm:3.1.2" + dependencies: + "@smithy/is-array-buffer": "npm:^3.0.0" + "@smithy/types": "npm:^3.3.0" + "@smithy/util-hex-encoding": "npm:^3.0.0" + "@smithy/util-middleware": "npm:^3.0.3" + "@smithy/util-uri-escape": "npm:^3.0.0" + "@smithy/util-utf8": "npm:^3.0.0" + tslib: "npm:^2.6.2" + checksum: 10c0/252807b2c8a400e0eddf34c75fcaaf3d99b7bc0b31d4c79c0d48ee4572687279717d8b19fdd2acf597ade0d07c7355e6e93b74e9651786cf24317c2fcd1c0a06 + languageName: node + linkType: hard + "@smithy/signature-v4@npm:^4.2.2, @smithy/signature-v4@npm:^4.2.4": version: 4.2.4 resolution: "@smithy/signature-v4@npm:4.2.4" @@ -14554,7 +14552,7 @@ __metadata: languageName: node linkType: hard -"@smithy/types@npm:^3.7.1, @smithy/types@npm:^3.7.2": +"@smithy/types@npm:^3.3.0, @smithy/types@npm:^3.7.1, @smithy/types@npm:^3.7.2": version: 3.7.2 resolution: "@smithy/types@npm:3.7.2" dependencies: @@ -14749,7 +14747,7 @@ __metadata: languageName: node linkType: hard -"@smithy/util-middleware@npm:^3.0.10, @smithy/util-middleware@npm:^3.0.11": +"@smithy/util-middleware@npm:^3.0.10, @smithy/util-middleware@npm:^3.0.11, @smithy/util-middleware@npm:^3.0.3": version: 3.0.11 resolution: "@smithy/util-middleware@npm:3.0.11" dependencies: From b3d70b949582ed13d3cc80b5524354e1cfdf28ae Mon Sep 17 00:00:00 2001 From: "hash-worker[bot]" <180894564+hash-worker[bot]@users.noreply.github.com> Date: Mon, 16 Dec 2024 13:52:01 +0000 Subject: [PATCH 011/159] Update npm package `openai` to v4.76.2 (#5601) Co-authored-by: hash-worker[bot] <180894564+hash-worker[bot]@users.noreply.github.com> Co-authored-by: Ciaran Morinan Co-authored-by: Ciaran Morinan <37743469+CiaranMn@users.noreply.github.com> --- apps/hash-ai-worker-ts/package.json | 2 +- .../flow-activities/answer-question-action.ts | 15 ++++---- .../src/activities/shared/embeddings.ts | 3 +- apps/hash-api/package.json | 2 +- yarn.lock | 34 ++++--------------- 5 files changed, 16 insertions(+), 40 deletions(-) diff --git a/apps/hash-ai-worker-ts/package.json b/apps/hash-ai-worker-ts/package.json index 16aeab58da4..b9e31c727c8 100644 --- a/apps/hash-ai-worker-ts/package.json +++ b/apps/hash-ai-worker-ts/package.json @@ -81,7 +81,7 @@ "md5": "2.3.0", "mime-types": "2.1.35", "officeparser": "4.2.0", - "openai": "4.68.4", + "openai": "4.76.2", "openai-chat-tokens": "0.2.8", "papaparse": "5.4.1", "pdf2json": "3.1.4", diff --git a/apps/hash-ai-worker-ts/src/activities/flow-activities/answer-question-action.ts b/apps/hash-ai-worker-ts/src/activities/flow-activities/answer-question-action.ts index 588f6191828..e0c9286d872 100644 --- a/apps/hash-ai-worker-ts/src/activities/flow-activities/answer-question-action.ts +++ b/apps/hash-ai-worker-ts/src/activities/flow-activities/answer-question-action.ts @@ -17,15 +17,9 @@ import { StatusCode } from "@local/status"; import { Context } from "@temporalio/activity"; import dedent from "dedent"; import { CodeInterpreter, Sandbox } from "e2b"; -import { OpenAI } from "openai"; +import type { OpenAI } from "openai"; import { logger } from "../shared/activity-logger.js"; -import type { PermittedOpenAiModel } from "../shared/openai-client.js"; -import { stringify } from "../shared/stringify.js"; -import type { FlowActionActivity } from "./types.js"; -import ChatCompletionUserMessageParam = OpenAI.ChatCompletionUserMessageParam; -import ChatCompletionToolMessageParam = OpenAI.ChatCompletionToolMessageParam; - import { getFlowContext } from "../shared/get-flow-context.js"; import { getLlmResponse } from "../shared/get-llm-response.js"; import { @@ -37,6 +31,9 @@ import type { LlmToolDefinition } from "../shared/get-llm-response/types.js"; import { graphApiClient } from "../shared/graph-api-client.js"; import { mapActionInputEntitiesToEntities } from "../shared/map-action-input-entities-to-entities.js"; import { openAiSeed } from "../shared/open-ai-seed.js"; +import type { PermittedOpenAiModel } from "../shared/openai-client.js"; +import { stringify } from "../shared/stringify.js"; +import type { FlowActionActivity } from "./types.js"; const answerTools: LlmToolDefinition[] = [ { @@ -202,7 +199,7 @@ const callModel = async ( const toolCalls = getToolCallsFromLlmAssistantMessage({ message }); - const responseMessages: ChatCompletionToolMessageParam[] = []; + const responseMessages: OpenAI.ChatCompletionToolMessageParam[] = []; /** * Defining these outside the loop so that in cases where the maximum iteration is reached, @@ -384,7 +381,7 @@ const callModel = async ( ); } - const responseMessage: ChatCompletionUserMessageParam = { + const responseMessage: OpenAI.ChatCompletionUserMessageParam = { role: "user", content: "You didn't make any valid tool calls as part of your response. Please review the tools available to you and use the appropriate one.", diff --git a/apps/hash-ai-worker-ts/src/activities/shared/embeddings.ts b/apps/hash-ai-worker-ts/src/activities/shared/embeddings.ts index 12acea4ea34..cd8bba3ba41 100644 --- a/apps/hash-ai-worker-ts/src/activities/shared/embeddings.ts +++ b/apps/hash-ai-worker-ts/src/activities/shared/embeddings.ts @@ -9,7 +9,8 @@ import type { } from "@local/hash-graph-types/ontology"; import { extractBaseUrl } from "@local/hash-subgraph/type-system-patch"; import OpenAI from "openai"; -import Usage = OpenAI.CreateEmbeddingResponse.Usage; + +type Usage = OpenAI.CreateEmbeddingResponse.Usage; const openai = new OpenAI({ apiKey: process.env.OPENAI_API_KEY, diff --git a/apps/hash-api/package.json b/apps/hash-api/package.json index 3c6175c2328..acf4506a811 100644 --- a/apps/hash-api/package.json +++ b/apps/hash-api/package.json @@ -99,7 +99,7 @@ "nanoid": "3.3.8", "nodemailer": "6.9.16", "oembed-providers": "1.0.20241022", - "openai": "4.68.4", + "openai": "4.76.2", "ts-json-schema-generator": "1.5.1", "tsx": "4.19.2", "typescript": "5.6.3", diff --git a/yarn.lock b/yarn.lock index 1d2e296564e..664faf217b1 100644 --- a/yarn.lock +++ b/yarn.lock @@ -327,7 +327,7 @@ __metadata: md5: "npm:2.3.0" mime-types: "npm:2.1.35" officeparser: "npm:4.2.0" - openai: "npm:4.68.4" + openai: "npm:4.76.2" openai-chat-tokens: "npm:0.2.8" papaparse: "npm:5.4.1" pdf2json: "npm:3.1.4" @@ -444,7 +444,7 @@ __metadata: nanoid: "npm:3.3.8" nodemailer: "npm:6.9.16" oembed-providers: "npm:1.0.20241022" - openai: "npm:4.68.4" + openai: "npm:4.76.2" prettier: "npm:3.4.2" rimraf: "npm:6.0.1" ts-json-schema-generator: "npm:1.5.1" @@ -37544,9 +37544,9 @@ __metadata: languageName: node linkType: hard -"openai@npm:4.68.4": - version: 4.68.4 - resolution: "openai@npm:4.68.4" +"openai@npm:4.76.2, openai@npm:^4.38.0": + version: 4.76.2 + resolution: "openai@npm:4.76.2" dependencies: "@types/node": "npm:^18.11.18" "@types/node-fetch": "npm:^2.6.4" @@ -37562,29 +37562,7 @@ __metadata: optional: true bin: openai: bin/cli - checksum: 10c0/4f81795d0847ad145815299fc4f6448f084f9db43ede651776ca636d4907ff9a07de9379b9feea5e54a2d96e95ee9bcc74c3284e13376bf80684be74e0041479 - languageName: node - linkType: hard - -"openai@npm:^4.38.0": - version: 4.73.1 - resolution: "openai@npm:4.73.1" - dependencies: - "@types/node": "npm:^18.11.18" - "@types/node-fetch": "npm:^2.6.4" - abort-controller: "npm:^3.0.0" - agentkeepalive: "npm:^4.2.1" - form-data-encoder: "npm:1.7.2" - formdata-node: "npm:^4.3.2" - node-fetch: "npm:^2.6.7" - peerDependencies: - zod: ^3.23.8 - peerDependenciesMeta: - zod: - optional: true - bin: - openai: bin/cli - checksum: 10c0/556b5ba76846fb6d0bacff1b708ec009034cf92f107d84f1d7962625a0d74bf63e7cdfa48b10faf279d6a2c1d3aaf7c68a23b88aa61539a6ba6a9ef8dda7fd35 + checksum: 10c0/d78af0c2dd64ad24a2ce92deb92656b742b8120012e554fd562095f237ce06d84764217e040b437f955c6f26b7675f9321862a8937c8537f28ed6ead4b674559 languageName: node linkType: hard From 63d4ac47e9c6b25d433c0efc02bcd0ddfc138ee8 Mon Sep 17 00:00:00 2001 From: "hash-worker[bot]" <180894564+hash-worker[bot]@users.noreply.github.com> Date: Mon, 16 Dec 2024 13:59:44 +0000 Subject: [PATCH 012/159] Update npm package `@types/google.picker` to v0.0.47 (#5538) Co-authored-by: hash-worker[bot] <180894564+hash-worker[bot]@users.noreply.github.com> Co-authored-by: Ciaran Morinan --- apps/hash-frontend/package.json | 2 +- .../shared/integrations/google/google-file-picker.tsx | 5 +---- yarn.lock | 10 +++++----- 3 files changed, 7 insertions(+), 10 deletions(-) diff --git a/apps/hash-frontend/package.json b/apps/hash-frontend/package.json index 50f00a2e603..6674c659ecd 100644 --- a/apps/hash-frontend/package.json +++ b/apps/hash-frontend/package.json @@ -138,7 +138,7 @@ "@types/emoji-mart": "patch:@types/emoji-mart@npm%3A3.0.9#~/.yarn/patches/@types-emoji-mart-npm-3.0.9-ec5052fc0d.patch", "@types/gapi": "0.0.47", "@types/google.accounts": "0.0.15", - "@types/google.picker": "0.0.43", + "@types/google.picker": "0.0.47", "@types/iframe-resizer": "3.5.13", "@types/jsonpath": "0.2.4", "@types/lodash": "4.17.13", diff --git a/apps/hash-frontend/src/pages/shared/integrations/google/google-file-picker.tsx b/apps/hash-frontend/src/pages/shared/integrations/google/google-file-picker.tsx index 075e9e3765d..2d97f798e81 100644 --- a/apps/hash-frontend/src/pages/shared/integrations/google/google-file-picker.tsx +++ b/apps/hash-frontend/src/pages/shared/integrations/google/google-file-picker.tsx @@ -19,10 +19,7 @@ export const GoogleFilePicker = ({ .addView(google.picker.ViewId.SPREADSHEETS) .setOAuthToken(accessToken) .setCallback((response) => { - if ( - response.action !== google.picker.Action.PICKED || - !response.docs[0] - ) { + if (response.action !== "picked" || !response.docs?.[0]) { onUserChoice(null); return; } diff --git a/yarn.lock b/yarn.lock index 664faf217b1..82f99b2e1dd 100644 --- a/yarn.lock +++ b/yarn.lock @@ -523,7 +523,7 @@ __metadata: "@types/emoji-mart": "patch:@types/emoji-mart@npm%3A3.0.9#~/.yarn/patches/@types-emoji-mart-npm-3.0.9-ec5052fc0d.patch" "@types/gapi": "npm:0.0.47" "@types/google.accounts": "npm:0.0.15" - "@types/google.picker": "npm:0.0.43" + "@types/google.picker": "npm:0.0.47" "@types/iframe-resizer": "npm:3.5.13" "@types/jsonpath": "npm:0.2.4" "@types/lodash": "npm:4.17.13" @@ -17621,10 +17621,10 @@ __metadata: languageName: node linkType: hard -"@types/google.picker@npm:0.0.43": - version: 0.0.43 - resolution: "@types/google.picker@npm:0.0.43" - checksum: 10c0/929671015dfffb2c73e8a52612505cee9273a49c557241ef3765d9927ea2327ef15047e64269ec2cc7088bc193f009d3e3e75e2ad6a7497603a6f1f9d8672c8e +"@types/google.picker@npm:0.0.47": + version: 0.0.47 + resolution: "@types/google.picker@npm:0.0.47" + checksum: 10c0/c7bbedd7a54a9cc8dd29b7a522d155260e17a3ae4a4617c32b34df65ba3fb0b3b5066e8f3f3e752fbd6670bc5b348af6f8eed3eaeda80411002c844559c22581 languageName: node linkType: hard From 93c40b2bd1b127d42fa57178df974cbe845d23a9 Mon Sep 17 00:00:00 2001 From: Dei Vilkinsons <6226576+vilkinsons@users.noreply.github.com> Date: Mon, 16 Dec 2024 14:27:58 +0000 Subject: [PATCH 013/159] H-3817: Fix typo in GitHub Action name (#5911) Co-authored-by: Tim Diekmann <21277928+TimDiekmann@users.noreply.github.com> Co-authored-by: Ciaran Morinan Co-authored-by: Ciaran Morinan <37743469+CiaranMn@users.noreply.github.com> --- .github/workflows/lint.yml | 16 +++++++++++++--- 1 file changed, 13 insertions(+), 3 deletions(-) diff --git a/.github/workflows/lint.yml b/.github/workflows/lint.yml index b63666519ef..613a46bb541 100644 --- a/.github/workflows/lint.yml +++ b/.github/workflows/lint.yml @@ -339,10 +339,20 @@ jobs: - name: Install SQLFluff run: pip install sqlfluff - - name: SQLFluff - run: sqlfluff lint --warn-unused-ignores + - name: Run SQL formatter and linter + if: ${{ success() || failure() }} + run: | + if ! sqlfluff lint --warn-unused-ignores; then + echo '' + echo '' + echo 'ℹ️ ℹ️ ℹ️' + echo 'Try running `sqlfluff fix` locally to apply autofixes.' + echo 'Note, that SQLFluff does not come with `yarn install` and you may need to install it yourself.' + echo 'ℹ️ ℹ️ ℹ️' + exit 1 + fi - - name: Crate SQLFluff annotationss + - name: Create SQLFluff annotations if: failure() && github.event.pull_request.head.repo.full_name == github.repository run: sqlfluff lint --warn-unused-ignores --format github-annotation --write-output annotations.json --annotation-level failure --nofail From bd719919d0c9763b3560d30afaa93f31a8cdccc0 Mon Sep 17 00:00:00 2001 From: "hash-worker[bot]" <180894564+hash-worker[bot]@users.noreply.github.com> Date: Mon, 16 Dec 2024 14:50:12 +0000 Subject: [PATCH 014/159] Update npm package `typescript` to v5.7.2 (#5700) Co-authored-by: hash-worker[bot] <180894564+hash-worker[bot]@users.noreply.github.com> Co-authored-by: Ciaran Morinan <37743469+CiaranMn@users.noreply.github.com> Co-authored-by: Ciaran Morinan Co-authored-by: Bilal Mahmoud --- apps/hash-ai-worker-ts/package.json | 4 +- ...ty-summaries-from-text.optimize.ai.test.ts | 9 ++ apps/hash-ai-worker-ts/tsconfig.json | 1 - apps/hash-api/package.json | 4 +- apps/hash-frontend/package.json | 2 +- apps/hash-integration-worker/package.json | 4 +- apps/hash-realtime/package.json | 4 +- apps/hash-search-loader/package.json | 4 +- apps/hashdotdev/package.json | 4 +- apps/plugin-browser/package.json | 2 +- blocks/address/package.json | 2 +- blocks/ai-chat/package.json | 2 +- blocks/ai-image/package.json | 2 +- blocks/ai-text/package.json | 2 +- blocks/callout/package.json | 2 +- blocks/chart/package.json | 2 +- blocks/code/package.json | 2 +- blocks/countdown/package.json | 2 +- blocks/divider/package.json | 2 +- blocks/embed/package.json | 2 +- blocks/faq/package.json | 2 +- blocks/heading/package.json | 2 +- blocks/how-to/package.json | 2 +- blocks/image/package.json | 2 +- blocks/kanban-board/package.json | 2 +- blocks/minesweeper/package.json | 2 +- blocks/paragraph/package.json | 2 +- blocks/person/package.json | 2 +- blocks/shuffle/package.json | 2 +- blocks/table/package.json | 2 +- blocks/timer/package.json | 2 +- blocks/video/package.json | 2 +- libs/@blockprotocol/graph/package.json | 4 +- .../type-system/typescript/package.json | 2 +- .../block-design-system/package.json | 2 +- libs/@hashintel/design-system/package.json | 2 +- libs/@hashintel/query-editor/package.json | 2 +- libs/@hashintel/type-editor/package.json | 2 +- libs/@local/advanced-types/package.json | 2 +- libs/@local/eslint/package.json | 2 +- .../graph/client/typescript/package.json | 2 +- libs/@local/graph/sdk/typescript/package.json | 2 +- libs/@local/graph/type-defs/package.json | 2 +- .../graph/types/typescript/package.json | 2 +- .../harpc/client/typescript/eslint.config.js | 11 +- .../harpc/client/typescript/package.json | 2 +- .../typescript/src/codec/JsonEncoder.ts | 1 + .../client/typescript/src/net/Connection.ts | 2 + .../client/typescript/src/net/Response.ts | 2 +- .../typescript/src/wire-protocol/Buffer.ts | 4 +- .../src/wire-protocol/models/Payload.ts | 14 +- .../tests/codec/JsonDecoder.test.ts | 23 ++-- .../typescript/tests/net/Request.test.ts | 19 ++- .../typescript/tests/wire-protocol/utils.ts | 10 ++ libs/@local/hash-backend-utils/package.json | 2 +- .../@local/hash-isomorphic-utils/package.json | 2 +- .../src/create-apollo-client.ts | 2 +- .../hash-isomorphic-utils/tsconfig.build.json | 2 +- .../hash-isomorphic-utils/tsconfig.json | 1 - libs/@local/hash-subgraph/package.json | 2 +- .../typescript/package.json | 2 +- libs/@local/repo-chores/node/package.json | 4 +- libs/@local/status/typescript/package.json | 4 +- tests/hash-backend-integration/package.json | 2 +- tests/hash-backend-load/package.json | 2 +- tests/hash-playwright/package.json | 2 +- tests/hash-playwright/tests/shared/runtime.ts | 3 +- yarn.lock | 128 ++++++++---------- 68 files changed, 190 insertions(+), 164 deletions(-) diff --git a/apps/hash-ai-worker-ts/package.json b/apps/hash-ai-worker-ts/package.json index b9e31c727c8..dc67dd00d63 100644 --- a/apps/hash-ai-worker-ts/package.json +++ b/apps/hash-ai-worker-ts/package.json @@ -91,7 +91,7 @@ "sanitize-html": "2.13.1", "tsconfig-paths-webpack-plugin": "4.2.0", "tsx": "4.19.2", - "typescript": "5.6.3" + "typescript": "5.7.2" }, "devDependencies": { "@local/eslint": "0.0.0-private", @@ -112,7 +112,7 @@ "@vitest/coverage-istanbul": "2.1.8", "eslint": "9.17.0", "rimraf": "6.0.1", - "typescript": "5.6.3", + "typescript": "5.7.2", "vite-tsconfig-paths": "5.1.4", "vitest": "2.1.8", "wait-on": "8.0.1" diff --git a/apps/hash-ai-worker-ts/src/activities/flow-activities/shared/infer-summaries-then-claims-from-text/get-entity-summaries-from-text.optimize.ai.test.ts b/apps/hash-ai-worker-ts/src/activities/flow-activities/shared/infer-summaries-then-claims-from-text/get-entity-summaries-from-text.optimize.ai.test.ts index 8d30cca44e6..0f10e63d5be 100644 --- a/apps/hash-ai-worker-ts/src/activities/flow-activities/shared/infer-summaries-then-claims-from-text/get-entity-summaries-from-text.optimize.ai.test.ts +++ b/apps/hash-ai-worker-ts/src/activities/flow-activities/shared/infer-summaries-then-claims-from-text/get-entity-summaries-from-text.optimize.ai.test.ts @@ -1,3 +1,12 @@ +/** + * @file + * This file is set to 'esnext' because we want to use the Set methods available only in Node 22. + * The only TSConfig 'lib' option that supports this is 'esnext', which is unsafe to set for the whole package + * as it may include new APIs which are not yet supported by Node 22. + * So we set it here for this file only. + */ +/// + import "../../../../shared/testing-utilities/mock-get-flow-context.js"; import path from "node:path"; diff --git a/apps/hash-ai-worker-ts/tsconfig.json b/apps/hash-ai-worker-ts/tsconfig.json index 0cbdad48d1b..79c9fb2aa8d 100644 --- a/apps/hash-ai-worker-ts/tsconfig.json +++ b/apps/hash-ai-worker-ts/tsconfig.json @@ -2,7 +2,6 @@ "extends": "@local/tsconfig/legacy-base-tsconfig-to-refactor.json", "include": ["src", "scripts", "eslint.config.js", "vitest.config.ts"], "compilerOptions": { - "lib": ["ESNext"], "module": "NodeNext", "moduleResolution": "NodeNext" } diff --git a/apps/hash-api/package.json b/apps/hash-api/package.json index acf4506a811..666d834ac98 100644 --- a/apps/hash-api/package.json +++ b/apps/hash-api/package.json @@ -102,7 +102,7 @@ "openai": "4.76.2", "ts-json-schema-generator": "1.5.1", "tsx": "4.19.2", - "typescript": "5.6.3", + "typescript": "5.7.2", "ws": "8.18.0" }, "devDependencies": { @@ -127,7 +127,7 @@ "eslint": "9.17.0", "prettier": "3.4.2", "rimraf": "6.0.1", - "typescript": "5.6.3", + "typescript": "5.7.2", "vitest": "2.1.8", "wait-on": "8.0.1" } diff --git a/apps/hash-frontend/package.json b/apps/hash-frontend/package.json index 6674c659ecd..df5bc11b4b9 100644 --- a/apps/hash-frontend/package.json +++ b/apps/hash-frontend/package.json @@ -154,7 +154,7 @@ "graphology-types": "0.24.8", "rimraf": "6.0.1", "sass": "1.83.0", - "typescript": "5.6.3", + "typescript": "5.7.2", "wait-on": "8.0.1", "webpack": "5.97.1" }, diff --git a/apps/hash-integration-worker/package.json b/apps/hash-integration-worker/package.json index 20c188b67e2..dda82fc65d6 100644 --- a/apps/hash-integration-worker/package.json +++ b/apps/hash-integration-worker/package.json @@ -37,7 +37,7 @@ "axios": "1.7.9", "dotenv-flow": "3.3.0", "tsx": "4.19.2", - "typescript": "5.6.3" + "typescript": "5.7.2" }, "devDependencies": { "@local/eslint": "0.0.0-private", @@ -46,7 +46,7 @@ "@types/dotenv-flow": "3.3.3", "eslint": "9.17.0", "rimraf": "6.0.1", - "typescript": "5.6.3", + "typescript": "5.7.2", "wait-on": "8.0.1" } } diff --git a/apps/hash-realtime/package.json b/apps/hash-realtime/package.json index 7f01728126e..95a36bb05d0 100644 --- a/apps/hash-realtime/package.json +++ b/apps/hash-realtime/package.json @@ -19,7 +19,7 @@ "set-interval-async": "2.0.3", "slonik": "24.2.0", "tsx": "4.19.2", - "typescript": "5.6.3" + "typescript": "5.7.2" }, "devDependencies": { "@local/eslint": "0.0.0-private", @@ -27,6 +27,6 @@ "@types/node": "22.10.2", "@types/set-interval-async": "1.0.3", "eslint": "9.17.0", - "typescript": "5.6.3" + "typescript": "5.7.2" } } diff --git a/apps/hash-search-loader/package.json b/apps/hash-search-loader/package.json index 25413c106a5..67504124ddb 100644 --- a/apps/hash-search-loader/package.json +++ b/apps/hash-search-loader/package.json @@ -19,13 +19,13 @@ "@local/hash-isomorphic-utils": "0.0.0-private", "hot-shots": "8.5.2", "tsx": "4.19.2", - "typescript": "5.6.3" + "typescript": "5.7.2" }, "devDependencies": { "@local/eslint": "0.0.0-private", "@local/tsconfig": "0.0.0-private", "@types/node": "22.10.2", "eslint": "9.17.0", - "typescript": "5.6.3" + "typescript": "5.7.2" } } diff --git a/apps/hashdotdev/package.json b/apps/hashdotdev/package.json index 09883bc3191..af387213142 100644 --- a/apps/hashdotdev/package.json +++ b/apps/hashdotdev/package.json @@ -59,7 +59,7 @@ "remark-parse": "10.0.2", "sharp": "0.33.5", "slugify": "1.6.6", - "typescript": "5.6.3", + "typescript": "5.7.2", "unified": "10.1.2", "unist-util-visit": "4.1.2" }, @@ -83,7 +83,7 @@ "eslint": "9.17.0", "execa": "7.2.0", "tsx": "4.19.2", - "typescript": "5.6.3" + "typescript": "5.7.2" }, "engines": { "node": ">= v20" diff --git a/apps/plugin-browser/package.json b/apps/plugin-browser/package.json index 55954f20823..006f3ce2819 100755 --- a/apps/plugin-browser/package.json +++ b/apps/plugin-browser/package.json @@ -90,7 +90,7 @@ "ts-loader": "9.5.1", "tsconfig-paths-webpack-plugin": "4.2.0", "type-fest": "3.13.1", - "typescript": "5.6.3", + "typescript": "5.7.2", "webpack": "5.97.1", "webpack-cli": "4.10.0", "webpack-dev-server": "4.15.2", diff --git a/blocks/address/package.json b/blocks/address/package.json index 5bb9fb42d2e..5c4ad5ededb 100644 --- a/blocks/address/package.json +++ b/blocks/address/package.json @@ -54,7 +54,7 @@ "prettier": "3.4.2", "react": "18.2.0", "react-dom": "18.2.0", - "typescript": "5.6.3" + "typescript": "5.7.2" }, "peerDependencies": { "react": "^18.0.0", diff --git a/blocks/ai-chat/package.json b/blocks/ai-chat/package.json index 220201440c8..dddd1633050 100644 --- a/blocks/ai-chat/package.json +++ b/blocks/ai-chat/package.json @@ -49,7 +49,7 @@ "prettier": "3.4.2", "react": "18.2.0", "react-dom": "18.2.0", - "typescript": "5.6.3" + "typescript": "5.7.2" }, "peerDependencies": { "react": "^18.0.0", diff --git a/blocks/ai-image/package.json b/blocks/ai-image/package.json index 5d590540c79..742db509be6 100644 --- a/blocks/ai-image/package.json +++ b/blocks/ai-image/package.json @@ -50,7 +50,7 @@ "prettier": "3.4.2", "react": "18.2.0", "react-dom": "18.2.0", - "typescript": "5.6.3" + "typescript": "5.7.2" }, "peerDependencies": { "react": "^18.0.0", diff --git a/blocks/ai-text/package.json b/blocks/ai-text/package.json index 7d1ce25d637..44b0627ea2d 100644 --- a/blocks/ai-text/package.json +++ b/blocks/ai-text/package.json @@ -43,7 +43,7 @@ "prettier": "3.4.2", "react": "18.2.0", "react-dom": "18.2.0", - "typescript": "5.6.3" + "typescript": "5.7.2" }, "peerDependencies": { "react": "^18.0.0", diff --git a/blocks/callout/package.json b/blocks/callout/package.json index 41545befad6..daf942da9b7 100644 --- a/blocks/callout/package.json +++ b/blocks/callout/package.json @@ -40,7 +40,7 @@ "prettier": "3.4.2", "react": "18.2.0", "react-dom": "18.2.0", - "typescript": "5.6.3" + "typescript": "5.7.2" }, "peerDependencies": { "react": "^18.2.0", diff --git a/blocks/chart/package.json b/blocks/chart/package.json index dea3cb8623f..220ce240311 100644 --- a/blocks/chart/package.json +++ b/blocks/chart/package.json @@ -50,7 +50,7 @@ "prettier": "3.4.2", "react": "18.2.0", "react-dom": "18.2.0", - "typescript": "5.6.3" + "typescript": "5.7.2" }, "peerDependencies": { "react": "^18.2.0", diff --git a/blocks/code/package.json b/blocks/code/package.json index 44c09fb0dca..db272f2144f 100644 --- a/blocks/code/package.json +++ b/blocks/code/package.json @@ -41,7 +41,7 @@ "prettier": "3.4.2", "react": "18.2.0", "react-dom": "18.2.0", - "typescript": "5.6.3" + "typescript": "5.7.2" }, "peerDependencies": { "react": "^18.2.0", diff --git a/blocks/countdown/package.json b/blocks/countdown/package.json index d7e4495621d..e22f09616bf 100644 --- a/blocks/countdown/package.json +++ b/blocks/countdown/package.json @@ -42,7 +42,7 @@ "prettier": "3.4.2", "react": "18.2.0", "react-dom": "18.2.0", - "typescript": "5.6.3" + "typescript": "5.7.2" }, "peerDependencies": { "react": "^18.2.0", diff --git a/blocks/divider/package.json b/blocks/divider/package.json index 43ef32157e0..dad6f60df49 100644 --- a/blocks/divider/package.json +++ b/blocks/divider/package.json @@ -40,7 +40,7 @@ "prettier": "3.4.2", "react": "18.2.0", "react-dom": "18.2.0", - "typescript": "5.6.3" + "typescript": "5.7.2" }, "peerDependencies": { "react": "^18.2.0", diff --git a/blocks/embed/package.json b/blocks/embed/package.json index 302030d2b64..00a19fd7ef9 100644 --- a/blocks/embed/package.json +++ b/blocks/embed/package.json @@ -39,7 +39,7 @@ "mock-block-dock": "0.0.10", "react": "18.2.0", "react-dom": "18.2.0", - "typescript": "5.6.3" + "typescript": "5.7.2" }, "peerDependencies": { "lodash": "4.17.21", diff --git a/blocks/faq/package.json b/blocks/faq/package.json index da2b1af1d25..fb73ff50073 100644 --- a/blocks/faq/package.json +++ b/blocks/faq/package.json @@ -47,7 +47,7 @@ "prettier": "3.4.2", "react": "18.2.0", "react-dom": "18.2.0", - "typescript": "5.6.3" + "typescript": "5.7.2" }, "peerDependencies": { "react": "^18.0.0", diff --git a/blocks/heading/package.json b/blocks/heading/package.json index a92acb0f699..dedff50783e 100644 --- a/blocks/heading/package.json +++ b/blocks/heading/package.json @@ -40,7 +40,7 @@ "prettier": "3.4.2", "react": "18.2.0", "react-dom": "18.2.0", - "typescript": "5.6.3" + "typescript": "5.7.2" }, "peerDependencies": { "react": "^18.2.0", diff --git a/blocks/how-to/package.json b/blocks/how-to/package.json index 951a3a565be..02da7531928 100644 --- a/blocks/how-to/package.json +++ b/blocks/how-to/package.json @@ -48,7 +48,7 @@ "prettier": "3.4.2", "react": "18.2.0", "react-dom": "18.2.0", - "typescript": "5.6.3" + "typescript": "5.7.2" }, "peerDependencies": { "react": "^18.0.0", diff --git a/blocks/image/package.json b/blocks/image/package.json index 5b872b1eb3b..1e6d0485c95 100644 --- a/blocks/image/package.json +++ b/blocks/image/package.json @@ -41,7 +41,7 @@ "prettier": "3.4.2", "react": "18.2.0", "react-dom": "18.2.0", - "typescript": "5.6.3" + "typescript": "5.7.2" }, "peerDependencies": { "react": "^18.2.0", diff --git a/blocks/kanban-board/package.json b/blocks/kanban-board/package.json index b16c8357c95..3188bd6fb71 100644 --- a/blocks/kanban-board/package.json +++ b/blocks/kanban-board/package.json @@ -57,7 +57,7 @@ "prettier": "3.4.2", "react": "18.2.0", "react-dom": "18.2.0", - "typescript": "5.6.3" + "typescript": "5.7.2" }, "peerDependencies": { "react": "^18.0.0", diff --git a/blocks/minesweeper/package.json b/blocks/minesweeper/package.json index eeac046fc33..0d1f89a8301 100644 --- a/blocks/minesweeper/package.json +++ b/blocks/minesweeper/package.json @@ -35,7 +35,7 @@ "prettier": "3.4.2", "react": "18.2.0", "react-dom": "18.2.0", - "typescript": "5.6.3" + "typescript": "5.7.2" }, "block-scripts": { "port": 63212 diff --git a/blocks/paragraph/package.json b/blocks/paragraph/package.json index 5ec9d9a6a2b..fd8db666951 100644 --- a/blocks/paragraph/package.json +++ b/blocks/paragraph/package.json @@ -40,7 +40,7 @@ "prettier": "3.4.2", "react": "18.2.0", "react-dom": "18.2.0", - "typescript": "5.6.3" + "typescript": "5.7.2" }, "peerDependencies": { "react": "^18.2.0", diff --git a/blocks/person/package.json b/blocks/person/package.json index eda737f3a02..6d98dd453ff 100644 --- a/blocks/person/package.json +++ b/blocks/person/package.json @@ -38,7 +38,7 @@ "mock-block-dock": "0.0.38", "react": "18.2.0", "react-dom": "18.2.0", - "typescript": "5.6.3" + "typescript": "5.7.2" }, "peerDependencies": { "react": "^18.2.0", diff --git a/blocks/shuffle/package.json b/blocks/shuffle/package.json index 7a9d5b35f97..19a85d46023 100644 --- a/blocks/shuffle/package.json +++ b/blocks/shuffle/package.json @@ -49,7 +49,7 @@ "prettier": "3.4.2", "react": "18.2.0", "react-dom": "18.2.0", - "typescript": "5.6.3" + "typescript": "5.7.2" }, "peerDependencies": { "react": "^18.2.0", diff --git a/blocks/table/package.json b/blocks/table/package.json index 374d411467b..52448471c8d 100644 --- a/blocks/table/package.json +++ b/blocks/table/package.json @@ -60,7 +60,7 @@ "prettier": "3.4.2", "react": "18.2.0", "react-dom": "18.2.0", - "typescript": "5.6.3" + "typescript": "5.7.2" }, "peerDependencies": { "react": "^18.0.0", diff --git a/blocks/timer/package.json b/blocks/timer/package.json index 257e2450233..8b5c9fbe4ce 100644 --- a/blocks/timer/package.json +++ b/blocks/timer/package.json @@ -41,7 +41,7 @@ "prettier": "3.4.2", "react": "18.2.0", "react-dom": "18.2.0", - "typescript": "5.6.3" + "typescript": "5.7.2" }, "peerDependencies": { "react": "^18.2.0", diff --git a/blocks/video/package.json b/blocks/video/package.json index a86aecaf5c8..31294817625 100644 --- a/blocks/video/package.json +++ b/blocks/video/package.json @@ -40,7 +40,7 @@ "prettier": "3.4.2", "react": "18.2.0", "react-dom": "18.2.0", - "typescript": "5.6.3" + "typescript": "5.7.2" }, "peerDependencies": { "react": "^18.2.0", diff --git a/libs/@blockprotocol/graph/package.json b/libs/@blockprotocol/graph/package.json index 528ae21dd32..8c16756ca51 100644 --- a/libs/@blockprotocol/graph/package.json +++ b/libs/@blockprotocol/graph/package.json @@ -72,7 +72,7 @@ "json-schema-to-typescript": "11.0.5", "lit": "2.8.0", "lodash.isequal": "4.5.0", - "typescript": "5.6.3" + "typescript": "5.7.2" }, "devDependencies": { "@local/eslint": "0.0.0-private", @@ -82,7 +82,7 @@ "@types/react": "18.2.68", "eslint": "9.17.0", "rimraf": "6.0.1", - "typescript": "5.6.3" + "typescript": "5.7.2" }, "peerDependencies": { "react": "^18.0.0" diff --git a/libs/@blockprotocol/type-system/typescript/package.json b/libs/@blockprotocol/type-system/typescript/package.json index 1422fbf6813..472924b2b83 100644 --- a/libs/@blockprotocol/type-system/typescript/package.json +++ b/libs/@blockprotocol/type-system/typescript/package.json @@ -67,7 +67,7 @@ "rimraf": "6.0.1", "rollup": "4.28.1", "tslib": "2.8.1", - "typescript": "5.6.3", + "typescript": "5.7.2", "vite-plugin-wasm-pack": "0.1.12", "vitest": "2.1.8" } diff --git a/libs/@hashintel/block-design-system/package.json b/libs/@hashintel/block-design-system/package.json index 19d3b805e9a..8e74910c2b1 100644 --- a/libs/@hashintel/block-design-system/package.json +++ b/libs/@hashintel/block-design-system/package.json @@ -50,7 +50,7 @@ "eslint-plugin-storybook": "0.11.1", "react": "18.2.0", "react-dom": "18.2.0", - "typescript": "5.6.3" + "typescript": "5.7.2" }, "peerDependencies": { "@emotion/react": "11.14.0", diff --git a/libs/@hashintel/design-system/package.json b/libs/@hashintel/design-system/package.json index b7710fb4533..4c2ecc41bbc 100644 --- a/libs/@hashintel/design-system/package.json +++ b/libs/@hashintel/design-system/package.json @@ -65,7 +65,7 @@ "eslint-plugin-storybook": "0.11.1", "react": "18.2.0", "react-dom": "18.2.0", - "typescript": "5.6.3" + "typescript": "5.7.2" }, "peerDependencies": { "@emotion/cache": "11.14.0", diff --git a/libs/@hashintel/query-editor/package.json b/libs/@hashintel/query-editor/package.json index e0133492ecf..3ec19ab1057 100644 --- a/libs/@hashintel/query-editor/package.json +++ b/libs/@hashintel/query-editor/package.json @@ -36,7 +36,7 @@ "react": "18.2.0", "react-dom": "18.2.0", "react-hook-form": "7.54.1", - "typescript": "5.6.3" + "typescript": "5.7.2" }, "peerDependencies": { "@mui/material": "^5.14.0", diff --git a/libs/@hashintel/type-editor/package.json b/libs/@hashintel/type-editor/package.json index 049f316f874..c26dcba26ef 100644 --- a/libs/@hashintel/type-editor/package.json +++ b/libs/@hashintel/type-editor/package.json @@ -45,7 +45,7 @@ "react": "18.2.0", "react-dom": "18.2.0", "react-hook-form": "7.54.1", - "typescript": "5.6.3" + "typescript": "5.7.2" }, "peerDependencies": { "@mui/material": "^5.14.0", diff --git a/libs/@local/advanced-types/package.json b/libs/@local/advanced-types/package.json index bedcbde9fbd..e9bbc4387f9 100644 --- a/libs/@local/advanced-types/package.json +++ b/libs/@local/advanced-types/package.json @@ -27,6 +27,6 @@ "eslint": "9.17.0", "react": "18.2.0", "rimraf": "6.0.1", - "typescript": "5.6.3" + "typescript": "5.7.2" } } diff --git a/libs/@local/eslint/package.json b/libs/@local/eslint/package.json index d316c820c3d..229b286cfee 100644 --- a/libs/@local/eslint/package.json +++ b/libs/@local/eslint/package.json @@ -45,6 +45,6 @@ "@types/eslint__eslintrc": "2.1.2", "@types/node": "22.10.2", "rimraf": "6.0.1", - "typescript": "5.6.3" + "typescript": "5.7.2" } } diff --git a/libs/@local/graph/client/typescript/package.json b/libs/@local/graph/client/typescript/package.json index 86c2a0f86ef..a360b657cea 100644 --- a/libs/@local/graph/client/typescript/package.json +++ b/libs/@local/graph/client/typescript/package.json @@ -22,6 +22,6 @@ "@types/node": "22.10.2", "fix-esm-import-path": "1.10.1", "rimraf": "6.0.1", - "typescript": "5.6.3" + "typescript": "5.7.2" } } diff --git a/libs/@local/graph/sdk/typescript/package.json b/libs/@local/graph/sdk/typescript/package.json index f56a5e92400..79c80155c48 100644 --- a/libs/@local/graph/sdk/typescript/package.json +++ b/libs/@local/graph/sdk/typescript/package.json @@ -36,7 +36,7 @@ "@vitest/coverage-istanbul": "2.1.8", "eslint": "9.17.0", "rimraf": "6.0.1", - "typescript": "5.6.3", + "typescript": "5.7.2", "vitest": "2.1.8" } } diff --git a/libs/@local/graph/type-defs/package.json b/libs/@local/graph/type-defs/package.json index 0ec5dc90794..2547b04fe4f 100644 --- a/libs/@local/graph/type-defs/package.json +++ b/libs/@local/graph/type-defs/package.json @@ -18,6 +18,6 @@ "eslint": "9.17.0", "quicktype": "16.0.43", "tsx": "4.19.2", - "typescript": "5.6.3" + "typescript": "5.7.2" } } diff --git a/libs/@local/graph/types/typescript/package.json b/libs/@local/graph/types/typescript/package.json index 567f4e9849e..451dfdb82d4 100644 --- a/libs/@local/graph/types/typescript/package.json +++ b/libs/@local/graph/types/typescript/package.json @@ -32,6 +32,6 @@ "@local/tsconfig": "0.0.0-private", "eslint": "9.17.0", "rimraf": "6.0.1", - "typescript": "5.6.3" + "typescript": "5.7.2" } } diff --git a/libs/@local/harpc/client/typescript/eslint.config.js b/libs/@local/harpc/client/typescript/eslint.config.js index 27d065afde7..e8bf22d7d47 100644 --- a/libs/@local/harpc/client/typescript/eslint.config.js +++ b/libs/@local/harpc/client/typescript/eslint.config.js @@ -1,6 +1,13 @@ import { create } from "@local/eslint"; -export default [ +/** + * @todo why is this required in this package but not others with the same config? if not explicitly typed, we get: + * TS2742: The inferred type of 'default' cannot be named without a reference to '../../../../../node_modules/@local/eslint/dist/utils.js'. + * This is likely not portable. A type annotation is necessary. + * + * @type {import('eslint').Linter.Config[]} + */ +const config = [ ...create(import.meta.dirname, { enabled: { frontend: false, @@ -15,3 +22,5 @@ export default [ }, }, ]; + +export default config; diff --git a/libs/@local/harpc/client/typescript/package.json b/libs/@local/harpc/client/typescript/package.json index a705d8fac7a..4c4084fe82f 100644 --- a/libs/@local/harpc/client/typescript/package.json +++ b/libs/@local/harpc/client/typescript/package.json @@ -49,7 +49,7 @@ "@vitest/coverage-istanbul": "2.1.8", "eslint": "9.17.0", "rimraf": "6.0.1", - "typescript": "5.6.3", + "typescript": "5.7.2", "vitest": "2.1.8" } } diff --git a/libs/@local/harpc/client/typescript/src/codec/JsonEncoder.ts b/libs/@local/harpc/client/typescript/src/codec/JsonEncoder.ts index 66b5bf717d7..c3298e48020 100644 --- a/libs/@local/harpc/client/typescript/src/codec/JsonEncoder.ts +++ b/libs/@local/harpc/client/typescript/src/codec/JsonEncoder.ts @@ -27,6 +27,7 @@ const encoder = (options: Options) => const array = textEncoder.encode(text); + // assertion is necessary because `TextEncoder` doesn't support `Uint8Array` yet. return array.buffer as ArrayBuffer; }), ), diff --git a/libs/@local/harpc/client/typescript/src/net/Connection.ts b/libs/@local/harpc/client/typescript/src/net/Connection.ts index bf3157f184e..05ef4121013 100644 --- a/libs/@local/harpc/client/typescript/src/net/Connection.ts +++ b/libs/@local/harpc/client/typescript/src/net/Connection.ts @@ -226,6 +226,8 @@ export const makeUnchecked = ( (cause) => new Transport.TransportError({ cause }), ), Stream.mapConcat((list) => list), + // cast needed as uint8arraylist doesn't support Uint8Array yet + Stream.map((array) => array.buffer as ArrayBuffer), ResponseFromBytesStream.make, ); diff --git a/libs/@local/harpc/client/typescript/src/net/Response.ts b/libs/@local/harpc/client/typescript/src/net/Response.ts index 92b7bd1ea92..6e410ef772c 100644 --- a/libs/@local/harpc/client/typescript/src/net/Response.ts +++ b/libs/@local/harpc/client/typescript/src/net/Response.ts @@ -90,7 +90,7 @@ const flattenResponseStream = ( const payload = ResponseBody.mapBoth( response.body, - (beginOrFrame) => beginOrFrame.payload.buffer.buffer as ArrayBuffer, + (beginOrFrame) => beginOrFrame.payload.buffer.buffer, ); output.push(ResponseSegment.Body({ data: payload })); diff --git a/libs/@local/harpc/client/typescript/src/wire-protocol/Buffer.ts b/libs/@local/harpc/client/typescript/src/wire-protocol/Buffer.ts index 5ff16c3997a..8819209b842 100644 --- a/libs/@local/harpc/client/typescript/src/wire-protocol/Buffer.ts +++ b/libs/@local/harpc/client/typescript/src/wire-protocol/Buffer.ts @@ -35,7 +35,7 @@ export type WriteBuffer = Buffer; export type ReadBuffer = Buffer; interface BufferImpl extends Buffer { - value: DataView; + value: DataView; index: SubscriptionRef.SubscriptionRef; } @@ -214,7 +214,7 @@ export const putSlice: { export const getSlice = ( buffer: Buffer, byteLength: number, -): ReadResult => +): ReadResult> => SubscriptionRef.modifyEffect( (buffer as unknown as BufferImpl).index, (index) => diff --git a/libs/@local/harpc/client/typescript/src/wire-protocol/models/Payload.ts b/libs/@local/harpc/client/typescript/src/wire-protocol/models/Payload.ts index ade86c547ec..eb8737a6920 100644 --- a/libs/@local/harpc/client/typescript/src/wire-protocol/models/Payload.ts +++ b/libs/@local/harpc/client/typescript/src/wire-protocol/models/Payload.ts @@ -36,7 +36,7 @@ export interface Payload Pipeable.Pipeable { readonly [TypeId]: TypeId; - readonly buffer: Uint8Array; + readonly buffer: Uint8Array; } const PayloadProto: Omit = { @@ -85,7 +85,7 @@ const PayloadProto: Omit = { }, }; -const makeUnchecked = (buffer: Uint8Array): Payload => +const makeUnchecked = (buffer: Uint8Array): Payload => createProto(PayloadProto, { buffer }); /** @@ -98,7 +98,7 @@ const makeUnchecked = (buffer: Uint8Array): Payload => * * Dies if the buffer exceeds MAX_SIZE (U16_MAX - 32 bytes). */ -export const makeAssert = (buffer: Uint8Array) => { +export const makeAssert = (buffer: Uint8Array) => { if (buffer.length > MAX_SIZE) { return Effect.die(new PayloadTooLargeError({ received: buffer.length })); } @@ -117,7 +117,7 @@ export const makeAssert = (buffer: Uint8Array) => { * Returns a PayloadTooLargeError if the buffer exceeds MAX_SIZE (U16_MAX - 32 bytes). */ export const make = ( - buffer: Uint8Array, + buffer: Uint8Array, ): Effect.Effect => { if (buffer.length > MAX_SIZE) { return Effect.fail(new PayloadTooLargeError({ received: buffer.length })); @@ -152,4 +152,8 @@ export const isPayload = (value: unknown): value is Payload => Predicate.hasProperty(value, TypeId); export const arbitrary = (fc: typeof FastCheck) => - fc.uint8Array({ minLength: U16_MIN, maxLength: MAX_SIZE }).map(makeUnchecked); + fc + .uint8Array({ minLength: U16_MIN, maxLength: MAX_SIZE }) + // cast needed as fast-check doesn't support Uint8Array yet + .map((array) => array as Uint8Array) + .map(makeUnchecked); diff --git a/libs/@local/harpc/client/typescript/tests/codec/JsonDecoder.test.ts b/libs/@local/harpc/client/typescript/tests/codec/JsonDecoder.test.ts index 63633f8b099..e37f3d7b3ae 100644 --- a/libs/@local/harpc/client/typescript/tests/codec/JsonDecoder.test.ts +++ b/libs/@local/harpc/client/typescript/tests/codec/JsonDecoder.test.ts @@ -4,11 +4,16 @@ import { describe, it } from "@effect/vitest"; import { Chunk, Effect, pipe, Schema, Stream } from "effect"; import type { ParseError } from "effect/ParseResult"; import type { ReadonlyRecord } from "effect/Record"; +import type * as vitest from "vitest"; import type { DecodingError } from "../../src/codec/Decoder.js"; import { Decoder, JsonDecoder } from "../../src/codec/index.js"; +import { expectArrayBuffer } from "../wire-protocol/utils.js"; -const decode = (text: readonly string[]) => +const decode = ( + cx: vitest.TaskContext & vitest.TestContext, + text: readonly string[], +) => Effect.gen(function* () { const decoder = yield* Decoder.Decoder; const textEncoder = new TextEncoder(); @@ -16,7 +21,9 @@ const decode = (text: readonly string[]) => const schema = Schema.Record({ key: Schema.String, value: Schema.String }); const effect = Stream.fromChunk(Chunk.fromIterable(text)).pipe( - Stream.map((input) => textEncoder.encode(input).buffer), + Stream.map((input) => + expectArrayBuffer(cx, textEncoder.encode(input).buffer), + ), decoder.decode(schema), Stream.runCollect, Effect.map(Chunk.toReadonlyArray), @@ -31,7 +38,7 @@ describe.concurrent("JsonDecoder", () => { Effect.gen(function* () { const textPayload = '{"key": "value"}\x1E'; - const items = yield* decode([textPayload]); + const items = yield* decode(cx, [textPayload]); cx.expect(items).toMatchObject([{ key: "value" }]); }).pipe(Effect.provide(JsonDecoder.layer)), @@ -41,7 +48,7 @@ describe.concurrent("JsonDecoder", () => { Effect.gen(function* () { const textPayload = '{"key": "value1"}\x1E{"key": "value2"}\x1E'; - const items = yield* decode([textPayload]); + const items = yield* decode(cx, [textPayload]); cx.expect(items).toMatchObject([{ key: "value1" }, { key: "value2" }]); }).pipe(Effect.provide(JsonDecoder.layer)), @@ -51,7 +58,7 @@ describe.concurrent("JsonDecoder", () => { Effect.gen(function* () { const textPayload = '{"key": "value1"}\x1E{"key": "value2'; - const items = yield* decode([textPayload]); + const items = yield* decode(cx, [textPayload]); cx.expect(items).toMatchObject([{ key: "value1" }]); }).pipe(Effect.provide(JsonDecoder.layer)), @@ -61,7 +68,7 @@ describe.concurrent("JsonDecoder", () => { Effect.gen(function* () { const textPayload = ['{"key": "val', 'ue1"}\x1E']; - const items = yield* decode(textPayload); + const items = yield* decode(cx, textPayload); cx.expect(items).toMatchObject([{ key: "value1" }]); }).pipe(Effect.provide(JsonDecoder.layer)), @@ -73,7 +80,7 @@ describe.concurrent("JsonDecoder", () => { Effect.gen(function* () { const textPayload = ['{"key": "val', 'ue1"}\x1E{"key": "value2"}\x1E']; - const items = yield* decode(textPayload); + const items = yield* decode(cx, textPayload); cx.expect(items).toMatchObject([{ key: "value1" }, { key: "value2" }]); }).pipe(Effect.provide(JsonDecoder.layer)), @@ -85,7 +92,7 @@ describe.concurrent("JsonDecoder", () => { // explicit type annotation needed for eslint const error: DecodingError | ParseError = yield* pipe( - decode([textPayload]), + decode(cx, [textPayload]), Effect.flip, ); diff --git a/libs/@local/harpc/client/typescript/tests/net/Request.test.ts b/libs/@local/harpc/client/typescript/tests/net/Request.test.ts index 42657bd905c..4fa2921162e 100644 --- a/libs/@local/harpc/client/typescript/tests/net/Request.test.ts +++ b/libs/@local/harpc/client/typescript/tests/net/Request.test.ts @@ -17,6 +17,7 @@ import { RequestBody, RequestFlags, } from "../../src/wire-protocol/models/request/index.js"; +import { expectArrayBuffer } from "../wire-protocol/utils.js"; const makeRequest = (stream: Stream.Stream) => Effect.gen(function* () { @@ -79,7 +80,9 @@ describe.concurrent("Request", () => { const encoder = new TextEncoder(); const request = yield* makeRequest( - Stream.fromIterable([encoder.encode("hello").buffer]), + Stream.fromIterable([ + expectArrayBuffer(cx, encoder.encode("hello").buffer), + ]), ); const items = yield* pipe( @@ -118,7 +121,7 @@ describe.concurrent("Request", () => { const request = yield* makeRequest( Stream.fromIterable([ array.buffer, - new TextEncoder().encode("hello").buffer, + expectArrayBuffer(cx, new TextEncoder().encode("hello").buffer), ]), ); @@ -159,8 +162,8 @@ describe.concurrent("Request", () => { const request = yield* makeRequest( Stream.fromIterable([ - encoder.encode("hello").buffer, - encoder.encode("world").buffer, + expectArrayBuffer(cx, encoder.encode("hello").buffer), + expectArrayBuffer(cx, encoder.encode("world").buffer), ]), ); @@ -197,7 +200,9 @@ describe.concurrent("Request - noDelay", () => { const encoder = new TextEncoder(); const request = yield* makeRequest( - Stream.fromIterable([encoder.encode("hello").buffer]), + Stream.fromIterable([ + expectArrayBuffer(cx, encoder.encode("hello").buffer), + ]), ); const items = yield* pipe( @@ -254,8 +259,8 @@ describe.concurrent("Request - noDelay", () => { const request = yield* makeRequest( Stream.fromIterable([ - encoder.encode("hello").buffer, - encoder.encode("world").buffer, + expectArrayBuffer(cx, encoder.encode("hello").buffer), + expectArrayBuffer(cx, encoder.encode("world").buffer), ]), ); diff --git a/libs/@local/harpc/client/typescript/tests/wire-protocol/utils.ts b/libs/@local/harpc/client/typescript/tests/wire-protocol/utils.ts index f7c6ed621ae..be31c52c523 100644 --- a/libs/@local/harpc/client/typescript/tests/wire-protocol/utils.ts +++ b/libs/@local/harpc/client/typescript/tests/wire-protocol/utils.ts @@ -1,5 +1,6 @@ import { Command, Path } from "@effect/platform"; import { Effect } from "effect"; +import type * as vitest from "vitest"; const packageDirectory = () => Effect.gen(function* () { @@ -60,3 +61,12 @@ export const callDecode = ( return Uint8Array.from(buffer); }); + +export const expectArrayBuffer = ( + cx: vitest.TaskContext & vitest.TestContext, + value: ArrayBufferLike, +): ArrayBuffer => { + cx.expect(value).toBeInstanceOf(ArrayBuffer); + + return value as ArrayBuffer; +}; diff --git a/libs/@local/hash-backend-utils/package.json b/libs/@local/hash-backend-utils/package.json index 48f0b108e01..53cb5e3e883 100644 --- a/libs/@local/hash-backend-utils/package.json +++ b/libs/@local/hash-backend-utils/package.json @@ -64,7 +64,7 @@ "@vitest/coverage-istanbul": "2.1.8", "eslint": "9.17.0", "rimraf": "6.0.1", - "typescript": "5.6.3", + "typescript": "5.7.2", "vitest": "2.1.8" } } diff --git a/libs/@local/hash-isomorphic-utils/package.json b/libs/@local/hash-isomorphic-utils/package.json index 143f788cb4f..7d6fb6cc46a 100644 --- a/libs/@local/hash-isomorphic-utils/package.json +++ b/libs/@local/hash-isomorphic-utils/package.json @@ -73,7 +73,7 @@ "prettier": "3.4.2", "react": "18.2.0", "rimraf": "6.0.1", - "typescript": "5.6.3", + "typescript": "5.7.2", "vitest": "2.1.8" } } diff --git a/libs/@local/hash-isomorphic-utils/src/create-apollo-client.ts b/libs/@local/hash-isomorphic-utils/src/create-apollo-client.ts index 589eec51fb9..12ba61a08b9 100644 --- a/libs/@local/hash-isomorphic-utils/src/create-apollo-client.ts +++ b/libs/@local/hash-isomorphic-utils/src/create-apollo-client.ts @@ -9,7 +9,7 @@ import { onError } from "@apollo/client/link/error"; import * as Sentry from "@sentry/browser"; import { apiGraphQLEndpoint } from "./environment.js"; -import possibleTypes from "./graphql/fragment-types.gen.json"; +import possibleTypes from "./graphql/fragment-types.gen.json" assert { type: "json" }; import { hashClientHeaderKey } from "./http-requests.js"; const errorLink = onError(({ graphQLErrors, operation }) => { diff --git a/libs/@local/hash-isomorphic-utils/tsconfig.build.json b/libs/@local/hash-isomorphic-utils/tsconfig.build.json index 6b2c176f364..f57633edc28 100644 --- a/libs/@local/hash-isomorphic-utils/tsconfig.build.json +++ b/libs/@local/hash-isomorphic-utils/tsconfig.build.json @@ -1,6 +1,6 @@ { "extends": "./tsconfig.json", - "include": ["src", "/**/*.gen.json"], + "include": ["src"], "compilerOptions": { "declaration": true, "outDir": "dist", diff --git a/libs/@local/hash-isomorphic-utils/tsconfig.json b/libs/@local/hash-isomorphic-utils/tsconfig.json index 57db930a6b8..377694acc12 100644 --- a/libs/@local/hash-isomorphic-utils/tsconfig.json +++ b/libs/@local/hash-isomorphic-utils/tsconfig.json @@ -3,7 +3,6 @@ "include": [ "src", "codegen.config.ts", - "/**/*.gen.json", "eslint.config.js", "vitest.config.ts" ], diff --git a/libs/@local/hash-subgraph/package.json b/libs/@local/hash-subgraph/package.json index f9f0ba03442..c832ff8022d 100644 --- a/libs/@local/hash-subgraph/package.json +++ b/libs/@local/hash-subgraph/package.json @@ -44,7 +44,7 @@ "@vitest/coverage-istanbul": "2.1.8", "eslint": "9.17.0", "rimraf": "6.0.1", - "typescript": "5.6.3", + "typescript": "5.7.2", "vitest": "2.1.8" } } diff --git a/libs/@local/internal-api-client/typescript/package.json b/libs/@local/internal-api-client/typescript/package.json index a1a3579407e..9a6ac33a96b 100644 --- a/libs/@local/internal-api-client/typescript/package.json +++ b/libs/@local/internal-api-client/typescript/package.json @@ -19,6 +19,6 @@ "@types/node": "22.10.2", "prettier": "3.4.2", "rimraf": "6.0.1", - "typescript": "5.6.3" + "typescript": "5.7.2" } } diff --git a/libs/@local/repo-chores/node/package.json b/libs/@local/repo-chores/node/package.json index 020743a0fbe..c38df69b98f 100644 --- a/libs/@local/repo-chores/node/package.json +++ b/libs/@local/repo-chores/node/package.json @@ -19,7 +19,7 @@ "prettier": "3.4.2", "regex-parser": "2.3.0", "tsx": "4.19.2", - "typescript": "5.6.3" + "typescript": "5.7.2" }, "devDependencies": { "@local/eslint": "0.0.0-private", @@ -27,6 +27,6 @@ "@types/fs-extra": "9.0.13", "@types/prettier": "3.0.0", "eslint": "9.17.0", - "typescript": "5.6.3" + "typescript": "5.7.2" } } diff --git a/libs/@local/status/typescript/package.json b/libs/@local/status/typescript/package.json index 81df4833cf0..b9e373ffc5d 100644 --- a/libs/@local/status/typescript/package.json +++ b/libs/@local/status/typescript/package.json @@ -18,7 +18,7 @@ "dependencies": { "execa": "5.1.1", "lodash-es": "4.17.21", - "typescript": "5.6.3", + "typescript": "5.7.2", "yargs": "17.7.2" }, "devDependencies": { @@ -30,6 +30,6 @@ "eslint": "9.17.0", "quicktype": "16.0.43", "rimraf": "6.0.1", - "typescript": "5.6.3" + "typescript": "5.7.2" } } diff --git a/tests/hash-backend-integration/package.json b/tests/hash-backend-integration/package.json index e7748e5ec10..db7b5c1476b 100644 --- a/tests/hash-backend-integration/package.json +++ b/tests/hash-backend-integration/package.json @@ -43,7 +43,7 @@ "@vitest/coverage-istanbul": "2.1.8", "eslint": "9.17.0", "rimraf": "6.0.1", - "typescript": "5.6.3", + "typescript": "5.7.2", "vitest": "2.1.8" } } diff --git a/tests/hash-backend-load/package.json b/tests/hash-backend-load/package.json index 73f419a0fcf..3d1db435055 100644 --- a/tests/hash-backend-load/package.json +++ b/tests/hash-backend-load/package.json @@ -59,6 +59,6 @@ "eslint": "9.17.0", "rimraf": "6.0.1", "rollup": "4.28.1", - "typescript": "5.6.3" + "typescript": "5.7.2" } } diff --git a/tests/hash-playwright/package.json b/tests/hash-playwright/package.json index 0a70fc4828c..2235c538a2b 100644 --- a/tests/hash-playwright/package.json +++ b/tests/hash-playwright/package.json @@ -31,6 +31,6 @@ "@local/eslint": "0.0.0-private", "eslint": "9.17.0", "rimraf": "6.0.1", - "typescript": "5.6.3" + "typescript": "5.7.2" } } diff --git a/tests/hash-playwright/tests/shared/runtime.ts b/tests/hash-playwright/tests/shared/runtime.ts index e4f6dc67bb8..d6ccd36435a 100644 --- a/tests/hash-playwright/tests/shared/runtime.ts +++ b/tests/hash-playwright/tests/shared/runtime.ts @@ -1,3 +1,4 @@ +import type { Page } from "@playwright/test"; import { expect, test as base } from "@playwright/test"; const tolerableConsoleMessageMatches: RegExp[] = [ @@ -18,7 +19,7 @@ export * from "@playwright/test"; * This is a wrapper around the Playwright test function that adds checks for console messages. * @see https://github.com/microsoft/playwright/discussions/11690#discussioncomment-2060397 */ -export const test = base.extend({ +export const test = base.extend({ page: async ({ page }, use) => { const messages: string[] = []; diff --git a/yarn.lock b/yarn.lock index 82f99b2e1dd..29520158bce 100644 --- a/yarn.lock +++ b/yarn.lock @@ -338,7 +338,7 @@ __metadata: sanitize-html: "npm:2.13.1" tsconfig-paths-webpack-plugin: "npm:4.2.0" tsx: "npm:4.19.2" - typescript: "npm:5.6.3" + typescript: "npm:5.7.2" vite-tsconfig-paths: "npm:5.1.4" vitest: "npm:2.1.8" wait-on: "npm:8.0.1" @@ -449,7 +449,7 @@ __metadata: rimraf: "npm:6.0.1" ts-json-schema-generator: "npm:1.5.1" tsx: "npm:4.19.2" - typescript: "npm:5.6.3" + typescript: "npm:5.7.2" vitest: "npm:2.1.8" wait-on: "npm:8.0.1" ws: "npm:8.18.0" @@ -597,7 +597,7 @@ __metadata: sigma: "npm:3.0.0" signia: "npm:0.1.5" signia-react: "npm:0.1.5" - typescript: "npm:5.6.3" + typescript: "npm:5.7.2" url-regex-safe: "npm:4.0.0" use-font-face-observer: "npm:1.2.2" uuid: "npm:9.0.1" @@ -654,7 +654,7 @@ __metadata: eslint: "npm:9.17.0" rimraf: "npm:6.0.1" tsx: "npm:4.19.2" - typescript: "npm:5.6.3" + typescript: "npm:5.7.2" wait-on: "npm:8.0.1" languageName: unknown linkType: soft @@ -672,7 +672,7 @@ __metadata: set-interval-async: "npm:2.0.3" slonik: "npm:24.2.0" tsx: "npm:4.19.2" - typescript: "npm:5.6.3" + typescript: "npm:5.7.2" languageName: unknown linkType: soft @@ -689,7 +689,7 @@ __metadata: eslint: "npm:9.17.0" hot-shots: "npm:8.5.2" tsx: "npm:4.19.2" - typescript: "npm:5.6.3" + typescript: "npm:5.7.2" languageName: unknown linkType: soft @@ -786,7 +786,7 @@ __metadata: sharp: "npm:0.33.5" slugify: "npm:1.6.6" tsx: "npm:4.19.2" - typescript: "npm:5.6.3" + typescript: "npm:5.7.2" unified: "npm:10.1.2" unist-util-visit: "npm:4.1.2" languageName: unknown @@ -853,7 +853,7 @@ __metadata: ts-loader: "npm:9.5.1" tsconfig-paths-webpack-plugin: "npm:4.2.0" type-fest: "npm:3.13.1" - typescript: "npm:5.6.3" + typescript: "npm:5.7.2" uuid: "npm:9.0.1" webextension-polyfill: "npm:0.10.0" webpack: "npm:5.97.1" @@ -4522,7 +4522,7 @@ __metadata: lit: "npm:2.8.0" lodash.isequal: "npm:4.5.0" rimraf: "npm:6.0.1" - typescript: "npm:5.6.3" + typescript: "npm:5.7.2" peerDependencies: react: ^18.0.0 languageName: unknown @@ -4610,7 +4610,7 @@ __metadata: rimraf: "npm:6.0.1" rollup: "npm:4.28.1" tslib: "npm:2.8.1" - typescript: "npm:5.6.3" + typescript: "npm:5.7.2" vite-plugin-wasm-pack: "npm:0.1.12" vitest: "npm:2.1.8" languageName: unknown @@ -4640,7 +4640,7 @@ __metadata: react-dom: "npm:18.2.0" react-sizeme: "npm:3.0.2" rooks: "npm:7.14.1" - typescript: "npm:5.6.3" + typescript: "npm:5.7.2" uuid: "npm:9.0.1" peerDependencies: react: ^18.0.0 @@ -4671,7 +4671,7 @@ __metadata: react-sizeme: "npm:3.0.2" react-transition-group: "npm:4.4.5" react-type-animation: "npm:3.2.0" - typescript: "npm:5.6.3" + typescript: "npm:5.7.2" uuid: "npm:9.0.1" peerDependencies: react: ^18.0.0 @@ -4699,7 +4699,7 @@ __metadata: react: "npm:18.2.0" react-dom: "npm:18.2.0" react-sizeme: "npm:3.0.2" - typescript: "npm:5.6.3" + typescript: "npm:5.7.2" uuid: "npm:9.0.1" peerDependencies: react: ^18.0.0 @@ -4725,7 +4725,7 @@ __metadata: prettier: "npm:3.4.2" react: "npm:18.2.0" react-dom: "npm:18.2.0" - typescript: "npm:5.6.3" + typescript: "npm:5.7.2" peerDependencies: react: ^18.0.0 react-dom: ^18.0.0 @@ -4747,7 +4747,7 @@ __metadata: prettier: "npm:3.4.2" react: "npm:18.2.0" react-dom: "npm:18.2.0" - typescript: "npm:5.6.3" + typescript: "npm:5.7.2" peerDependencies: react: ^18.2.0 react-dom: ^18.2.0 @@ -4779,7 +4779,7 @@ __metadata: react: "npm:18.2.0" react-dom: "npm:18.2.0" react-hook-form: "npm:7.54.1" - typescript: "npm:5.6.3" + typescript: "npm:5.7.2" peerDependencies: react: ^18.2.0 react-dom: ^18.2.0 @@ -4802,7 +4802,7 @@ __metadata: prismjs: "npm:1.29.0" react: "npm:18.2.0" react-dom: "npm:18.2.0" - typescript: "npm:5.6.3" + typescript: "npm:5.7.2" peerDependencies: react: ^18.2.0 react-dom: ^18.2.0 @@ -4826,7 +4826,7 @@ __metadata: react: "npm:18.2.0" react-datepicker: "npm:4.25.0" react-dom: "npm:18.2.0" - typescript: "npm:5.6.3" + typescript: "npm:5.7.2" peerDependencies: react: ^18.2.0 react-dom: ^18.2.0 @@ -4848,7 +4848,7 @@ __metadata: prettier: "npm:3.4.2" react: "npm:18.2.0" react-dom: "npm:18.2.0" - typescript: "npm:5.6.3" + typescript: "npm:5.7.2" peerDependencies: react: ^18.2.0 react-dom: ^18.2.0 @@ -4871,7 +4871,7 @@ __metadata: react: "npm:18.2.0" react-dom: "npm:18.2.0" twind: "npm:0.16.19" - typescript: "npm:5.6.3" + typescript: "npm:5.7.2" peerDependencies: lodash: 4.17.21 react: ^18.2.0 @@ -4896,7 +4896,7 @@ __metadata: prettier: "npm:3.4.2" react: "npm:18.2.0" react-dom: "npm:18.2.0" - typescript: "npm:5.6.3" + typescript: "npm:5.7.2" uuid: "npm:9.0.1" peerDependencies: react: ^18.0.0 @@ -4919,7 +4919,7 @@ __metadata: prettier: "npm:3.4.2" react: "npm:18.2.0" react-dom: "npm:18.2.0" - typescript: "npm:5.6.3" + typescript: "npm:5.7.2" peerDependencies: react: ^18.2.0 react-dom: ^18.2.0 @@ -4944,7 +4944,7 @@ __metadata: react: "npm:18.2.0" react-dom: "npm:18.2.0" react-sizeme: "npm:3.0.2" - typescript: "npm:5.6.3" + typescript: "npm:5.7.2" uuid: "npm:9.0.1" peerDependencies: react: ^18.0.0 @@ -4968,7 +4968,7 @@ __metadata: react: "npm:18.2.0" react-dom: "npm:18.2.0" twind: "npm:0.16.19" - typescript: "npm:5.6.3" + typescript: "npm:5.7.2" peerDependencies: react: ^18.2.0 react-dom: ^18.2.0 @@ -5003,7 +5003,7 @@ __metadata: react: "npm:18.2.0" react-dom: "npm:18.2.0" react-textarea-autosize: "npm:8.5.6" - typescript: "npm:5.6.3" + typescript: "npm:5.7.2" peerDependencies: react: ^18.0.0 react-dom: ^18.0.0 @@ -5026,7 +5026,7 @@ __metadata: prettier: "npm:3.4.2" react: "npm:18.2.0" react-dom: "npm:18.2.0" - typescript: "npm:5.6.3" + typescript: "npm:5.7.2" languageName: unknown linkType: soft @@ -5045,7 +5045,7 @@ __metadata: prettier: "npm:3.4.2" react: "npm:18.2.0" react-dom: "npm:18.2.0" - typescript: "npm:5.6.3" + typescript: "npm:5.7.2" peerDependencies: react: ^18.2.0 react-dom: ^18.2.0 @@ -5067,7 +5067,7 @@ __metadata: mock-block-dock: "npm:0.0.38" react: "npm:18.2.0" react-dom: "npm:18.2.0" - typescript: "npm:5.6.3" + typescript: "npm:5.7.2" peerDependencies: react: ^18.2.0 react-dom: ^18.2.0 @@ -5097,7 +5097,7 @@ __metadata: prettier: "npm:3.4.2" react: "npm:18.2.0" react-dom: "npm:18.2.0" - typescript: "npm:5.6.3" + typescript: "npm:5.7.2" uuid: "npm:9.0.1" peerDependencies: react: ^18.2.0 @@ -5136,7 +5136,7 @@ __metadata: react-laag: "npm:2.0.5" react-sizeme: "npm:3.0.2" rooks: "npm:7.14.1" - typescript: "npm:5.6.3" + typescript: "npm:5.7.2" peerDependencies: react: ^18.0.0 react-dom: ^18.0.0 @@ -5159,7 +5159,7 @@ __metadata: prettier: "npm:3.4.2" react: "npm:18.2.0" react-dom: "npm:18.2.0" - typescript: "npm:5.6.3" + typescript: "npm:5.7.2" peerDependencies: react: ^18.2.0 react-dom: ^18.2.0 @@ -5181,7 +5181,7 @@ __metadata: react: "npm:18.2.0" react-dom: "npm:18.2.0" twind: "npm:0.16.19" - typescript: "npm:5.6.3" + typescript: "npm:5.7.2" peerDependencies: react: ^18.2.0 react-dom: ^18.2.0 @@ -7856,7 +7856,7 @@ __metadata: react-dom: "npm:18.2.0" react-syntax-highlighter: "npm:15.6.1" react-type-animation: "npm:3.2.0" - typescript: "npm:5.6.3" + typescript: "npm:5.7.2" peerDependencies: "@emotion/react": 11.14.0 "@emotion/styled": 11.14.0 @@ -7893,7 +7893,7 @@ __metadata: react: "npm:18.2.0" react-dom: "npm:18.2.0" react-loading-skeleton: "npm:3.5.0" - typescript: "npm:5.6.3" + typescript: "npm:5.7.2" peerDependencies: "@emotion/cache": 11.14.0 "@emotion/react": 11.14.0 @@ -7923,7 +7923,7 @@ __metadata: react: "npm:18.2.0" react-dom: "npm:18.2.0" react-hook-form: "npm:7.54.1" - typescript: "npm:5.6.3" + typescript: "npm:5.7.2" peerDependencies: "@mui/material": ^5.14.0 "@mui/system": ^5.14.0 @@ -7960,7 +7960,7 @@ __metadata: react-hook-form: "npm:7.54.1" rooks: "npm:7.14.1" setimmediate: "npm:1.0.5" - typescript: "npm:5.6.3" + typescript: "npm:5.7.2" peerDependencies: "@mui/material": ^5.14.0 "@mui/system": ^5.14.0 @@ -9018,7 +9018,7 @@ __metadata: eslint: "npm:9.17.0" react: "npm:18.2.0" rimraf: "npm:6.0.1" - typescript: "npm:5.6.3" + typescript: "npm:5.7.2" languageName: unknown linkType: soft @@ -9049,7 +9049,7 @@ __metadata: eslint-unicorn: "npm:55.0.0" globals: "npm:15.13.0" rimraf: "npm:6.0.1" - typescript: "npm:5.6.3" + typescript: "npm:5.7.2" languageName: unknown linkType: soft @@ -9080,7 +9080,7 @@ __metadata: libp2p: "npm:2.4.2" multiformats: "npm:13.3.1" rimraf: "npm:6.0.1" - typescript: "npm:5.6.3" + typescript: "npm:5.7.2" uint8arraylist: "npm:2.4.8" vitest: "npm:2.1.8" languageName: unknown @@ -9127,7 +9127,7 @@ __metadata: redis: "npm:4.7.0" rimraf: "npm:6.0.1" slonik: "npm:24.2.0" - typescript: "npm:5.6.3" + typescript: "npm:5.7.2" vitest: "npm:2.1.8" wait-on: "npm:8.0.1" winston: "npm:3.17.0" @@ -9146,7 +9146,7 @@ __metadata: axios: "npm:1.7.9" fix-esm-import-path: "npm:1.10.1" rimraf: "npm:6.0.1" - typescript: "npm:5.6.3" + typescript: "npm:5.7.2" languageName: unknown linkType: soft @@ -9165,7 +9165,7 @@ __metadata: effect: "npm:3.11.7" eslint: "npm:9.17.0" rimraf: "npm:6.0.1" - typescript: "npm:5.6.3" + typescript: "npm:5.7.2" vitest: "npm:2.1.8" languageName: unknown linkType: soft @@ -9182,7 +9182,7 @@ __metadata: "@local/tsconfig": "npm:0.0.0-private" eslint: "npm:9.17.0" rimraf: "npm:6.0.1" - typescript: "npm:5.6.3" + typescript: "npm:5.7.2" languageName: unknown linkType: soft @@ -9235,7 +9235,7 @@ __metadata: rimraf: "npm:6.0.1" serialize-error: "npm:11.0.3" tsx: "npm:4.19.2" - typescript: "npm:5.6.3" + typescript: "npm:5.7.2" uuid: "npm:9.0.1" vitest: "npm:2.1.8" languageName: unknown @@ -9256,7 +9256,7 @@ __metadata: "@vitest/coverage-istanbul": "npm:2.1.8" eslint: "npm:9.17.0" rimraf: "npm:6.0.1" - typescript: "npm:5.6.3" + typescript: "npm:5.7.2" uuid: "npm:9.0.1" vitest: "npm:2.1.8" languageName: unknown @@ -9271,7 +9271,7 @@ __metadata: axios: "npm:1.7.9" prettier: "npm:3.4.2" rimraf: "npm:6.0.1" - typescript: "npm:5.6.3" + typescript: "npm:5.7.2" languageName: unknown linkType: soft @@ -9293,7 +9293,7 @@ __metadata: prettier: "npm:3.4.2" regex-parser: "npm:2.3.0" tsx: "npm:4.19.2" - typescript: "npm:5.6.3" + typescript: "npm:5.7.2" languageName: unknown linkType: soft @@ -9311,7 +9311,7 @@ __metadata: lodash-es: "npm:4.17.21" quicktype: "npm:16.0.43" rimraf: "npm:6.0.1" - typescript: "npm:5.6.3" + typescript: "npm:5.7.2" yargs: "npm:17.7.2" languageName: unknown linkType: soft @@ -13248,7 +13248,7 @@ __metadata: eslint: "npm:9.17.0" quicktype: "npm:16.0.43" tsx: "npm:4.19.2" - typescript: "npm:5.6.3" + typescript: "npm:5.7.2" languageName: unknown linkType: soft @@ -16559,7 +16559,7 @@ __metadata: graphql-request: "npm:3.7.0" node-fetch: "npm:2.7.0" rimraf: "npm:6.0.1" - typescript: "npm:5.6.3" + typescript: "npm:5.7.2" vitest: "npm:2.1.8" languageName: unknown linkType: soft @@ -16594,7 +16594,7 @@ __metadata: eslint: "npm:9.17.0" rimraf: "npm:6.0.1" rollup: "npm:4.28.1" - typescript: "npm:5.6.3" + typescript: "npm:5.7.2" uuid: "npm:9.0.1" languageName: unknown linkType: soft @@ -16621,7 +16621,7 @@ __metadata: graphql: "npm:16.10.0" js-yaml: "npm:4.1.0" rimraf: "npm:6.0.1" - typescript: "npm:5.6.3" + typescript: "npm:5.7.2" languageName: unknown linkType: soft @@ -45902,7 +45902,7 @@ __metadata: languageName: node linkType: hard -"typescript@npm:5, typescript@npm:^5.0.4, typescript@npm:^5.4.4": +"typescript@npm:5, typescript@npm:5.7.2, typescript@npm:^5.0.4, typescript@npm:^5.4.4": version: 5.7.2 resolution: "typescript@npm:5.7.2" bin: @@ -45922,16 +45922,6 @@ __metadata: languageName: node linkType: hard -"typescript@npm:5.6.3": - version: 5.6.3 - resolution: "typescript@npm:5.6.3" - bin: - tsc: bin/tsc - tsserver: bin/tsserver - checksum: 10c0/44f61d3fb15c35359bc60399cb8127c30bae554cd555b8e2b46d68fa79d680354b83320ad419ff1b81a0bdf324197b29affe6cc28988cd6a74d4ac60c94f9799 - languageName: node - linkType: hard - "typescript@npm:~3.2.1": version: 3.2.4 resolution: "typescript@npm:3.2.4" @@ -45982,7 +45972,7 @@ __metadata: languageName: node linkType: hard -"typescript@patch:typescript@npm%3A5#optional!builtin, typescript@patch:typescript@npm%3A^5.0.4#optional!builtin, typescript@patch:typescript@npm%3A^5.4.4#optional!builtin": +"typescript@patch:typescript@npm%3A5#optional!builtin, typescript@patch:typescript@npm%3A5.7.2#optional!builtin, typescript@patch:typescript@npm%3A^5.0.4#optional!builtin, typescript@patch:typescript@npm%3A^5.4.4#optional!builtin": version: 5.7.2 resolution: "typescript@patch:typescript@npm%3A5.7.2#optional!builtin::version=5.7.2&hash=5786d5" bin: @@ -46002,16 +45992,6 @@ __metadata: languageName: node linkType: hard -"typescript@patch:typescript@npm%3A5.6.3#optional!builtin": - version: 5.6.3 - resolution: "typescript@patch:typescript@npm%3A5.6.3#optional!builtin::version=5.6.3&hash=8c6c40" - bin: - tsc: bin/tsc - tsserver: bin/tsserver - checksum: 10c0/7c9d2e07c81226d60435939618c91ec2ff0b75fbfa106eec3430f0fcf93a584bc6c73176676f532d78c3594fe28a54b36eb40b3d75593071a7ec91301533ace7 - languageName: node - linkType: hard - "typescript@patch:typescript@npm%3A~3.2.1#optional!builtin": version: 3.2.4 resolution: "typescript@patch:typescript@npm%3A3.2.4#optional!builtin::version=3.2.4&hash=9a3324" From f362d4389f57ffdfd60d901302877c33694b7d9e Mon Sep 17 00:00:00 2001 From: "hash-worker[bot]" <180894564+hash-worker[bot]@users.noreply.github.com> Date: Mon, 16 Dec 2024 16:50:37 +0000 Subject: [PATCH 015/159] Update `rollup` npm packages (#5917) Co-authored-by: hash-worker[bot] <180894564+hash-worker[bot]@users.noreply.github.com> --- .../type-system/typescript/package.json | 4 +-- tests/hash-backend-load/package.json | 6 ++-- yarn.lock | 34 +++++++++---------- 3 files changed, 22 insertions(+), 22 deletions(-) diff --git a/libs/@blockprotocol/type-system/typescript/package.json b/libs/@blockprotocol/type-system/typescript/package.json index 472924b2b83..d81022baf33 100644 --- a/libs/@blockprotocol/type-system/typescript/package.json +++ b/libs/@blockprotocol/type-system/typescript/package.json @@ -56,8 +56,8 @@ "devDependencies": { "@local/eslint": "0.0.0-private", "@local/tsconfig": "0.0.0-private", - "@rollup/plugin-node-resolve": "15.3.0", - "@rollup/plugin-typescript": "12.1.1", + "@rollup/plugin-node-resolve": "15.3.1", + "@rollup/plugin-typescript": "12.1.2", "@rollup/plugin-wasm": "6.2.2", "@types/node": "22.10.2", "@types/react": "18.2.68", diff --git a/tests/hash-backend-load/package.json b/tests/hash-backend-load/package.json index 3d1db435055..c7272e08676 100644 --- a/tests/hash-backend-load/package.json +++ b/tests/hash-backend-load/package.json @@ -51,9 +51,9 @@ "@apps/hash-api": "0.0.0-private", "@local/eslint": "0.0.0-private", "@local/tsconfig": "0.0.0-private", - "@rollup/plugin-commonjs": "28.0.1", - "@rollup/plugin-node-resolve": "15.3.0", - "@rollup/plugin-typescript": "12.1.1", + "@rollup/plugin-commonjs": "28.0.2", + "@rollup/plugin-node-resolve": "15.3.1", + "@rollup/plugin-typescript": "12.1.2", "@types/dotenv-flow": "3.3.3", "@types/uuid": "10.0.0", "eslint": "9.17.0", diff --git a/yarn.lock b/yarn.lock index 29520158bce..37187007b00 100644 --- a/yarn.lock +++ b/yarn.lock @@ -4599,8 +4599,8 @@ __metadata: "@blockprotocol/type-system-rs": "npm:0.0.0-private" "@local/eslint": "npm:0.0.0-private" "@local/tsconfig": "npm:0.0.0-private" - "@rollup/plugin-node-resolve": "npm:15.3.0" - "@rollup/plugin-typescript": "npm:12.1.1" + "@rollup/plugin-node-resolve": "npm:15.3.1" + "@rollup/plugin-typescript": "npm:12.1.2" "@rollup/plugin-wasm": "npm:6.2.2" "@types/node": "npm:22.10.2" "@types/react": "npm:18.2.68" @@ -12677,9 +12677,9 @@ __metadata: languageName: node linkType: hard -"@rollup/plugin-commonjs@npm:28.0.1": - version: 28.0.1 - resolution: "@rollup/plugin-commonjs@npm:28.0.1" +"@rollup/plugin-commonjs@npm:28.0.2": + version: 28.0.2 + resolution: "@rollup/plugin-commonjs@npm:28.0.2" dependencies: "@rollup/pluginutils": "npm:^5.0.1" commondir: "npm:^1.0.1" @@ -12693,13 +12693,13 @@ __metadata: peerDependenciesMeta: rollup: optional: true - checksum: 10c0/15d73306f539763a4b0d5723a0be9099b56d07118ff12b4c7f4c04b26e762076706e9f88a45f131d639ed9b7bd52e51facf93f2ca265b994172677b48ca705fe + checksum: 10c0/e90a443e63bfed567d5a4854960240d256818a0b3c69a45e95e196c40a755959406dabe4fbccb886eeb45d3445ddc8f966632563a7d590808be7eee8084384f1 languageName: node linkType: hard -"@rollup/plugin-node-resolve@npm:15.3.0": - version: 15.3.0 - resolution: "@rollup/plugin-node-resolve@npm:15.3.0" +"@rollup/plugin-node-resolve@npm:15.3.1": + version: 15.3.1 + resolution: "@rollup/plugin-node-resolve@npm:15.3.1" dependencies: "@rollup/pluginutils": "npm:^5.0.1" "@types/resolve": "npm:1.20.2" @@ -12711,13 +12711,13 @@ __metadata: peerDependenciesMeta: rollup: optional: true - checksum: 10c0/5f3b11f9f6d00fe9fd3fe1977cc71f6a99c2b13d0ee82ad6822c4c4ecfc98854791c5a505798762f7e2332d9d67568a561e89aa8268ed3b1668563be1845109e + checksum: 10c0/ecf3abe890fc98ad665fdbfb1ea245253e0d1f2bc6d9f4e8f496f212c76a2ce7cd4b9bc0abd21e6bcaa16f72d1c67cc6b322ea12a6ec68e8a8834df8242a5ecd languageName: node linkType: hard -"@rollup/plugin-typescript@npm:12.1.1": - version: 12.1.1 - resolution: "@rollup/plugin-typescript@npm:12.1.1" +"@rollup/plugin-typescript@npm:12.1.2": + version: 12.1.2 + resolution: "@rollup/plugin-typescript@npm:12.1.2" dependencies: "@rollup/pluginutils": "npm:^5.1.0" resolve: "npm:^1.22.1" @@ -12730,7 +12730,7 @@ __metadata: optional: true tslib: optional: true - checksum: 10c0/1418ed9dc784c09ae82c7a171f453c42e26c48b5c557147cfee0fc95857711a3a0250efc7937b65923a5171bfd35c8d33dff82fe561ed2578c6d575ac7a826ae + checksum: 10c0/f447e23371bb1815030446ada3f57608bc6665f8aa2cd7343c4aa18021790fa3ba4783146ea576fb650d6ec68876182d0bc789a05b1a9163c09b16c17efdf868 languageName: node linkType: hard @@ -16584,9 +16584,9 @@ __metadata: "@opentelemetry/sdk-trace-node": "npm:1.29.0" "@opentelemetry/semantic-conventions": "npm:1.28.0" "@ory/client": "npm:1.1.41" - "@rollup/plugin-commonjs": "npm:28.0.1" - "@rollup/plugin-node-resolve": "npm:15.3.0" - "@rollup/plugin-typescript": "npm:12.1.1" + "@rollup/plugin-commonjs": "npm:28.0.2" + "@rollup/plugin-node-resolve": "npm:15.3.1" + "@rollup/plugin-typescript": "npm:12.1.2" "@types/dotenv-flow": "npm:3.3.3" "@types/uuid": "npm:10.0.0" artillery: "npm:2.0.20" From fb48e7a1b4df0d6d407e609dc2204ec64f37bc6b Mon Sep 17 00:00:00 2001 From: "hash-worker[bot]" <180894564+hash-worker[bot]@users.noreply.github.com> Date: Mon, 16 Dec 2024 20:42:14 +0000 Subject: [PATCH 016/159] Update `emoji-mart` npm packages (#5042) Co-authored-by: hash-worker[bot] <180894564+hash-worker[bot]@users.noreply.github.com> Co-authored-by: Bilal Mahmoud --- ...ypes-emoji-mart-npm-3.0.9-ec5052fc0d.patch | 12 ---- apps/hash-frontend/package.json | 4 +- .../src/shared/edit-emoji-icon-button.tsx | 8 ++- .../emoji-picker/emoji-mart-react.d.ts | 9 --- .../emoji-picker/emoji-picker.tsx | 57 +++++++++++++++++-- yarn.lock | 40 ++----------- 6 files changed, 63 insertions(+), 67 deletions(-) delete mode 100644 .yarn/patches/@types-emoji-mart-npm-3.0.9-ec5052fc0d.patch delete mode 100644 apps/hash-frontend/src/shared/edit-emoji-icon-button/emoji-picker/emoji-mart-react.d.ts diff --git a/.yarn/patches/@types-emoji-mart-npm-3.0.9-ec5052fc0d.patch b/.yarn/patches/@types-emoji-mart-npm-3.0.9-ec5052fc0d.patch deleted file mode 100644 index 782583941a7..00000000000 --- a/.yarn/patches/@types-emoji-mart-npm-3.0.9-ec5052fc0d.patch +++ /dev/null @@ -1,12 +0,0 @@ -diff --git a/dist-es/utils/shared-props.d.ts b/dist-es/utils/shared-props.d.ts -index ba8f0355357d748d0f359fdbe87db5395412e50d..f1062dffbfeef0e4798232459c4206e559367ec5 100755 ---- a/dist-es/utils/shared-props.d.ts -+++ b/dist-es/utils/shared-props.d.ts -@@ -63,6 +63,7 @@ export interface PickerProps { - /** NOTE: default is not preventable */ - onClick?(emoji: EmojiData, e: React.MouseEvent): void; - onSelect?(emoji: EmojiData): void; -+ onEmojiSelect?(emoji: EmojiData): void; - onSkinChange?(skin: EmojiSkin): void; - perLine?: number | undefined; - emojiSize?: number | undefined; diff --git a/apps/hash-frontend/package.json b/apps/hash-frontend/package.json index df5bc11b4b9..a67a7dd4034 100644 --- a/apps/hash-frontend/package.json +++ b/apps/hash-frontend/package.json @@ -27,7 +27,6 @@ "@dnd-kit/core": "6.3.1", "@dnd-kit/sortable": "7.0.2", "@dnd-kit/utilities": "3.2.2", - "@emoji-mart/react": "1.0.1", "@emotion/react": "11.14.0", "@emotion/server": "11.11.0", "@emotion/styled": "11.14.0", @@ -71,7 +70,7 @@ "date-fns": "4.1.0", "dotenv-flow": "3.3.0", "elkjs": "0.9.3", - "emoji-mart": "5.2.1", + "emoji-mart": "5.6.0", "fractional-indexing": "2.1.0", "framer-motion": "6.5.1", "graphology": "0.25.4", @@ -135,7 +134,6 @@ "@local/tsconfig": "0.0.0-private", "@next/bundle-analyzer": "12.3.4", "@types/dotenv-flow": "3.3.3", - "@types/emoji-mart": "patch:@types/emoji-mart@npm%3A3.0.9#~/.yarn/patches/@types-emoji-mart-npm-3.0.9-ec5052fc0d.patch", "@types/gapi": "0.0.47", "@types/google.accounts": "0.0.15", "@types/google.picker": "0.0.47", diff --git a/apps/hash-frontend/src/shared/edit-emoji-icon-button.tsx b/apps/hash-frontend/src/shared/edit-emoji-icon-button.tsx index ba4418f5e86..89823bf7a4c 100644 --- a/apps/hash-frontend/src/shared/edit-emoji-icon-button.tsx +++ b/apps/hash-frontend/src/shared/edit-emoji-icon-button.tsx @@ -7,13 +7,15 @@ import { import type { SxProps, Theme } from "@mui/material"; import { Box, iconButtonClasses, Tooltip } from "@mui/material"; import type { SystemStyleObject } from "@mui/system"; -import type { BaseEmoji } from "emoji-mart"; import { bindTrigger, usePopupState } from "material-ui-popup-state/hooks"; import type { FunctionComponent, MouseEventHandler, ReactNode } from "react"; import { useCallback, useState } from "react"; import { useDefaultState } from "../components/hooks/use-default-state"; -import type { EmojiPickerPopoverProps } from "./edit-emoji-icon-button/emoji-picker/emoji-picker"; +import type { + EmojiData, + EmojiPickerPopoverProps, +} from "./edit-emoji-icon-button/emoji-picker/emoji-picker"; import { EmojiPicker } from "./edit-emoji-icon-button/emoji-picker/emoji-picker"; export type SizeVariant = "small" | "medium"; @@ -61,7 +63,7 @@ export const EditEmojiIconButton: FunctionComponent< }); const handleOnEmojiSelect = useCallback( - async (emoji: BaseEmoji) => { + async (emoji: EmojiData) => { const maybePromise = onChange(emoji.native); if (maybePromise) { diff --git a/apps/hash-frontend/src/shared/edit-emoji-icon-button/emoji-picker/emoji-mart-react.d.ts b/apps/hash-frontend/src/shared/edit-emoji-icon-button/emoji-picker/emoji-mart-react.d.ts deleted file mode 100644 index 3c5f68e7ce6..00000000000 --- a/apps/hash-frontend/src/shared/edit-emoji-icon-button/emoji-picker/emoji-mart-react.d.ts +++ /dev/null @@ -1,9 +0,0 @@ -declare module "@emoji-mart/react" { - import type { PickerProps } from "emoji-mart"; - import type { FunctionComponent } from "react"; - - const ReactComponent: FunctionComponent; - - // eslint-disable-next-line import/no-default-export -- third-party requirement - export default ReactComponent; -} diff --git a/apps/hash-frontend/src/shared/edit-emoji-icon-button/emoji-picker/emoji-picker.tsx b/apps/hash-frontend/src/shared/edit-emoji-icon-button/emoji-picker/emoji-picker.tsx index 06003a0176d..a981b132790 100644 --- a/apps/hash-frontend/src/shared/edit-emoji-icon-button/emoji-picker/emoji-picker.tsx +++ b/apps/hash-frontend/src/shared/edit-emoji-icon-button/emoji-picker/emoji-picker.tsx @@ -1,9 +1,9 @@ -import Picker from "@emoji-mart/react"; import type { PopoverProps } from "@mui/material"; import { Popover } from "@mui/material"; -import type { BaseEmoji } from "emoji-mart"; +import { Picker } from "emoji-mart"; import type { PopupState } from "material-ui-popup-state/hooks"; import { bindPopover } from "material-ui-popup-state/hooks"; +import { type FC, useEffect, useRef } from "react"; export type EmojiPickerPopoverProps = Omit< PopoverProps, @@ -14,8 +14,55 @@ export type EmojiPickerPopoverProps = Omit< | "sx" >; +// extracted from https://github.com/missive/emoji-mart/blob/16978d04a766eec6455e2e8bb21cd8dc0b3c7436/packages/emoji-mart/src/utils.ts#L18 +export interface EmojiData { + id: string; + name: string; + + native: string; + unified: string; + + keywords: string[]; + shortcodes: string[]; + + skin?: number; + src?: string; + + aliases?: [string, ...string[]]; + emoticons?: [string, ...string[]]; +} + +// see: https://github.com/missive/emoji-mart/issues/576#issuecomment-1678195620 +type ExtractProps = { + [K in keyof T]?: T[K] extends { value: infer V } ? V : never; +}; + +// vendored from https://github.com/missive/emoji-mart/blob/16978d04a766eec6455e2e8bb21cd8dc0b3c7436/packages/emoji-mart-react/react.tsx +const EmojiPickerWrapper: FC< + ExtractProps & { + onEmojiSelect: (emoji: EmojiData) => void; + } +> = (props: ExtractProps) => { + const ref = useRef(null); + const instance = useRef(null); + + if (instance.current) { + instance.current.update(props); + } + + useEffect(() => { + instance.current = new Picker({ ...props, ref }); + + return () => { + instance.current = null; + }; + }, [props]); + + return
; +}; + interface EmojiPickerProps { - onEmojiSelect: (emoji: BaseEmoji) => void; + onEmojiSelect: (emoji: EmojiData) => void; popupState: PopupState; popoverProps?: EmojiPickerPopoverProps; } @@ -40,7 +87,7 @@ export const EmojiPicker = ({ sx={{ mt: 1 }} {...(popoverProps ?? {})} > - { @@ -49,7 +96,7 @@ export const EmojiPicker = ({ * We cast `EmojiData` to `BaseEmoji` here, because we don't support `CustomEmoji` yet. * So we can safely say `emoji` is `BaseEmoji` for now */ - onEmojiSelect(emoji as BaseEmoji); + onEmojiSelect(emoji); }} /> diff --git a/yarn.lock b/yarn.lock index 37187007b00..a6d8b61f43d 100644 --- a/yarn.lock +++ b/yarn.lock @@ -475,7 +475,6 @@ __metadata: "@dnd-kit/core": "npm:6.3.1" "@dnd-kit/sortable": "npm:7.0.2" "@dnd-kit/utilities": "npm:3.2.2" - "@emoji-mart/react": "npm:1.0.1" "@emotion/react": "npm:11.14.0" "@emotion/server": "npm:11.11.0" "@emotion/styled": "npm:11.14.0" @@ -520,7 +519,6 @@ __metadata: "@tldraw/tldraw": "npm:2.0.0-alpha.12" "@tldraw/tlvalidate": "npm:2.0.0-alpha.12" "@types/dotenv-flow": "npm:3.3.3" - "@types/emoji-mart": "patch:@types/emoji-mart@npm%3A3.0.9#~/.yarn/patches/@types-emoji-mart-npm-3.0.9-ec5052fc0d.patch" "@types/gapi": "npm:0.0.47" "@types/google.accounts": "npm:0.0.15" "@types/google.picker": "npm:0.0.47" @@ -542,7 +540,7 @@ __metadata: date-fns: "npm:4.1.0" dotenv-flow: "npm:3.3.0" elkjs: "npm:0.9.3" - emoji-mart: "npm:5.2.1" + emoji-mart: "npm:5.6.0" eslint: "npm:9.17.0" fractional-indexing: "npm:2.1.0" framer-motion: "npm:6.5.1" @@ -5795,16 +5793,6 @@ __metadata: languageName: node linkType: hard -"@emoji-mart/react@npm:1.0.1": - version: 1.0.1 - resolution: "@emoji-mart/react@npm:1.0.1" - peerDependencies: - emoji-mart: ^5.2 - react: ^16.8 || ^17 || ^18 - checksum: 10c0/b1f06331f29d333924005a678e1ccd9a8a49bf9522c90dad5d12cd8ca0e779a56a0cb1480ced583efe4ccea79b7caadca1dd855a68d11b5fb949c420eb152d01 - languageName: node - linkType: hard - "@emotion/babel-plugin@npm:^11.13.5": version: 11.13.5 resolution: "@emotion/babel-plugin@npm:11.13.5" @@ -17434,24 +17422,6 @@ __metadata: languageName: node linkType: hard -"@types/emoji-mart@npm:3.0.9": - version: 3.0.9 - resolution: "@types/emoji-mart@npm:3.0.9" - dependencies: - "@types/react": "npm:*" - checksum: 10c0/42bc0ccb08b80284c2adaceb4cb25c9137e2bb33c94eff033ddf5266d2a23d01dea7a1be6bae2a4718b5f1e2c1317f5b48bb7f166451b102cee51deabb0c1767 - languageName: node - linkType: hard - -"@types/emoji-mart@patch:@types/emoji-mart@npm%3A3.0.9#~/.yarn/patches/@types-emoji-mart-npm-3.0.9-ec5052fc0d.patch": - version: 3.0.9 - resolution: "@types/emoji-mart@patch:@types/emoji-mart@npm%3A3.0.9#~/.yarn/patches/@types-emoji-mart-npm-3.0.9-ec5052fc0d.patch::version=3.0.9&hash=28c19b" - dependencies: - "@types/react": "npm:*" - checksum: 10c0/29576c3393ce8d75d16f767a4e7ce02dc18752e7e362c600c7f8a26430414371e323ae3b38c6327a4b6310412d26ee496fd4e45a6d7be3b6d0032e67f376293f - languageName: node - linkType: hard - "@types/emscripten@npm:^1.39.6": version: 1.39.13 resolution: "@types/emscripten@npm:1.39.13" @@ -25303,10 +25273,10 @@ __metadata: languageName: node linkType: hard -"emoji-mart@npm:5.2.1": - version: 5.2.1 - resolution: "emoji-mart@npm:5.2.1" - checksum: 10c0/2701424c834a5d69bb5deb91a1d4eb11276b4b7b1df236a612474d6e757ca8ea0a4e87af00cfab95b6d95250edda79aca127179af56429665017c01c0e6ecf35 +"emoji-mart@npm:5.6.0": + version: 5.6.0 + resolution: "emoji-mart@npm:5.6.0" + checksum: 10c0/23e68ab10984f101b696d8f8e103e553ffa8e4d644e9a315190a9657903f71b833db09aac51b05de20f33bb9eef5bc1425eecdb2437042b25aff2dad0231f029 languageName: node linkType: hard From 994a19c003d666c6bd981a75730433267bd8b277 Mon Sep 17 00:00:00 2001 From: "hash-worker[bot]" <180894564+hash-worker[bot]@users.noreply.github.com> Date: Mon, 16 Dec 2024 21:27:48 +0000 Subject: [PATCH 017/159] Update npm package `npm-run-all2` to v7.0.2 (#5921) Co-authored-by: hash-worker[bot] <180894564+hash-worker[bot]@users.noreply.github.com> --- package.json | 2 +- yarn.lock | 12 ++++++------ 2 files changed, 7 insertions(+), 7 deletions(-) diff --git a/package.json b/package.json index c0dd9b993f0..c7264009618 100644 --- a/package.json +++ b/package.json @@ -107,7 +107,7 @@ "@yarnpkg/types": "^4.0.0", "lefthook": "1.9.2", "markdownlint-cli": "0.43.0", - "npm-run-all2": "7.0.1", + "npm-run-all2": "7.0.2", "prettier": "3.4.2", "prettier-plugin-packagejson": "2.5.6", "turbo": "2.3.3" diff --git a/yarn.lock b/yarn.lock index a6d8b61f43d..d05d66a06fe 100644 --- a/yarn.lock +++ b/yarn.lock @@ -29524,7 +29524,7 @@ __metadata: "@yarnpkg/types": "npm:^4.0.0" lefthook: "npm:1.9.2" markdownlint-cli: "npm:0.43.0" - npm-run-all2: "npm:7.0.1" + npm-run-all2: "npm:7.0.2" prettier: "npm:3.4.2" prettier-plugin-packagejson: "npm:2.5.6" turbo: "npm:2.3.3" @@ -37040,12 +37040,12 @@ __metadata: languageName: node linkType: hard -"npm-run-all2@npm:7.0.1": - version: 7.0.1 - resolution: "npm-run-all2@npm:7.0.1" +"npm-run-all2@npm:7.0.2": + version: 7.0.2 + resolution: "npm-run-all2@npm:7.0.2" dependencies: ansi-styles: "npm:^6.2.1" - cross-spawn: "npm:^7.0.3" + cross-spawn: "npm:^7.0.6" memorystream: "npm:^0.3.1" minimatch: "npm:^9.0.0" pidtree: "npm:^0.6.0" @@ -37057,7 +37057,7 @@ __metadata: npm-run-all2: bin/npm-run-all/index.js run-p: bin/run-p/index.js run-s: bin/run-s/index.js - checksum: 10c0/1f2438341473280f7f55015f04a9c5bbbb3226e8235ef50811f50f98514f10ff2ac1640da592e0d5a2e6c7b95060e1bb1c7a86b5177fa746151912ac99a8f3b7 + checksum: 10c0/4606c0cdaad9dc7dbe5a6ae432b1aabea25e2ffd541f959307e5c34247d0658952f98352b8ce45f925241af304c6718b2198b425f234e0e9fbc30b342cedb121 languageName: node linkType: hard From 1f019bb22dfb164585c8fa880cbb6d195f1d8337 Mon Sep 17 00:00:00 2001 From: "hash-worker[bot]" <180894564+hash-worker[bot]@users.noreply.github.com> Date: Mon, 16 Dec 2024 21:37:30 +0000 Subject: [PATCH 018/159] Update npm package `@rollup/plugin-node-resolve` to v16 (#5923) Co-authored-by: hash-worker[bot] <180894564+hash-worker[bot]@users.noreply.github.com> --- .../type-system/typescript/package.json | 2 +- tests/hash-backend-load/package.json | 2 +- yarn.lock | 12 ++++++------ 3 files changed, 8 insertions(+), 8 deletions(-) diff --git a/libs/@blockprotocol/type-system/typescript/package.json b/libs/@blockprotocol/type-system/typescript/package.json index d81022baf33..38ef9b785cd 100644 --- a/libs/@blockprotocol/type-system/typescript/package.json +++ b/libs/@blockprotocol/type-system/typescript/package.json @@ -56,7 +56,7 @@ "devDependencies": { "@local/eslint": "0.0.0-private", "@local/tsconfig": "0.0.0-private", - "@rollup/plugin-node-resolve": "15.3.1", + "@rollup/plugin-node-resolve": "16.0.0", "@rollup/plugin-typescript": "12.1.2", "@rollup/plugin-wasm": "6.2.2", "@types/node": "22.10.2", diff --git a/tests/hash-backend-load/package.json b/tests/hash-backend-load/package.json index c7272e08676..796545c144c 100644 --- a/tests/hash-backend-load/package.json +++ b/tests/hash-backend-load/package.json @@ -52,7 +52,7 @@ "@local/eslint": "0.0.0-private", "@local/tsconfig": "0.0.0-private", "@rollup/plugin-commonjs": "28.0.2", - "@rollup/plugin-node-resolve": "15.3.1", + "@rollup/plugin-node-resolve": "16.0.0", "@rollup/plugin-typescript": "12.1.2", "@types/dotenv-flow": "3.3.3", "@types/uuid": "10.0.0", diff --git a/yarn.lock b/yarn.lock index d05d66a06fe..b4854ee5f3f 100644 --- a/yarn.lock +++ b/yarn.lock @@ -4597,7 +4597,7 @@ __metadata: "@blockprotocol/type-system-rs": "npm:0.0.0-private" "@local/eslint": "npm:0.0.0-private" "@local/tsconfig": "npm:0.0.0-private" - "@rollup/plugin-node-resolve": "npm:15.3.1" + "@rollup/plugin-node-resolve": "npm:16.0.0" "@rollup/plugin-typescript": "npm:12.1.2" "@rollup/plugin-wasm": "npm:6.2.2" "@types/node": "npm:22.10.2" @@ -12685,9 +12685,9 @@ __metadata: languageName: node linkType: hard -"@rollup/plugin-node-resolve@npm:15.3.1": - version: 15.3.1 - resolution: "@rollup/plugin-node-resolve@npm:15.3.1" +"@rollup/plugin-node-resolve@npm:16.0.0": + version: 16.0.0 + resolution: "@rollup/plugin-node-resolve@npm:16.0.0" dependencies: "@rollup/pluginutils": "npm:^5.0.1" "@types/resolve": "npm:1.20.2" @@ -12699,7 +12699,7 @@ __metadata: peerDependenciesMeta: rollup: optional: true - checksum: 10c0/ecf3abe890fc98ad665fdbfb1ea245253e0d1f2bc6d9f4e8f496f212c76a2ce7cd4b9bc0abd21e6bcaa16f72d1c67cc6b322ea12a6ec68e8a8834df8242a5ecd + checksum: 10c0/b63deb6fc14b37070ccaffacc8c10c9720f28ce7632f4fe2ee77064c0c79bcc3fe060fb77160e673c9fd847307252f25a2983030bd54f1888324063c69ae1399 languageName: node linkType: hard @@ -16573,7 +16573,7 @@ __metadata: "@opentelemetry/semantic-conventions": "npm:1.28.0" "@ory/client": "npm:1.1.41" "@rollup/plugin-commonjs": "npm:28.0.2" - "@rollup/plugin-node-resolve": "npm:15.3.1" + "@rollup/plugin-node-resolve": "npm:16.0.0" "@rollup/plugin-typescript": "npm:12.1.2" "@types/dotenv-flow": "npm:3.3.3" "@types/uuid": "npm:10.0.0" From 3bff9cb58589b64ab8b8be83da9534630c186c8c Mon Sep 17 00:00:00 2001 From: "hash-worker[bot]" <180894564+hash-worker[bot]@users.noreply.github.com> Date: Tue, 17 Dec 2024 00:14:16 +0000 Subject: [PATCH 019/159] Update aws-sdk-js-v3 monorepo to v3.713.0 (#5922) Co-authored-by: hash-worker[bot] <180894564+hash-worker[bot]@users.noreply.github.com> Co-authored-by: vilkinsons <6226576+vilkinsons@users.noreply.github.com> --- apps/hash-api/package.json | 10 +- libs/@local/hash-backend-utils/package.json | 4 +- yarn.lock | 530 ++++++++++---------- 3 files changed, 272 insertions(+), 272 deletions(-) diff --git a/apps/hash-api/package.json b/apps/hash-api/package.json index 666d834ac98..88e9582d2f0 100644 --- a/apps/hash-api/package.json +++ b/apps/hash-api/package.json @@ -24,11 +24,11 @@ }, "dependencies": { "@apps/hash-graph": "0.0.0-private", - "@aws-sdk/client-s3": "3.712.0", - "@aws-sdk/client-ses": "3.712.0", - "@aws-sdk/credential-provider-node": "3.712.0", - "@aws-sdk/s3-presigned-post": "3.712.0", - "@aws-sdk/s3-request-presigner": "3.712.0", + "@aws-sdk/client-s3": "3.713.0", + "@aws-sdk/client-ses": "3.713.0", + "@aws-sdk/credential-provider-node": "3.713.0", + "@aws-sdk/s3-presigned-post": "3.713.0", + "@aws-sdk/s3-request-presigner": "3.713.0", "@blockprotocol/core": "0.1.3", "@blockprotocol/type-system": "0.1.2-canary.0", "@graphql-tools/schema": "8.5.1", diff --git a/libs/@local/hash-backend-utils/package.json b/libs/@local/hash-backend-utils/package.json index 53cb5e3e883..48265dfc271 100644 --- a/libs/@local/hash-backend-utils/package.json +++ b/libs/@local/hash-backend-utils/package.json @@ -23,8 +23,8 @@ "test:unit": "vitest --run" }, "dependencies": { - "@aws-sdk/client-s3": "3.712.0", - "@aws-sdk/s3-request-presigner": "3.712.0", + "@aws-sdk/client-s3": "3.713.0", + "@aws-sdk/s3-request-presigner": "3.713.0", "@blockprotocol/core": "0.1.3", "@blockprotocol/graph": "0.4.0-canary.0", "@blockprotocol/type-system": "0.1.2-canary.0", diff --git a/yarn.lock b/yarn.lock index b4854ee5f3f..f9810039b56 100644 --- a/yarn.lock +++ b/yarn.lock @@ -350,11 +350,11 @@ __metadata: resolution: "@apps/hash-api@workspace:apps/hash-api" dependencies: "@apps/hash-graph": "npm:0.0.0-private" - "@aws-sdk/client-s3": "npm:3.712.0" - "@aws-sdk/client-ses": "npm:3.712.0" - "@aws-sdk/credential-provider-node": "npm:3.712.0" - "@aws-sdk/s3-presigned-post": "npm:3.712.0" - "@aws-sdk/s3-request-presigner": "npm:3.712.0" + "@aws-sdk/client-s3": "npm:3.713.0" + "@aws-sdk/client-ses": "npm:3.713.0" + "@aws-sdk/credential-provider-node": "npm:3.713.0" + "@aws-sdk/s3-presigned-post": "npm:3.713.0" + "@aws-sdk/s3-request-presigner": "npm:3.713.0" "@blockprotocol/core": "npm:0.1.3" "@blockprotocol/graph": "npm:0.4.0-canary.0" "@blockprotocol/type-system": "npm:0.1.2-canary.0" @@ -1274,33 +1274,33 @@ __metadata: languageName: node linkType: hard -"@aws-sdk/client-s3@npm:3.712.0": - version: 3.712.0 - resolution: "@aws-sdk/client-s3@npm:3.712.0" +"@aws-sdk/client-s3@npm:3.713.0": + version: 3.713.0 + resolution: "@aws-sdk/client-s3@npm:3.713.0" dependencies: "@aws-crypto/sha1-browser": "npm:5.2.0" "@aws-crypto/sha256-browser": "npm:5.2.0" "@aws-crypto/sha256-js": "npm:5.2.0" - "@aws-sdk/client-sso-oidc": "npm:3.712.0" - "@aws-sdk/client-sts": "npm:3.712.0" - "@aws-sdk/core": "npm:3.709.0" - "@aws-sdk/credential-provider-node": "npm:3.712.0" - "@aws-sdk/middleware-bucket-endpoint": "npm:3.709.0" - "@aws-sdk/middleware-expect-continue": "npm:3.709.0" - "@aws-sdk/middleware-flexible-checksums": "npm:3.709.0" - "@aws-sdk/middleware-host-header": "npm:3.709.0" - "@aws-sdk/middleware-location-constraint": "npm:3.709.0" - "@aws-sdk/middleware-logger": "npm:3.709.0" - "@aws-sdk/middleware-recursion-detection": "npm:3.709.0" - "@aws-sdk/middleware-sdk-s3": "npm:3.709.0" - "@aws-sdk/middleware-ssec": "npm:3.709.0" - "@aws-sdk/middleware-user-agent": "npm:3.709.0" - "@aws-sdk/region-config-resolver": "npm:3.709.0" - "@aws-sdk/signature-v4-multi-region": "npm:3.709.0" - "@aws-sdk/types": "npm:3.709.0" - "@aws-sdk/util-endpoints": "npm:3.709.0" - "@aws-sdk/util-user-agent-browser": "npm:3.709.0" - "@aws-sdk/util-user-agent-node": "npm:3.712.0" + "@aws-sdk/client-sso-oidc": "npm:3.713.0" + "@aws-sdk/client-sts": "npm:3.713.0" + "@aws-sdk/core": "npm:3.713.0" + "@aws-sdk/credential-provider-node": "npm:3.713.0" + "@aws-sdk/middleware-bucket-endpoint": "npm:3.713.0" + "@aws-sdk/middleware-expect-continue": "npm:3.713.0" + "@aws-sdk/middleware-flexible-checksums": "npm:3.713.0" + "@aws-sdk/middleware-host-header": "npm:3.713.0" + "@aws-sdk/middleware-location-constraint": "npm:3.713.0" + "@aws-sdk/middleware-logger": "npm:3.713.0" + "@aws-sdk/middleware-recursion-detection": "npm:3.713.0" + "@aws-sdk/middleware-sdk-s3": "npm:3.713.0" + "@aws-sdk/middleware-ssec": "npm:3.713.0" + "@aws-sdk/middleware-user-agent": "npm:3.713.0" + "@aws-sdk/region-config-resolver": "npm:3.713.0" + "@aws-sdk/signature-v4-multi-region": "npm:3.713.0" + "@aws-sdk/types": "npm:3.713.0" + "@aws-sdk/util-endpoints": "npm:3.713.0" + "@aws-sdk/util-user-agent-browser": "npm:3.713.0" + "@aws-sdk/util-user-agent-node": "npm:3.713.0" "@aws-sdk/xml-builder": "npm:3.709.0" "@smithy/config-resolver": "npm:^3.0.13" "@smithy/core": "npm:^2.5.5" @@ -1336,7 +1336,7 @@ __metadata: "@smithy/util-utf8": "npm:^3.0.0" "@smithy/util-waiter": "npm:^3.2.0" tslib: "npm:^2.6.2" - checksum: 10c0/89996a5689c4ac567a36362e8449eda67cb1e183e53fd1810c1e95e6d480f9b365c258a80d5bb5394aa374d0f2295defda4a81d5985875d9cab707cce4014f65 + checksum: 10c0/f80275f8e8269d8f0fc5ac787537e050a211ce489823e1080f15fc48721be862d5c96446da33f63cc63038a55fbe961781e6cecfc894284c572116dccab818dd languageName: node linkType: hard @@ -1392,25 +1392,25 @@ __metadata: languageName: node linkType: hard -"@aws-sdk/client-ses@npm:3.712.0": - version: 3.712.0 - resolution: "@aws-sdk/client-ses@npm:3.712.0" +"@aws-sdk/client-ses@npm:3.713.0": + version: 3.713.0 + resolution: "@aws-sdk/client-ses@npm:3.713.0" dependencies: "@aws-crypto/sha256-browser": "npm:5.2.0" "@aws-crypto/sha256-js": "npm:5.2.0" - "@aws-sdk/client-sso-oidc": "npm:3.712.0" - "@aws-sdk/client-sts": "npm:3.712.0" - "@aws-sdk/core": "npm:3.709.0" - "@aws-sdk/credential-provider-node": "npm:3.712.0" - "@aws-sdk/middleware-host-header": "npm:3.709.0" - "@aws-sdk/middleware-logger": "npm:3.709.0" - "@aws-sdk/middleware-recursion-detection": "npm:3.709.0" - "@aws-sdk/middleware-user-agent": "npm:3.709.0" - "@aws-sdk/region-config-resolver": "npm:3.709.0" - "@aws-sdk/types": "npm:3.709.0" - "@aws-sdk/util-endpoints": "npm:3.709.0" - "@aws-sdk/util-user-agent-browser": "npm:3.709.0" - "@aws-sdk/util-user-agent-node": "npm:3.712.0" + "@aws-sdk/client-sso-oidc": "npm:3.713.0" + "@aws-sdk/client-sts": "npm:3.713.0" + "@aws-sdk/core": "npm:3.713.0" + "@aws-sdk/credential-provider-node": "npm:3.713.0" + "@aws-sdk/middleware-host-header": "npm:3.713.0" + "@aws-sdk/middleware-logger": "npm:3.713.0" + "@aws-sdk/middleware-recursion-detection": "npm:3.713.0" + "@aws-sdk/middleware-user-agent": "npm:3.713.0" + "@aws-sdk/region-config-resolver": "npm:3.713.0" + "@aws-sdk/types": "npm:3.713.0" + "@aws-sdk/util-endpoints": "npm:3.713.0" + "@aws-sdk/util-user-agent-browser": "npm:3.713.0" + "@aws-sdk/util-user-agent-node": "npm:3.713.0" "@smithy/config-resolver": "npm:^3.0.13" "@smithy/core": "npm:^2.5.5" "@smithy/fetch-http-handler": "npm:^4.1.2" @@ -1438,7 +1438,7 @@ __metadata: "@smithy/util-utf8": "npm:^3.0.0" "@smithy/util-waiter": "npm:^3.2.0" tslib: "npm:^2.6.2" - checksum: 10c0/219f6c4e99671a11065b361aa605778fdfadc34a953f994c3500cfe0a3d46859cb0af107a2dcd7e4dfcc291f71013e3c4f5b0b186df1945e61195f82652a686d + checksum: 10c0/f76dea55cc13c9698d501bce3d881ff51edf667ceb2fb820dbfb97a6ff5125eb4af3df79cea28348f0168fe75fce0f443fd6954666d0af5dc2f4fd53077a308d languageName: node linkType: hard @@ -1491,23 +1491,23 @@ __metadata: languageName: node linkType: hard -"@aws-sdk/client-sso-oidc@npm:3.712.0": - version: 3.712.0 - resolution: "@aws-sdk/client-sso-oidc@npm:3.712.0" +"@aws-sdk/client-sso-oidc@npm:3.713.0": + version: 3.713.0 + resolution: "@aws-sdk/client-sso-oidc@npm:3.713.0" dependencies: "@aws-crypto/sha256-browser": "npm:5.2.0" "@aws-crypto/sha256-js": "npm:5.2.0" - "@aws-sdk/core": "npm:3.709.0" - "@aws-sdk/credential-provider-node": "npm:3.712.0" - "@aws-sdk/middleware-host-header": "npm:3.709.0" - "@aws-sdk/middleware-logger": "npm:3.709.0" - "@aws-sdk/middleware-recursion-detection": "npm:3.709.0" - "@aws-sdk/middleware-user-agent": "npm:3.709.0" - "@aws-sdk/region-config-resolver": "npm:3.709.0" - "@aws-sdk/types": "npm:3.709.0" - "@aws-sdk/util-endpoints": "npm:3.709.0" - "@aws-sdk/util-user-agent-browser": "npm:3.709.0" - "@aws-sdk/util-user-agent-node": "npm:3.712.0" + "@aws-sdk/core": "npm:3.713.0" + "@aws-sdk/credential-provider-node": "npm:3.713.0" + "@aws-sdk/middleware-host-header": "npm:3.713.0" + "@aws-sdk/middleware-logger": "npm:3.713.0" + "@aws-sdk/middleware-recursion-detection": "npm:3.713.0" + "@aws-sdk/middleware-user-agent": "npm:3.713.0" + "@aws-sdk/region-config-resolver": "npm:3.713.0" + "@aws-sdk/types": "npm:3.713.0" + "@aws-sdk/util-endpoints": "npm:3.713.0" + "@aws-sdk/util-user-agent-browser": "npm:3.713.0" + "@aws-sdk/util-user-agent-node": "npm:3.713.0" "@smithy/config-resolver": "npm:^3.0.13" "@smithy/core": "npm:^2.5.5" "@smithy/fetch-http-handler": "npm:^4.1.2" @@ -1535,8 +1535,8 @@ __metadata: "@smithy/util-utf8": "npm:^3.0.0" tslib: "npm:^2.6.2" peerDependencies: - "@aws-sdk/client-sts": ^3.712.0 - checksum: 10c0/10eebcf2943f230703e08c54c2b57c09863ee69200faeeb05e62e55a7cf6fbb911932f07b5fb97ea024ed9ff559580909a612445bc5f59963e233798a0ab16c6 + "@aws-sdk/client-sts": ^3.713.0 + checksum: 10c0/a26784a6179cb64f2d117dbd5b1336eae0b737b85d42b79756dbcd073c0bfdbb81343cfaa841944b16d5afa3c78eadc242d0b874b3169dd10c0035373a3e6a7f languageName: node linkType: hard @@ -1586,22 +1586,22 @@ __metadata: languageName: node linkType: hard -"@aws-sdk/client-sso@npm:3.712.0": - version: 3.712.0 - resolution: "@aws-sdk/client-sso@npm:3.712.0" +"@aws-sdk/client-sso@npm:3.713.0": + version: 3.713.0 + resolution: "@aws-sdk/client-sso@npm:3.713.0" dependencies: "@aws-crypto/sha256-browser": "npm:5.2.0" "@aws-crypto/sha256-js": "npm:5.2.0" - "@aws-sdk/core": "npm:3.709.0" - "@aws-sdk/middleware-host-header": "npm:3.709.0" - "@aws-sdk/middleware-logger": "npm:3.709.0" - "@aws-sdk/middleware-recursion-detection": "npm:3.709.0" - "@aws-sdk/middleware-user-agent": "npm:3.709.0" - "@aws-sdk/region-config-resolver": "npm:3.709.0" - "@aws-sdk/types": "npm:3.709.0" - "@aws-sdk/util-endpoints": "npm:3.709.0" - "@aws-sdk/util-user-agent-browser": "npm:3.709.0" - "@aws-sdk/util-user-agent-node": "npm:3.712.0" + "@aws-sdk/core": "npm:3.713.0" + "@aws-sdk/middleware-host-header": "npm:3.713.0" + "@aws-sdk/middleware-logger": "npm:3.713.0" + "@aws-sdk/middleware-recursion-detection": "npm:3.713.0" + "@aws-sdk/middleware-user-agent": "npm:3.713.0" + "@aws-sdk/region-config-resolver": "npm:3.713.0" + "@aws-sdk/types": "npm:3.713.0" + "@aws-sdk/util-endpoints": "npm:3.713.0" + "@aws-sdk/util-user-agent-browser": "npm:3.713.0" + "@aws-sdk/util-user-agent-node": "npm:3.713.0" "@smithy/config-resolver": "npm:^3.0.13" "@smithy/core": "npm:^2.5.5" "@smithy/fetch-http-handler": "npm:^4.1.2" @@ -1628,7 +1628,7 @@ __metadata: "@smithy/util-retry": "npm:^3.0.11" "@smithy/util-utf8": "npm:^3.0.0" tslib: "npm:^2.6.2" - checksum: 10c0/9de61923becc98a61943e2fbf10382727c32508e9a824b4925306fc337260d6620a9f637ad6563eecf55835635dc7b2b284c10aef2bd5643ce4ea75944e3be12 + checksum: 10c0/d81a1153d63116c0fc2d25a26c6e3dd3d45e5560b11bed1314ecc9e23dd6be1ecb879a66ff5782d3043e1578147ac9cfd052d1b08907436d6ae56ad8ad528b30 languageName: node linkType: hard @@ -1680,24 +1680,24 @@ __metadata: languageName: node linkType: hard -"@aws-sdk/client-sts@npm:3.712.0": - version: 3.712.0 - resolution: "@aws-sdk/client-sts@npm:3.712.0" +"@aws-sdk/client-sts@npm:3.713.0": + version: 3.713.0 + resolution: "@aws-sdk/client-sts@npm:3.713.0" dependencies: "@aws-crypto/sha256-browser": "npm:5.2.0" "@aws-crypto/sha256-js": "npm:5.2.0" - "@aws-sdk/client-sso-oidc": "npm:3.712.0" - "@aws-sdk/core": "npm:3.709.0" - "@aws-sdk/credential-provider-node": "npm:3.712.0" - "@aws-sdk/middleware-host-header": "npm:3.709.0" - "@aws-sdk/middleware-logger": "npm:3.709.0" - "@aws-sdk/middleware-recursion-detection": "npm:3.709.0" - "@aws-sdk/middleware-user-agent": "npm:3.709.0" - "@aws-sdk/region-config-resolver": "npm:3.709.0" - "@aws-sdk/types": "npm:3.709.0" - "@aws-sdk/util-endpoints": "npm:3.709.0" - "@aws-sdk/util-user-agent-browser": "npm:3.709.0" - "@aws-sdk/util-user-agent-node": "npm:3.712.0" + "@aws-sdk/client-sso-oidc": "npm:3.713.0" + "@aws-sdk/core": "npm:3.713.0" + "@aws-sdk/credential-provider-node": "npm:3.713.0" + "@aws-sdk/middleware-host-header": "npm:3.713.0" + "@aws-sdk/middleware-logger": "npm:3.713.0" + "@aws-sdk/middleware-recursion-detection": "npm:3.713.0" + "@aws-sdk/middleware-user-agent": "npm:3.713.0" + "@aws-sdk/region-config-resolver": "npm:3.713.0" + "@aws-sdk/types": "npm:3.713.0" + "@aws-sdk/util-endpoints": "npm:3.713.0" + "@aws-sdk/util-user-agent-browser": "npm:3.713.0" + "@aws-sdk/util-user-agent-node": "npm:3.713.0" "@smithy/config-resolver": "npm:^3.0.13" "@smithy/core": "npm:^2.5.5" "@smithy/fetch-http-handler": "npm:^4.1.2" @@ -1724,7 +1724,7 @@ __metadata: "@smithy/util-retry": "npm:^3.0.11" "@smithy/util-utf8": "npm:^3.0.0" tslib: "npm:^2.6.2" - checksum: 10c0/21d06234556a98194b07cfeb133b9b89e43021fbcf9bb6b06b87a38d8523fb4ee43a01f4a58a8176bb84fc7fad3131ac780850a80c0685a675f006bdb4db9276 + checksum: 10c0/4d2d48bd056c5f57ed972b46f410b5d887e13f8efda0662abd8248c705bc8137f1b0514996b4449a67fe6314142738948441a7a330c144574f513f4389065e98 languageName: node linkType: hard @@ -1747,11 +1747,11 @@ __metadata: languageName: node linkType: hard -"@aws-sdk/core@npm:3.709.0": - version: 3.709.0 - resolution: "@aws-sdk/core@npm:3.709.0" +"@aws-sdk/core@npm:3.713.0": + version: 3.713.0 + resolution: "@aws-sdk/core@npm:3.713.0" dependencies: - "@aws-sdk/types": "npm:3.709.0" + "@aws-sdk/types": "npm:3.713.0" "@smithy/core": "npm:^2.5.5" "@smithy/node-config-provider": "npm:^3.1.12" "@smithy/property-provider": "npm:^3.1.11" @@ -1762,7 +1762,7 @@ __metadata: "@smithy/util-middleware": "npm:^3.0.11" fast-xml-parser: "npm:4.4.1" tslib: "npm:^2.6.2" - checksum: 10c0/9ae5b510c2376f6fc79a70bb6773408cbcb24e9b686d6efc55b75e791c1fe03079fee18399a006be0441381c67d051d06db758a76c0e7fceb7f65c41dc91154d + checksum: 10c0/81b9d4a8699c532d0c7a73fad9d8d8dae9d86abef1b846bc3d99a470054b415d6878f403c45d23da65b9892455e58486f27dde663719e6b8d660f4fc7f2b92de languageName: node linkType: hard @@ -1792,16 +1792,16 @@ __metadata: languageName: node linkType: hard -"@aws-sdk/credential-provider-env@npm:3.709.0": - version: 3.709.0 - resolution: "@aws-sdk/credential-provider-env@npm:3.709.0" +"@aws-sdk/credential-provider-env@npm:3.713.0": + version: 3.713.0 + resolution: "@aws-sdk/credential-provider-env@npm:3.713.0" dependencies: - "@aws-sdk/core": "npm:3.709.0" - "@aws-sdk/types": "npm:3.709.0" + "@aws-sdk/core": "npm:3.713.0" + "@aws-sdk/types": "npm:3.713.0" "@smithy/property-provider": "npm:^3.1.11" "@smithy/types": "npm:^3.7.2" tslib: "npm:^2.6.2" - checksum: 10c0/e68fc5ba198255754e4e2605bf305790cf82183139971ab152b03f30a2d6316ce64007473639566a14c335f0ca9afca1e0c1dd4df3b88b511ff6fe1745397233 + checksum: 10c0/ad04f21b8ad731dbcb8af6e582c7fce48d16af7a7d9b3d67111b180e8ff3cf0c1a4b4f5d0b716dea6cb9c1ca6348a0ea32dd90b86c7754ccca5ff14233cad6d6 languageName: node linkType: hard @@ -1823,12 +1823,12 @@ __metadata: languageName: node linkType: hard -"@aws-sdk/credential-provider-http@npm:3.709.0": - version: 3.709.0 - resolution: "@aws-sdk/credential-provider-http@npm:3.709.0" +"@aws-sdk/credential-provider-http@npm:3.713.0": + version: 3.713.0 + resolution: "@aws-sdk/credential-provider-http@npm:3.713.0" dependencies: - "@aws-sdk/core": "npm:3.709.0" - "@aws-sdk/types": "npm:3.709.0" + "@aws-sdk/core": "npm:3.713.0" + "@aws-sdk/types": "npm:3.713.0" "@smithy/fetch-http-handler": "npm:^4.1.2" "@smithy/node-http-handler": "npm:^3.3.2" "@smithy/property-provider": "npm:^3.1.11" @@ -1837,7 +1837,7 @@ __metadata: "@smithy/types": "npm:^3.7.2" "@smithy/util-stream": "npm:^3.3.2" tslib: "npm:^2.6.2" - checksum: 10c0/f899cc2810802d3df3efad8a355426cee8313e9391055b1c420223852c6574630036dff0aaae4a2c98963451be77803f4d409174d833d68bb4907390af9ad0cd + checksum: 10c0/339c8b4ac304a8b9ca4d45dc2dda82d52d23a49a15c4d67fa2d2339b5d61f1d111219e60eda423226716755364e5384892432aa5ed9ba76fc5048d66340002c1 languageName: node linkType: hard @@ -1863,25 +1863,25 @@ __metadata: languageName: node linkType: hard -"@aws-sdk/credential-provider-ini@npm:3.712.0": - version: 3.712.0 - resolution: "@aws-sdk/credential-provider-ini@npm:3.712.0" +"@aws-sdk/credential-provider-ini@npm:3.713.0": + version: 3.713.0 + resolution: "@aws-sdk/credential-provider-ini@npm:3.713.0" dependencies: - "@aws-sdk/core": "npm:3.709.0" - "@aws-sdk/credential-provider-env": "npm:3.709.0" - "@aws-sdk/credential-provider-http": "npm:3.709.0" - "@aws-sdk/credential-provider-process": "npm:3.709.0" - "@aws-sdk/credential-provider-sso": "npm:3.712.0" - "@aws-sdk/credential-provider-web-identity": "npm:3.709.0" - "@aws-sdk/types": "npm:3.709.0" + "@aws-sdk/core": "npm:3.713.0" + "@aws-sdk/credential-provider-env": "npm:3.713.0" + "@aws-sdk/credential-provider-http": "npm:3.713.0" + "@aws-sdk/credential-provider-process": "npm:3.713.0" + "@aws-sdk/credential-provider-sso": "npm:3.713.0" + "@aws-sdk/credential-provider-web-identity": "npm:3.713.0" + "@aws-sdk/types": "npm:3.713.0" "@smithy/credential-provider-imds": "npm:^3.2.8" "@smithy/property-provider": "npm:^3.1.11" "@smithy/shared-ini-file-loader": "npm:^3.1.12" "@smithy/types": "npm:^3.7.2" tslib: "npm:^2.6.2" peerDependencies: - "@aws-sdk/client-sts": ^3.712.0 - checksum: 10c0/6dad19252c269425a5beeadf34a0eed0c0ef1e4d47f933707be6fcbd2e8d1a0bdbfec9b0f774a2439c64aa32bb4b0188c865af0916e249635da9870c469ea00c + "@aws-sdk/client-sts": ^3.713.0 + checksum: 10c0/e5fc30be28b884cc0c58b62abcdf3291dc8709bd157a5e7fcd5666340d2b955957966293ad876dbd7bb96f9c66f903cb7ae05c85ef6806031c794240478ca2dd languageName: node linkType: hard @@ -1905,23 +1905,23 @@ __metadata: languageName: node linkType: hard -"@aws-sdk/credential-provider-node@npm:3.712.0": - version: 3.712.0 - resolution: "@aws-sdk/credential-provider-node@npm:3.712.0" +"@aws-sdk/credential-provider-node@npm:3.713.0": + version: 3.713.0 + resolution: "@aws-sdk/credential-provider-node@npm:3.713.0" dependencies: - "@aws-sdk/credential-provider-env": "npm:3.709.0" - "@aws-sdk/credential-provider-http": "npm:3.709.0" - "@aws-sdk/credential-provider-ini": "npm:3.712.0" - "@aws-sdk/credential-provider-process": "npm:3.709.0" - "@aws-sdk/credential-provider-sso": "npm:3.712.0" - "@aws-sdk/credential-provider-web-identity": "npm:3.709.0" - "@aws-sdk/types": "npm:3.709.0" + "@aws-sdk/credential-provider-env": "npm:3.713.0" + "@aws-sdk/credential-provider-http": "npm:3.713.0" + "@aws-sdk/credential-provider-ini": "npm:3.713.0" + "@aws-sdk/credential-provider-process": "npm:3.713.0" + "@aws-sdk/credential-provider-sso": "npm:3.713.0" + "@aws-sdk/credential-provider-web-identity": "npm:3.713.0" + "@aws-sdk/types": "npm:3.713.0" "@smithy/credential-provider-imds": "npm:^3.2.8" "@smithy/property-provider": "npm:^3.1.11" "@smithy/shared-ini-file-loader": "npm:^3.1.12" "@smithy/types": "npm:^3.7.2" tslib: "npm:^2.6.2" - checksum: 10c0/d0c08460c1b7e7bf7f3fd0a41d13ce7a2ad9a35e962721e6a4abdbf5b81b361becaf8549f0d7173d07e146a00c5642819775f53d026a120bf6b630001d0eeecb + checksum: 10c0/66cb4c568d8c5e6973e3a01b0af1900e8ce1e716fe4f91aa9c7a92d4dfbcfefcf8415e445405011c0d7bd7457c72d357d5b83b1e053bcda0f762dd84796d7bbe languageName: node linkType: hard @@ -1939,17 +1939,17 @@ __metadata: languageName: node linkType: hard -"@aws-sdk/credential-provider-process@npm:3.709.0": - version: 3.709.0 - resolution: "@aws-sdk/credential-provider-process@npm:3.709.0" +"@aws-sdk/credential-provider-process@npm:3.713.0": + version: 3.713.0 + resolution: "@aws-sdk/credential-provider-process@npm:3.713.0" dependencies: - "@aws-sdk/core": "npm:3.709.0" - "@aws-sdk/types": "npm:3.709.0" + "@aws-sdk/core": "npm:3.713.0" + "@aws-sdk/types": "npm:3.713.0" "@smithy/property-provider": "npm:^3.1.11" "@smithy/shared-ini-file-loader": "npm:^3.1.12" "@smithy/types": "npm:^3.7.2" tslib: "npm:^2.6.2" - checksum: 10c0/34db091e276fb4f9cde7dd4bb11d3fd6937a7bd30452b6db0b6e6a95a7180a60e3aefd41f5ec0461ee9e2aa6db040e251ec4c4158b30ad6d68da381cef97a487 + checksum: 10c0/8eec7002ea48a70893826c5b226a74a624fa8527db015fc47e4c879cadd4e974f17268e581b0a8eb5cc48b8ce72562ce8b89413576cae5dee0a92432112723f0 languageName: node linkType: hard @@ -1969,19 +1969,19 @@ __metadata: languageName: node linkType: hard -"@aws-sdk/credential-provider-sso@npm:3.712.0": - version: 3.712.0 - resolution: "@aws-sdk/credential-provider-sso@npm:3.712.0" +"@aws-sdk/credential-provider-sso@npm:3.713.0": + version: 3.713.0 + resolution: "@aws-sdk/credential-provider-sso@npm:3.713.0" dependencies: - "@aws-sdk/client-sso": "npm:3.712.0" - "@aws-sdk/core": "npm:3.709.0" - "@aws-sdk/token-providers": "npm:3.709.0" - "@aws-sdk/types": "npm:3.709.0" + "@aws-sdk/client-sso": "npm:3.713.0" + "@aws-sdk/core": "npm:3.713.0" + "@aws-sdk/token-providers": "npm:3.713.0" + "@aws-sdk/types": "npm:3.713.0" "@smithy/property-provider": "npm:^3.1.11" "@smithy/shared-ini-file-loader": "npm:^3.1.12" "@smithy/types": "npm:^3.7.2" tslib: "npm:^2.6.2" - checksum: 10c0/270500bc4a0dd072cc3dbfc49a4f78b1a9b3805a6f50ce21f27363f2c4d4c7c4e9748403c5cdc5739fd56550f6923bb27f665fbe0f400d5107121b3d4a862168 + checksum: 10c0/f2e13aaabe2cb2051cb9a28f42bcb8f2729f92bb35911db0a48dd06c876e53a438564a3e166c1937d754c5db9f8492b18bd788c2887a35b310aa2fadd6361805 languageName: node linkType: hard @@ -2000,18 +2000,18 @@ __metadata: languageName: node linkType: hard -"@aws-sdk/credential-provider-web-identity@npm:3.709.0": - version: 3.709.0 - resolution: "@aws-sdk/credential-provider-web-identity@npm:3.709.0" +"@aws-sdk/credential-provider-web-identity@npm:3.713.0": + version: 3.713.0 + resolution: "@aws-sdk/credential-provider-web-identity@npm:3.713.0" dependencies: - "@aws-sdk/core": "npm:3.709.0" - "@aws-sdk/types": "npm:3.709.0" + "@aws-sdk/core": "npm:3.713.0" + "@aws-sdk/types": "npm:3.713.0" "@smithy/property-provider": "npm:^3.1.11" "@smithy/types": "npm:^3.7.2" tslib: "npm:^2.6.2" peerDependencies: - "@aws-sdk/client-sts": ^3.709.0 - checksum: 10c0/9b81d6f600b01d5c9123d41ae732a1b4667bf70eddf18dbdcc724304f8a66b0a9cd1d87f7e07ccdd6f2172e46c03fd810d518827149bb1605d400ca69ea04993 + "@aws-sdk/client-sts": ^3.713.0 + checksum: 10c0/adba5e6d57a757364c8fcc3bc1b637169d3e3386875caa33cfcff5380f4f10bae5a4818661210c37ace5d077112456145ce7e028ed20851931c6880530f4e5f5 languageName: node linkType: hard @@ -2040,42 +2040,42 @@ __metadata: languageName: node linkType: hard -"@aws-sdk/middleware-bucket-endpoint@npm:3.709.0": - version: 3.709.0 - resolution: "@aws-sdk/middleware-bucket-endpoint@npm:3.709.0" +"@aws-sdk/middleware-bucket-endpoint@npm:3.713.0": + version: 3.713.0 + resolution: "@aws-sdk/middleware-bucket-endpoint@npm:3.713.0" dependencies: - "@aws-sdk/types": "npm:3.709.0" + "@aws-sdk/types": "npm:3.713.0" "@aws-sdk/util-arn-parser": "npm:3.693.0" "@smithy/node-config-provider": "npm:^3.1.12" "@smithy/protocol-http": "npm:^4.1.8" "@smithy/types": "npm:^3.7.2" "@smithy/util-config-provider": "npm:^3.0.0" tslib: "npm:^2.6.2" - checksum: 10c0/c48ea32719bc823baf3c285a7cf9e76fd192428370f558012246f25580eb5eba747a5b23aa827c101abb98867abbaa6c09f3c919d5a7137594b244933e43a789 + checksum: 10c0/4f7d440c8c2bbcc6bc357cde2df490896b3e35e869f71de0eb50f9375793ce9587176a2883945795034bd417d1208cf413031ca0656781b168af80741e3227b3 languageName: node linkType: hard -"@aws-sdk/middleware-expect-continue@npm:3.709.0": - version: 3.709.0 - resolution: "@aws-sdk/middleware-expect-continue@npm:3.709.0" +"@aws-sdk/middleware-expect-continue@npm:3.713.0": + version: 3.713.0 + resolution: "@aws-sdk/middleware-expect-continue@npm:3.713.0" dependencies: - "@aws-sdk/types": "npm:3.709.0" + "@aws-sdk/types": "npm:3.713.0" "@smithy/protocol-http": "npm:^4.1.8" "@smithy/types": "npm:^3.7.2" tslib: "npm:^2.6.2" - checksum: 10c0/359336699eb9e0a6221831b78fa5d52a01741768f48de277b13b68a1b6007d4c69f4597bfb4d4f204db9911ea52d728d88ff9ebb2e9b54e7f2f1d2d10ecb9330 + checksum: 10c0/be4a216e1b37793376d63f5ef05e3a876990d789b441227d3b3d921ca102092f3daa36d09fb80df583df547585e961b67e4e468d653c53c9fa7c4e601030325e languageName: node linkType: hard -"@aws-sdk/middleware-flexible-checksums@npm:3.709.0": - version: 3.709.0 - resolution: "@aws-sdk/middleware-flexible-checksums@npm:3.709.0" +"@aws-sdk/middleware-flexible-checksums@npm:3.713.0": + version: 3.713.0 + resolution: "@aws-sdk/middleware-flexible-checksums@npm:3.713.0" dependencies: "@aws-crypto/crc32": "npm:5.2.0" "@aws-crypto/crc32c": "npm:5.2.0" "@aws-crypto/util": "npm:5.2.0" - "@aws-sdk/core": "npm:3.709.0" - "@aws-sdk/types": "npm:3.709.0" + "@aws-sdk/core": "npm:3.713.0" + "@aws-sdk/types": "npm:3.713.0" "@smithy/is-array-buffer": "npm:^3.0.0" "@smithy/node-config-provider": "npm:^3.1.12" "@smithy/protocol-http": "npm:^4.1.8" @@ -2084,7 +2084,7 @@ __metadata: "@smithy/util-stream": "npm:^3.3.2" "@smithy/util-utf8": "npm:^3.0.0" tslib: "npm:^2.6.2" - checksum: 10c0/d5a44d79c99f4543f87ac4cee8660f75f86c71e15c378952b049721de1d69abb78e3b726b4cd40c5a2ce2e473e4843bcc4f5d198714e4ac649793d289371151f + checksum: 10c0/8090aa78d3750668b44d005581a8a4008ddb0eb4798897e57da8d868ffefa2b51627422bd9c93b3c122affd4b4f923f5372780399c5f17a57b04c5c4bba65c5b languageName: node linkType: hard @@ -2100,26 +2100,26 @@ __metadata: languageName: node linkType: hard -"@aws-sdk/middleware-host-header@npm:3.709.0": - version: 3.709.0 - resolution: "@aws-sdk/middleware-host-header@npm:3.709.0" +"@aws-sdk/middleware-host-header@npm:3.713.0": + version: 3.713.0 + resolution: "@aws-sdk/middleware-host-header@npm:3.713.0" dependencies: - "@aws-sdk/types": "npm:3.709.0" + "@aws-sdk/types": "npm:3.713.0" "@smithy/protocol-http": "npm:^4.1.8" "@smithy/types": "npm:^3.7.2" tslib: "npm:^2.6.2" - checksum: 10c0/0b5b7da73f936946cf6f073ce5635cfaf35e11c58980ef59360c9cdf64a8f6932016db67b2683d64a8be984c19f5aadeb4e9808df7b5c008616c3401b4edc652 + checksum: 10c0/35971ee649d66f0b0c102426b6096a86e88a79f18aa9764bb3d43dd3d1fb9e657ca5ac2afa1fe78448016cce1ab6737bcd1a3f56be6ebe160ed38e2dff448796 languageName: node linkType: hard -"@aws-sdk/middleware-location-constraint@npm:3.709.0": - version: 3.709.0 - resolution: "@aws-sdk/middleware-location-constraint@npm:3.709.0" +"@aws-sdk/middleware-location-constraint@npm:3.713.0": + version: 3.713.0 + resolution: "@aws-sdk/middleware-location-constraint@npm:3.713.0" dependencies: - "@aws-sdk/types": "npm:3.709.0" + "@aws-sdk/types": "npm:3.713.0" "@smithy/types": "npm:^3.7.2" tslib: "npm:^2.6.2" - checksum: 10c0/892f911343954cf098710b279233046db85a37fa81ba0b39b3f03c951e5525ff54e7ff55f1ed010c617ce44d00a5a894ebe89ed3b200b4d52f26e94ae5b03f8a + checksum: 10c0/6e75dfee701bfbdcbd4315c7b1cede91749cea788c1339b2626899ab2d56427587cb4cc95c551b40ed66f4b9b5d0bc39ff6c949185459f89b35d96c421f58f1d languageName: node linkType: hard @@ -2134,14 +2134,14 @@ __metadata: languageName: node linkType: hard -"@aws-sdk/middleware-logger@npm:3.709.0": - version: 3.709.0 - resolution: "@aws-sdk/middleware-logger@npm:3.709.0" +"@aws-sdk/middleware-logger@npm:3.713.0": + version: 3.713.0 + resolution: "@aws-sdk/middleware-logger@npm:3.713.0" dependencies: - "@aws-sdk/types": "npm:3.709.0" + "@aws-sdk/types": "npm:3.713.0" "@smithy/types": "npm:^3.7.2" tslib: "npm:^2.6.2" - checksum: 10c0/324f5d9252d8880aa4cd069a92a2d68cd8ba72d00aeea8628a3071214ea43de3180b5091fc06bd79fe24221bde3e0bec348e9b4978a8a3eaf43b09e159bfb513 + checksum: 10c0/55741d982cd594f33c0877ebf7649dc37f94ad2a3d4ade1c693f0e113582be09fb167cfeb10a82bcf5acedc2e3bd3d024532518657a42f211d3608df2d658413 languageName: node linkType: hard @@ -2157,24 +2157,24 @@ __metadata: languageName: node linkType: hard -"@aws-sdk/middleware-recursion-detection@npm:3.709.0": - version: 3.709.0 - resolution: "@aws-sdk/middleware-recursion-detection@npm:3.709.0" +"@aws-sdk/middleware-recursion-detection@npm:3.713.0": + version: 3.713.0 + resolution: "@aws-sdk/middleware-recursion-detection@npm:3.713.0" dependencies: - "@aws-sdk/types": "npm:3.709.0" + "@aws-sdk/types": "npm:3.713.0" "@smithy/protocol-http": "npm:^4.1.8" "@smithy/types": "npm:^3.7.2" tslib: "npm:^2.6.2" - checksum: 10c0/aa1b049fed68e676905a97b2cdfe7e1faf1839c0296a42ebfce7cb93a9c5d1a63bd96cc1e56fb0339de4d4ab969c1d5e2a1012b6a2ba90b697b1b08e138ede62 + checksum: 10c0/260380d1cc84327b6d47a59743cc254bf4ca6e639c71e7d03a8d2c2e5be3967aff534b0e151aec0bda02a95c5a108aeaff62d4b88943fca3f7b73d507fe04ff5 languageName: node linkType: hard -"@aws-sdk/middleware-sdk-s3@npm:3.709.0": - version: 3.709.0 - resolution: "@aws-sdk/middleware-sdk-s3@npm:3.709.0" +"@aws-sdk/middleware-sdk-s3@npm:3.713.0": + version: 3.713.0 + resolution: "@aws-sdk/middleware-sdk-s3@npm:3.713.0" dependencies: - "@aws-sdk/core": "npm:3.709.0" - "@aws-sdk/types": "npm:3.709.0" + "@aws-sdk/core": "npm:3.713.0" + "@aws-sdk/types": "npm:3.713.0" "@aws-sdk/util-arn-parser": "npm:3.693.0" "@smithy/core": "npm:^2.5.5" "@smithy/node-config-provider": "npm:^3.1.12" @@ -2187,18 +2187,18 @@ __metadata: "@smithy/util-stream": "npm:^3.3.2" "@smithy/util-utf8": "npm:^3.0.0" tslib: "npm:^2.6.2" - checksum: 10c0/a41bc462cd6526c332cab4408e37eed2d7ee56888d860b452c2a08eafbe850f1590bae1c6dba83c76de2a89c01a8452bcc64369c0d3a76f3409ef0a0a82bd915 + checksum: 10c0/7f2e7359ff94ab2373cafb7868a0ee8bd6161ab800b29cb2ec89c32b286b499fe84e0de4a7275a23db1dd7b01577426191765bd13f9c3fbd38acc41d28731dda languageName: node linkType: hard -"@aws-sdk/middleware-ssec@npm:3.709.0": - version: 3.709.0 - resolution: "@aws-sdk/middleware-ssec@npm:3.709.0" +"@aws-sdk/middleware-ssec@npm:3.713.0": + version: 3.713.0 + resolution: "@aws-sdk/middleware-ssec@npm:3.713.0" dependencies: - "@aws-sdk/types": "npm:3.709.0" + "@aws-sdk/types": "npm:3.713.0" "@smithy/types": "npm:^3.7.2" tslib: "npm:^2.6.2" - checksum: 10c0/9880f03e0ad713ac6583795a5bbf90b2379f54c52610b1142edd7cd94a78c6bfe2a8c97316bb1f6043fb13f10b08fc6aebe6c909ac732c94b7b1d4db217cab9d + checksum: 10c0/ccfc76cfbf8d9fa0e44272e1afba62bef60d44b098cdc3dd7248a1c692a411c905491d7f1cec51206064d71f3a56f294acdbc9cbba36aac01a9010170850e9f5 languageName: node linkType: hard @@ -2217,18 +2217,18 @@ __metadata: languageName: node linkType: hard -"@aws-sdk/middleware-user-agent@npm:3.709.0": - version: 3.709.0 - resolution: "@aws-sdk/middleware-user-agent@npm:3.709.0" +"@aws-sdk/middleware-user-agent@npm:3.713.0": + version: 3.713.0 + resolution: "@aws-sdk/middleware-user-agent@npm:3.713.0" dependencies: - "@aws-sdk/core": "npm:3.709.0" - "@aws-sdk/types": "npm:3.709.0" - "@aws-sdk/util-endpoints": "npm:3.709.0" + "@aws-sdk/core": "npm:3.713.0" + "@aws-sdk/types": "npm:3.713.0" + "@aws-sdk/util-endpoints": "npm:3.713.0" "@smithy/core": "npm:^2.5.5" "@smithy/protocol-http": "npm:^4.1.8" "@smithy/types": "npm:^3.7.2" tslib: "npm:^2.6.2" - checksum: 10c0/cb788870ae6cced748f931e05021cb03f14d16f1d843beb47ea3e52f93e14a1d2c5aef2d177d8bbc6fc1a63754b1de3fb713931a0f996b7626ab796fa9ad8eba + checksum: 10c0/5b7b7195b52d5c0577eb0f482b0c177d49d243e672909b2d6daeff07d521e8a9ff13e3ddb16da2e321ce4582ca2624683c0443b99752ee242b9bb5d22b70d049 languageName: node linkType: hard @@ -2256,64 +2256,64 @@ __metadata: languageName: node linkType: hard -"@aws-sdk/region-config-resolver@npm:3.709.0": - version: 3.709.0 - resolution: "@aws-sdk/region-config-resolver@npm:3.709.0" +"@aws-sdk/region-config-resolver@npm:3.713.0": + version: 3.713.0 + resolution: "@aws-sdk/region-config-resolver@npm:3.713.0" dependencies: - "@aws-sdk/types": "npm:3.709.0" + "@aws-sdk/types": "npm:3.713.0" "@smithy/node-config-provider": "npm:^3.1.12" "@smithy/types": "npm:^3.7.2" "@smithy/util-config-provider": "npm:^3.0.0" "@smithy/util-middleware": "npm:^3.0.11" tslib: "npm:^2.6.2" - checksum: 10c0/f42e2cb8c23f6600b06a4bbba128c2ffd3bc764b8e942ef2cc607cef55e679ab6a2ab9d2655eb72cf08749982992a7a1a3957a034d8f38ddad1da5e39b6cb8b4 + checksum: 10c0/3ac503ed36b0af1dcbccaa42923ab0b1f1dbb99748eb0404537d684da880f9c1234abcce4594cdef9551d6ca4dc99d721274b1b84ff812f912018db36ce33974 languageName: node linkType: hard -"@aws-sdk/s3-presigned-post@npm:3.712.0": - version: 3.712.0 - resolution: "@aws-sdk/s3-presigned-post@npm:3.712.0" +"@aws-sdk/s3-presigned-post@npm:3.713.0": + version: 3.713.0 + resolution: "@aws-sdk/s3-presigned-post@npm:3.713.0" dependencies: - "@aws-sdk/client-s3": "npm:3.712.0" - "@aws-sdk/types": "npm:3.709.0" - "@aws-sdk/util-format-url": "npm:3.709.0" + "@aws-sdk/client-s3": "npm:3.713.0" + "@aws-sdk/types": "npm:3.713.0" + "@aws-sdk/util-format-url": "npm:3.713.0" "@smithy/middleware-endpoint": "npm:^3.2.5" "@smithy/signature-v4": "npm:^4.2.4" "@smithy/types": "npm:^3.7.2" "@smithy/util-hex-encoding": "npm:^3.0.0" "@smithy/util-utf8": "npm:^3.0.0" tslib: "npm:^2.6.2" - checksum: 10c0/e132c48d320d3a1e670ffdc9044dec2ae00fdc1033d617dd2251fe94997b48fd1928a0e92dedfffa90faaee9682db43e808f34e32ac56c842b68cafdefb2a39a + checksum: 10c0/0230822865035e6d5b4373d07b17802152294b194eba64f60364c06c38723af08c986514523ab784d8c56607dffc18b0e08baca6637795b0aac9cfd186320fa3 languageName: node linkType: hard -"@aws-sdk/s3-request-presigner@npm:3.712.0": - version: 3.712.0 - resolution: "@aws-sdk/s3-request-presigner@npm:3.712.0" +"@aws-sdk/s3-request-presigner@npm:3.713.0": + version: 3.713.0 + resolution: "@aws-sdk/s3-request-presigner@npm:3.713.0" dependencies: - "@aws-sdk/signature-v4-multi-region": "npm:3.709.0" - "@aws-sdk/types": "npm:3.709.0" - "@aws-sdk/util-format-url": "npm:3.709.0" + "@aws-sdk/signature-v4-multi-region": "npm:3.713.0" + "@aws-sdk/types": "npm:3.713.0" + "@aws-sdk/util-format-url": "npm:3.713.0" "@smithy/middleware-endpoint": "npm:^3.2.5" "@smithy/protocol-http": "npm:^4.1.8" "@smithy/smithy-client": "npm:^3.5.0" "@smithy/types": "npm:^3.7.2" tslib: "npm:^2.6.2" - checksum: 10c0/f66ea1850951609c0cb2c62f7ff4c9269268fd0065bc3bfc077369ce3de431eac7c8f07c100b992155989313ba0663c543b96d3a7c1c17a515e05d167b922c05 + checksum: 10c0/a4320c480c5204c0929a6c97e9bdcf7f27803c5b8dd6e628f6b984f9ba6b39ecefccc97eec7d0859e665799fc5c422b3c5f64fae3e29b6de53b087a1a78676ab languageName: node linkType: hard -"@aws-sdk/signature-v4-multi-region@npm:3.709.0": - version: 3.709.0 - resolution: "@aws-sdk/signature-v4-multi-region@npm:3.709.0" +"@aws-sdk/signature-v4-multi-region@npm:3.713.0": + version: 3.713.0 + resolution: "@aws-sdk/signature-v4-multi-region@npm:3.713.0" dependencies: - "@aws-sdk/middleware-sdk-s3": "npm:3.709.0" - "@aws-sdk/types": "npm:3.709.0" + "@aws-sdk/middleware-sdk-s3": "npm:3.713.0" + "@aws-sdk/types": "npm:3.713.0" "@smithy/protocol-http": "npm:^4.1.8" "@smithy/signature-v4": "npm:^4.2.4" "@smithy/types": "npm:^3.7.2" tslib: "npm:^2.6.2" - checksum: 10c0/4acbe987bdf00ff6cb637e373a3fa766203eed953932ee311bbb3240c0350d3e52cbfdfa8fe2ec5d7c5d2d68bdf7b6e05c28579c54a87bed101ea34b12f32ce2 + checksum: 10c0/0ca8b8e7b846475b7642bae0a63f1ac2b45ea50cdb45ed6960fbbd9fc149a6babe0c31068962fb5535248a5ed29fce3dd8794805d35879f1182a64029d5a5099 languageName: node linkType: hard @@ -2342,18 +2342,18 @@ __metadata: languageName: node linkType: hard -"@aws-sdk/token-providers@npm:3.709.0": - version: 3.709.0 - resolution: "@aws-sdk/token-providers@npm:3.709.0" +"@aws-sdk/token-providers@npm:3.713.0": + version: 3.713.0 + resolution: "@aws-sdk/token-providers@npm:3.713.0" dependencies: - "@aws-sdk/types": "npm:3.709.0" + "@aws-sdk/types": "npm:3.713.0" "@smithy/property-provider": "npm:^3.1.11" "@smithy/shared-ini-file-loader": "npm:^3.1.12" "@smithy/types": "npm:^3.7.2" tslib: "npm:^2.6.2" peerDependencies: - "@aws-sdk/client-sso-oidc": ^3.709.0 - checksum: 10c0/17fb682004a1b90f4190b8c09372ce565f390118c03afdde8ed5ffd6f25354a7d9c18d3970eaa1e6a25992dbfef128cee5b4b040c8d4d281d22e507c0582c502 + "@aws-sdk/client-sso-oidc": ^3.713.0 + checksum: 10c0/09c83c31ef0f96526586aeefcb2935cd004a2f366cf3b4b117db38de8651f9d4f6c09e05c95b5849510e22c49a70b4d63156ccb457dd7cc221a0b3082daab96e languageName: node linkType: hard @@ -2367,13 +2367,13 @@ __metadata: languageName: node linkType: hard -"@aws-sdk/types@npm:3.709.0, @aws-sdk/types@npm:^3.222.0": - version: 3.709.0 - resolution: "@aws-sdk/types@npm:3.709.0" +"@aws-sdk/types@npm:3.713.0, @aws-sdk/types@npm:^3.222.0": + version: 3.713.0 + resolution: "@aws-sdk/types@npm:3.713.0" dependencies: "@smithy/types": "npm:^3.7.2" tslib: "npm:^2.6.2" - checksum: 10c0/332884276344189e53d7044e27b9d6ec89fe1f06cdbd24afafcfc08c817a54ccf8b74312aa866895caae18a8f3a8d985a5afdf8553d90843998866b86acebacf + checksum: 10c0/1e3f7b29a7a8af57a50539f014ceda9d2322d3ae89e83785ab19304065dd022b4ed28ed6502591c2c30bce36c393953e8e08e595028bc8c6b5c07332309c8efc languageName: node linkType: hard @@ -2398,27 +2398,27 @@ __metadata: languageName: node linkType: hard -"@aws-sdk/util-endpoints@npm:3.709.0": - version: 3.709.0 - resolution: "@aws-sdk/util-endpoints@npm:3.709.0" +"@aws-sdk/util-endpoints@npm:3.713.0": + version: 3.713.0 + resolution: "@aws-sdk/util-endpoints@npm:3.713.0" dependencies: - "@aws-sdk/types": "npm:3.709.0" + "@aws-sdk/types": "npm:3.713.0" "@smithy/types": "npm:^3.7.2" "@smithy/util-endpoints": "npm:^2.1.7" tslib: "npm:^2.6.2" - checksum: 10c0/946449c2ebb209cd9fb784e5a1dcb005f4249b41c9f6025cb6f5677bf0e884b6a791976926fa768b529376dabbde807eed4161573d06dea4dff125549052bdcc + checksum: 10c0/efb08ee259ecddb3308dc5c80b5744275ca330d4f60872303b4c18448bd2b3c6e4842dcb5fd6848f08e81d18edcee3d4ed1c09631aa2e1c59d753d483ba7b041 languageName: node linkType: hard -"@aws-sdk/util-format-url@npm:3.709.0": - version: 3.709.0 - resolution: "@aws-sdk/util-format-url@npm:3.709.0" +"@aws-sdk/util-format-url@npm:3.713.0": + version: 3.713.0 + resolution: "@aws-sdk/util-format-url@npm:3.713.0" dependencies: - "@aws-sdk/types": "npm:3.709.0" + "@aws-sdk/types": "npm:3.713.0" "@smithy/querystring-builder": "npm:^3.0.11" "@smithy/types": "npm:^3.7.2" tslib: "npm:^2.6.2" - checksum: 10c0/a3164289780bb147583ff1f755c0d60b9401e680ff2790c1661be88f40fe94ee7975b5d82c496d6a41e560e3f14ec5e319d44971f3adfaba431d734c55528d98 + checksum: 10c0/7a20c29fff592a60003354bceb83020b25d14a630f3ef5b55a48c6b356afc8daa58f8891c8da7e46284235dac5cdd96f4356e560c2ef879776804652930a8f12 languageName: node linkType: hard @@ -2443,15 +2443,15 @@ __metadata: languageName: node linkType: hard -"@aws-sdk/util-user-agent-browser@npm:3.709.0": - version: 3.709.0 - resolution: "@aws-sdk/util-user-agent-browser@npm:3.709.0" +"@aws-sdk/util-user-agent-browser@npm:3.713.0": + version: 3.713.0 + resolution: "@aws-sdk/util-user-agent-browser@npm:3.713.0" dependencies: - "@aws-sdk/types": "npm:3.709.0" + "@aws-sdk/types": "npm:3.713.0" "@smithy/types": "npm:^3.7.2" bowser: "npm:^2.11.0" tslib: "npm:^2.6.2" - checksum: 10c0/28b12c8f5dab6d3f78f7108aeffd8173d2e3ff7738f20ce9ab8e4c2d0e628bdf15cff31466a58bbe0904dd04008e4f4def9db7bf67c59e9cfd6c06d30e9000a7 + checksum: 10c0/b39158ec4716d3be25db436668b657f63e2d728743f3b2390bb70663690c25be928094c3fdf42b12983d76f79b988654d07b65010ef9d598e98d7a8343659f98 languageName: node linkType: hard @@ -2473,12 +2473,12 @@ __metadata: languageName: node linkType: hard -"@aws-sdk/util-user-agent-node@npm:3.712.0": - version: 3.712.0 - resolution: "@aws-sdk/util-user-agent-node@npm:3.712.0" +"@aws-sdk/util-user-agent-node@npm:3.713.0": + version: 3.713.0 + resolution: "@aws-sdk/util-user-agent-node@npm:3.713.0" dependencies: - "@aws-sdk/middleware-user-agent": "npm:3.709.0" - "@aws-sdk/types": "npm:3.709.0" + "@aws-sdk/middleware-user-agent": "npm:3.713.0" + "@aws-sdk/types": "npm:3.713.0" "@smithy/node-config-provider": "npm:^3.1.12" "@smithy/types": "npm:^3.7.2" tslib: "npm:^2.6.2" @@ -2487,7 +2487,7 @@ __metadata: peerDependenciesMeta: aws-crt: optional: true - checksum: 10c0/3ab1b713e3a25b1673b263ba163369457a7520f0d133e8e614006f44634f58e0823331d4f672bb177f2c797c630d91b70cc3044a03b8ed141b9cdb84704fb48b + checksum: 10c0/e392c461c87a9da2bb688d3d1758cd7cac505417e00401d7d24804d4ce8b6f5b8fd6894e5fb9191e6cc194ce1bb564b6b0d52e6b8a8facce815b0924ce0d0028 languageName: node linkType: hard @@ -9078,8 +9078,8 @@ __metadata: version: 0.0.0-use.local resolution: "@local/hash-backend-utils@workspace:libs/@local/hash-backend-utils" dependencies: - "@aws-sdk/client-s3": "npm:3.712.0" - "@aws-sdk/s3-request-presigner": "npm:3.712.0" + "@aws-sdk/client-s3": "npm:3.713.0" + "@aws-sdk/s3-request-presigner": "npm:3.713.0" "@blockprotocol/core": "npm:0.1.3" "@blockprotocol/graph": "npm:0.4.0-canary.0" "@blockprotocol/type-system": "npm:0.1.2-canary.0" From 1e3429bc9c01da7437795fb307fe42d678c6dece Mon Sep 17 00:00:00 2001 From: "hash-worker[bot]" <180894564+hash-worker[bot]@users.noreply.github.com> Date: Tue, 17 Dec 2024 00:48:11 +0000 Subject: [PATCH 020/159] Update Font Awesome to v6.7.2 (#5924) Co-authored-by: hash-worker[bot] <180894564+hash-worker[bot]@users.noreply.github.com> --- apps/hash-frontend/package.json | 4 +- apps/hashdotdev/package.json | 2 +- blocks/address/package.json | 4 +- libs/@hashintel/design-system/package.json | 4 +- libs/@hashintel/query-editor/package.json | 4 +- libs/@hashintel/type-editor/package.json | 4 +- yarn.lock | 50 +++++++++++----------- 7 files changed, 36 insertions(+), 36 deletions(-) diff --git a/apps/hash-frontend/package.json b/apps/hash-frontend/package.json index a67a7dd4034..1abd035fe26 100644 --- a/apps/hash-frontend/package.json +++ b/apps/hash-frontend/package.json @@ -30,8 +30,8 @@ "@emotion/react": "11.14.0", "@emotion/server": "11.11.0", "@emotion/styled": "11.14.0", - "@fortawesome/free-regular-svg-icons": "6.7.1", - "@fortawesome/free-solid-svg-icons": "6.7.1", + "@fortawesome/free-regular-svg-icons": "6.7.2", + "@fortawesome/free-solid-svg-icons": "6.7.2", "@glideapps/glide-data-grid": "patch:@glideapps/glide-data-grid@npm%3A6.0.3#~/.yarn/patches/@glideapps-glide-data-grid-npm-6.0.3-f71d586425.patch", "@hashintel/block-design-system": "0.0.2", "@hashintel/design-system": "0.0.8", diff --git a/apps/hashdotdev/package.json b/apps/hashdotdev/package.json index af387213142..f947792f6de 100644 --- a/apps/hashdotdev/package.json +++ b/apps/hashdotdev/package.json @@ -24,7 +24,7 @@ "@emotion/react": "11.14.0", "@emotion/server": "11.11.0", "@emotion/styled": "11.14.0", - "@fortawesome/free-solid-svg-icons": "6.7.1", + "@fortawesome/free-solid-svg-icons": "6.7.2", "@matejmazur/react-katex": "3.1.3", "@mui/icons-material": "5.16.11", "@mui/material": "5.16.11", diff --git a/blocks/address/package.json b/blocks/address/package.json index 5c4ad5ededb..4fbe99490de 100644 --- a/blocks/address/package.json +++ b/blocks/address/package.json @@ -33,8 +33,8 @@ "dependencies": { "@blockprotocol/graph": "0.3.4", "@blockprotocol/service": "0.1.4", - "@fortawesome/free-regular-svg-icons": "6.7.1", - "@fortawesome/free-solid-svg-icons": "6.7.1", + "@fortawesome/free-regular-svg-icons": "6.7.2", + "@fortawesome/free-solid-svg-icons": "6.7.2", "@hashintel/block-design-system": "0.0.2", "@hashintel/design-system": "0.0.8", "@mui/material": "5.16.11", diff --git a/libs/@hashintel/design-system/package.json b/libs/@hashintel/design-system/package.json index 4c2ecc41bbc..36ef432c97b 100644 --- a/libs/@hashintel/design-system/package.json +++ b/libs/@hashintel/design-system/package.json @@ -43,8 +43,8 @@ "dependencies": { "@blockprotocol/graph": "0.4.0-canary.0", "@blockprotocol/type-system": "0.1.2-canary.0", - "@fortawesome/free-regular-svg-icons": "6.7.1", - "@fortawesome/free-solid-svg-icons": "6.7.1", + "@fortawesome/free-regular-svg-icons": "6.7.2", + "@fortawesome/free-solid-svg-icons": "6.7.2", "@local/hash-isomorphic-utils": "0.0.0-private", "clsx": "1.2.1", "echarts": "5.5.1", diff --git a/libs/@hashintel/query-editor/package.json b/libs/@hashintel/query-editor/package.json index 3ec19ab1057..85aa2c762df 100644 --- a/libs/@hashintel/query-editor/package.json +++ b/libs/@hashintel/query-editor/package.json @@ -22,8 +22,8 @@ "dependencies": { "@blockprotocol/graph": "0.4.0-canary.0", "@blockprotocol/type-system": "0.1.2-canary.0", - "@fortawesome/free-regular-svg-icons": "6.7.1", - "@fortawesome/free-solid-svg-icons": "6.7.1", + "@fortawesome/free-regular-svg-icons": "6.7.2", + "@fortawesome/free-solid-svg-icons": "6.7.2", "@hashintel/design-system": "0.0.8", "clsx": "1.2.1" }, diff --git a/libs/@hashintel/type-editor/package.json b/libs/@hashintel/type-editor/package.json index c26dcba26ef..1ca8711b90f 100644 --- a/libs/@hashintel/type-editor/package.json +++ b/libs/@hashintel/type-editor/package.json @@ -22,8 +22,8 @@ "dependencies": { "@blockprotocol/graph": "0.4.0-canary.0", "@blockprotocol/type-system": "0.1.2-canary.0", - "@fortawesome/free-regular-svg-icons": "6.7.1", - "@fortawesome/free-solid-svg-icons": "6.7.1", + "@fortawesome/free-regular-svg-icons": "6.7.2", + "@fortawesome/free-solid-svg-icons": "6.7.2", "@hashintel/design-system": "0.0.8", "@local/hash-isomorphic-utils": "0.0.0-private", "@local/hash-subgraph": "0.0.0-private", diff --git a/yarn.lock b/yarn.lock index f9810039b56..0e87ca9cc1a 100644 --- a/yarn.lock +++ b/yarn.lock @@ -478,8 +478,8 @@ __metadata: "@emotion/react": "npm:11.14.0" "@emotion/server": "npm:11.11.0" "@emotion/styled": "npm:11.14.0" - "@fortawesome/free-regular-svg-icons": "npm:6.7.1" - "@fortawesome/free-solid-svg-icons": "npm:6.7.1" + "@fortawesome/free-regular-svg-icons": "npm:6.7.2" + "@fortawesome/free-solid-svg-icons": "npm:6.7.2" "@glideapps/glide-data-grid": "patch:@glideapps/glide-data-grid@npm%3A6.0.3#~/.yarn/patches/@glideapps-glide-data-grid-npm-6.0.3-f71d586425.patch" "@graphql-codegen/cli": "npm:^5.0.3" "@graphql-codegen/fragment-matcher": "npm:3.3.3" @@ -731,7 +731,7 @@ __metadata: "@emotion/react": "npm:11.14.0" "@emotion/server": "npm:11.11.0" "@emotion/styled": "npm:11.14.0" - "@fortawesome/free-solid-svg-icons": "npm:6.7.1" + "@fortawesome/free-solid-svg-icons": "npm:6.7.2" "@local/eslint": "npm:0.0.0-private" "@local/tsconfig": "npm:0.0.0-private" "@matejmazur/react-katex": "npm:3.1.3" @@ -4620,8 +4620,8 @@ __metadata: dependencies: "@blockprotocol/graph": "npm:0.3.4" "@blockprotocol/service": "npm:0.1.4" - "@fortawesome/free-regular-svg-icons": "npm:6.7.1" - "@fortawesome/free-solid-svg-icons": "npm:6.7.1" + "@fortawesome/free-regular-svg-icons": "npm:6.7.2" + "@fortawesome/free-solid-svg-icons": "npm:6.7.2" "@hashintel/block-design-system": "npm:0.0.2" "@hashintel/design-system": "npm:0.0.8" "@local/eslint": "npm:0.0.0-private" @@ -6778,28 +6778,28 @@ __metadata: languageName: node linkType: hard -"@fortawesome/fontawesome-common-types@npm:6.7.1": - version: 6.7.1 - resolution: "@fortawesome/fontawesome-common-types@npm:6.7.1" - checksum: 10c0/0345b896ad8df26fb823893ce0a405dd513e9ef34878dd7b94fbbbabe370379bf680a32199bcaaf7346acbcd2a10bf0072e305829b49e5d9b0bf1c5315d07c96 +"@fortawesome/fontawesome-common-types@npm:6.7.2": + version: 6.7.2 + resolution: "@fortawesome/fontawesome-common-types@npm:6.7.2" + checksum: 10c0/0785df560542d9c08a0ba07bb7a39902274a3cd65c018672eb2520a99efccce18bdb7f7f4b1c6089763bc5627bf0f0837c3af963a8427eaeb535bd57c820a723 languageName: node linkType: hard -"@fortawesome/free-regular-svg-icons@npm:6.7.1": - version: 6.7.1 - resolution: "@fortawesome/free-regular-svg-icons@npm:6.7.1" +"@fortawesome/free-regular-svg-icons@npm:6.7.2": + version: 6.7.2 + resolution: "@fortawesome/free-regular-svg-icons@npm:6.7.2" dependencies: - "@fortawesome/fontawesome-common-types": "npm:6.7.1" - checksum: 10c0/6d770622cd6519835d8557a0a562c5f2f877527bb65671a6136a558ce61024bf7baaeb8e29420f29da4893b815c3af8173c6f45064bbcc040db613998d77502e + "@fortawesome/fontawesome-common-types": "npm:6.7.2" + checksum: 10c0/3a334cb0c837170f7b14759ddc8ef2a821b8d2c59b23a7b852d7e3fb16b066dd5fe8649e47bc1ef91764c78a78f51d1c0c8c5b8567e1680eeb21e8afdc70f5f7 languageName: node linkType: hard -"@fortawesome/free-solid-svg-icons@npm:6.7.1": - version: 6.7.1 - resolution: "@fortawesome/free-solid-svg-icons@npm:6.7.1" +"@fortawesome/free-solid-svg-icons@npm:6.7.2": + version: 6.7.2 + resolution: "@fortawesome/free-solid-svg-icons@npm:6.7.2" dependencies: - "@fortawesome/fontawesome-common-types": "npm:6.7.1" - checksum: 10c0/9b6e6ba383dfc456020b77a600edcccaf8131ebd472038bd6b6f2425f011c8c63c0a6049d798dc120512b9c5332043eb46bb815d9d55c56ebdf8ecc94afb0184 + "@fortawesome/fontawesome-common-types": "npm:6.7.2" + checksum: 10c0/e900f3bb7b7d821421f11439ff78cd2b3c98ca31e848e1afebf7caa578d29a31fb6cf8ef283d4df342de777126a71fcbb154dd395b9d9ab6914a40a86df81413 languageName: node linkType: hard @@ -7864,8 +7864,8 @@ __metadata: "@emotion/cache": "npm:11.14.0" "@emotion/react": "npm:11.14.0" "@emotion/styled": "npm:11.14.0" - "@fortawesome/free-regular-svg-icons": "npm:6.7.1" - "@fortawesome/free-solid-svg-icons": "npm:6.7.1" + "@fortawesome/free-regular-svg-icons": "npm:6.7.2" + "@fortawesome/free-solid-svg-icons": "npm:6.7.2" "@local/eslint": "npm:0.0.0-private" "@local/hash-isomorphic-utils": "npm:0.0.0-private" "@local/tsconfig": "npm:0.0.0-private" @@ -7899,8 +7899,8 @@ __metadata: dependencies: "@blockprotocol/graph": "npm:0.4.0-canary.0" "@blockprotocol/type-system": "npm:0.1.2-canary.0" - "@fortawesome/free-regular-svg-icons": "npm:6.7.1" - "@fortawesome/free-solid-svg-icons": "npm:6.7.1" + "@fortawesome/free-regular-svg-icons": "npm:6.7.2" + "@fortawesome/free-solid-svg-icons": "npm:6.7.2" "@hashintel/design-system": "npm:0.0.8" "@local/eslint": "npm:0.0.0-private" "@mui/material": "npm:5.16.11" @@ -7927,8 +7927,8 @@ __metadata: dependencies: "@blockprotocol/graph": "npm:0.4.0-canary.0" "@blockprotocol/type-system": "npm:0.1.2-canary.0" - "@fortawesome/free-regular-svg-icons": "npm:6.7.1" - "@fortawesome/free-solid-svg-icons": "npm:6.7.1" + "@fortawesome/free-regular-svg-icons": "npm:6.7.2" + "@fortawesome/free-solid-svg-icons": "npm:6.7.2" "@hashintel/design-system": "npm:0.0.8" "@local/eslint": "npm:0.0.0-private" "@local/hash-isomorphic-utils": "npm:0.0.0-private" From c3f22f445a7286c8ae822930c69a58101bc96fd4 Mon Sep 17 00:00:00 2001 From: "hash-worker[bot]" <180894564+hash-worker[bot]@users.noreply.github.com> Date: Tue, 17 Dec 2024 00:51:29 +0000 Subject: [PATCH 021/159] Update GitHub Action `taiki-e/install-action` to v2.46.11 (#5925) Co-authored-by: hash-worker[bot] <180894564+hash-worker[bot]@users.noreply.github.com> --- .github/actions/warm-up-repo/action.yml | 2 +- .github/workflows/bench.yml | 4 ++-- .github/workflows/lint.yml | 2 +- .github/workflows/test.yml | 4 ++-- 4 files changed, 6 insertions(+), 6 deletions(-) diff --git a/.github/actions/warm-up-repo/action.yml b/.github/actions/warm-up-repo/action.yml index 8f21185f5a3..d2ffef8ee8c 100644 --- a/.github/actions/warm-up-repo/action.yml +++ b/.github/actions/warm-up-repo/action.yml @@ -17,7 +17,7 @@ runs: # cache: yarn ## Currently disabled because of frequent timeouts - name: Install WASM tools - uses: taiki-e/install-action@e523301c9af289ba196edd3ab08abdece06107d2 # v2.46.9 + uses: taiki-e/install-action@ed8c79bccf0b1cb1544a358f81684d3acaa5133f # v2.46.11 with: tool: wasm-pack@0.12.1 diff --git a/.github/workflows/bench.yml b/.github/workflows/bench.yml index 40315237295..0a14a2f4f11 100644 --- a/.github/workflows/bench.yml +++ b/.github/workflows/bench.yml @@ -99,7 +99,7 @@ jobs: - name: Install Rust tools if: steps.benches.outputs.has-rust == 'true' - uses: taiki-e/install-action@e523301c9af289ba196edd3ab08abdece06107d2 # v2.46.9 + uses: taiki-e/install-action@ed8c79bccf0b1cb1544a358f81684d3acaa5133f # v2.46.11 with: tool: just@1.34.0,critcmp@0.1.8 @@ -251,7 +251,7 @@ jobs: - name: Install Rust tools if: steps.benches.outputs.has-rust == 'true' - uses: taiki-e/install-action@e523301c9af289ba196edd3ab08abdece06107d2 # v2.46.9 + uses: taiki-e/install-action@ed8c79bccf0b1cb1544a358f81684d3acaa5133f # v2.46.11 with: tool: just@1.34.0,critcmp@0.1.8 diff --git a/.github/workflows/lint.yml b/.github/workflows/lint.yml index 613a46bb541..8f29e8e0e37 100644 --- a/.github/workflows/lint.yml +++ b/.github/workflows/lint.yml @@ -111,7 +111,7 @@ jobs: - name: Install Rust tools if: always() && steps.lints.outputs.has-rust == 'true' - uses: taiki-e/install-action@e523301c9af289ba196edd3ab08abdece06107d2 # v2.46.9 + uses: taiki-e/install-action@ed8c79bccf0b1cb1544a358f81684d3acaa5133f # v2.46.11 with: tool: just@1.34.0,cargo-hack@0.6.30,clippy-sarif@0.6.5,sarif-fmt@0.6.5 diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index 06fb0a11fed..c89b56d2fc9 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -163,7 +163,7 @@ jobs: - name: Install Rust tools if: always() && steps.tests.outputs.has-rust == 'true' - uses: taiki-e/install-action@e523301c9af289ba196edd3ab08abdece06107d2 # v2.46.9 + uses: taiki-e/install-action@ed8c79bccf0b1cb1544a358f81684d3acaa5133f # v2.46.11 with: tool: just@1.34.0,cargo-hack@0.6.30,cargo-nextest@0.9.72,cargo-llvm-cov@0.6.11 @@ -281,7 +281,7 @@ jobs: - name: Install Rust tools if: steps.tests.outputs.has-rust == 'true' - uses: taiki-e/install-action@e523301c9af289ba196edd3ab08abdece06107d2 # v2.46.9 + uses: taiki-e/install-action@ed8c79bccf0b1cb1544a358f81684d3acaa5133f # v2.46.11 with: tool: just@1.34.0,cargo-hack@0.6.30,cargo-nextest@0.9.72,cargo-llvm-cov@0.6.11 From 8f4aa630428be55934658551352f88403b62dfa2 Mon Sep 17 00:00:00 2001 From: "hash-worker[bot]" <180894564+hash-worker[bot]@users.noreply.github.com> Date: Tue, 17 Dec 2024 01:14:52 +0000 Subject: [PATCH 022/159] Update GitHub Action `docker/setup-buildx-action` to v3.8.0 (#5928) Co-authored-by: hash-worker[bot] <180894564+hash-worker[bot]@users.noreply.github.com> --- .github/actions/build-docker-images/action.yml | 2 +- .github/actions/docker-ecr-login/action.yml | 2 +- .github/actions/load-docker-images/action.yml | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/actions/build-docker-images/action.yml b/.github/actions/build-docker-images/action.yml index 4f0fcd5ab9b..379e6dac6b7 100644 --- a/.github/actions/build-docker-images/action.yml +++ b/.github/actions/build-docker-images/action.yml @@ -53,7 +53,7 @@ runs: echo "GRAPH_PROFILE=$GRAPH_PROFILE" >> $GITHUB_ENV - name: Set up Docker Buildx - uses: docker/setup-buildx-action@c47758b77c9736f4b2ef4073d4d51994fabfe349 # v3.7.1 + uses: docker/setup-buildx-action@6524bf65af31da8d45b59e8c27de4bd072b392f5 # v3.8.0 - name: Login to GitHub Container Registry uses: docker/login-action@9780b0c442fbb1117ed29e0efdff1e18412f7567 # v3.3.0 diff --git a/.github/actions/docker-ecr-login/action.yml b/.github/actions/docker-ecr-login/action.yml index 3462362813d..0efdc8a68ca 100644 --- a/.github/actions/docker-ecr-login/action.yml +++ b/.github/actions/docker-ecr-login/action.yml @@ -33,4 +33,4 @@ runs: # Configure Docker with Buildx - name: Set up Docker Buildx - uses: docker/setup-buildx-action@c47758b77c9736f4b2ef4073d4d51994fabfe349 # v3.7.1 + uses: docker/setup-buildx-action@6524bf65af31da8d45b59e8c27de4bd072b392f5 # v3.8.0 diff --git a/.github/actions/load-docker-images/action.yml b/.github/actions/load-docker-images/action.yml index 16e943749e2..fe077f93dc1 100644 --- a/.github/actions/load-docker-images/action.yml +++ b/.github/actions/load-docker-images/action.yml @@ -22,7 +22,7 @@ runs: using: "composite" steps: - name: Set up Docker Buildx - uses: docker/setup-buildx-action@c47758b77c9736f4b2ef4073d4d51994fabfe349 # v3.7.1 + uses: docker/setup-buildx-action@6524bf65af31da8d45b59e8c27de4bd072b392f5 # v3.8.0 - name: Load tags shell: bash From 632b2539c7303827947e95097cd154f19c2e0b27 Mon Sep 17 00:00:00 2001 From: "hash-worker[bot]" <180894564+hash-worker[bot]@users.noreply.github.com> Date: Tue, 17 Dec 2024 01:50:36 +0000 Subject: [PATCH 023/159] Update `effect` npm packages (#5926) Co-authored-by: hash-worker[bot] <180894564+hash-worker[bot]@users.noreply.github.com> --- apps/hash-api/package.json | 2 +- libs/@local/eslint/package.json | 2 +- libs/@local/graph/sdk/typescript/package.json | 2 +- .../harpc/client/typescript/package.json | 6 +- yarn.lock | 67 ++++++++++--------- 5 files changed, 43 insertions(+), 36 deletions(-) diff --git a/apps/hash-api/package.json b/apps/hash-api/package.json index 88e9582d2f0..ff938336b8e 100644 --- a/apps/hash-api/package.json +++ b/apps/hash-api/package.json @@ -73,7 +73,7 @@ "cors": "2.8.5", "cross-env": "7.0.3", "dedent": "0.7.0", - "effect": "3.11.7", + "effect": "3.11.8", "exponential-backoff": "3.1.1", "express": "4.21.2", "express-handlebars": "7.1.3", diff --git a/libs/@local/eslint/package.json b/libs/@local/eslint/package.json index 229b286cfee..83864a4a80a 100644 --- a/libs/@local/eslint/package.json +++ b/libs/@local/eslint/package.json @@ -24,7 +24,7 @@ "@babel/eslint-parser": "7.25.9", "@eslint/compat": "1.2.4", "@eslint/eslintrc": "3.2.0", - "effect": "3.11.7", + "effect": "3.11.8", "eslint": "9.17.0", "eslint-config-airbnb": "19.0.4", "eslint-config-flat-gitignore": "0.3.0", diff --git a/libs/@local/graph/sdk/typescript/package.json b/libs/@local/graph/sdk/typescript/package.json index 79c80155c48..5f588cbdff6 100644 --- a/libs/@local/graph/sdk/typescript/package.json +++ b/libs/@local/graph/sdk/typescript/package.json @@ -28,7 +28,7 @@ "@local/harpc-client": "0.0.0-private", "@local/hash-graph-client": "0.0.0-private", "@local/hash-graph-types": "0.0.0-private", - "effect": "3.11.7" + "effect": "3.11.8" }, "devDependencies": { "@local/eslint": "0.0.0-private", diff --git a/libs/@local/harpc/client/typescript/package.json b/libs/@local/harpc/client/typescript/package.json index 4c4084fe82f..babf411380c 100644 --- a/libs/@local/harpc/client/typescript/package.json +++ b/libs/@local/harpc/client/typescript/package.json @@ -32,15 +32,15 @@ "@libp2p/tcp": "10.0.14", "@multiformats/dns": "1.0.6", "@multiformats/multiaddr": "12.3.4", - "effect": "3.11.7", + "effect": "3.11.8", "it-stream-types": "2.0.2", "libp2p": "2.4.2", "multiformats": "13.3.1", "uint8arraylist": "2.4.8" }, "devDependencies": { - "@effect/platform": "0.71.2", - "@effect/platform-node": "0.66.2", + "@effect/platform": "0.71.4", + "@effect/platform-node": "0.67.0", "@effect/vitest": "0.14.7", "@local/eslint": "0.0.0-private", "@local/tsconfig": "0.0.0-private", diff --git a/yarn.lock b/yarn.lock index 0e87ca9cc1a..c0ad53b3d19 100644 --- a/yarn.lock +++ b/yarn.lock @@ -417,7 +417,7 @@ __metadata: cors: "npm:2.8.5" cross-env: "npm:7.0.3" dedent: "npm:0.7.0" - effect: "npm:3.11.7" + effect: "npm:3.11.8" eslint: "npm:9.17.0" exponential-backoff: "npm:3.1.1" express: "npm:4.21.2" @@ -5734,43 +5734,43 @@ __metadata: languageName: node linkType: hard -"@effect/platform-node-shared@npm:^0.21.2": - version: 0.21.2 - resolution: "@effect/platform-node-shared@npm:0.21.2" +"@effect/platform-node-shared@npm:^0.21.4": + version: 0.21.4 + resolution: "@effect/platform-node-shared@npm:0.21.4" dependencies: "@parcel/watcher": "npm:^2.4.1" multipasta: "npm:^0.2.5" peerDependencies: - "@effect/platform": ^0.71.2 - effect: ^3.11.7 - checksum: 10c0/9c283db57751b5eb4ed3b8386a8f74a8e115be897c32d758cab287bcda3f8e52f84060d8b390782d2e61e3ec975d15ce057af6652ba3bbb86936ba8687b986a3 + "@effect/platform": ^0.71.4 + effect: ^3.11.8 + checksum: 10c0/6de4ff3990e2fc94bf3e72df7a798e0b0c84bd5ff8a35fa1ee156a48d16061a18ee6e9038d2a38b5cc2b230e08d5a85d4a90a470f8c65d4326d0d00883fd5eff languageName: node linkType: hard -"@effect/platform-node@npm:0.66.2": - version: 0.66.2 - resolution: "@effect/platform-node@npm:0.66.2" +"@effect/platform-node@npm:0.67.0": + version: 0.67.0 + resolution: "@effect/platform-node@npm:0.67.0" dependencies: - "@effect/platform-node-shared": "npm:^0.21.2" + "@effect/platform-node-shared": "npm:^0.21.4" mime: "npm:^3.0.0" - undici: "npm:^6.19.7" + undici: "npm:^7.1.0" ws: "npm:^8.18.0" peerDependencies: - "@effect/platform": ^0.71.2 - effect: ^3.11.7 - checksum: 10c0/5f2246ab10eec32bad19f57260305ede5764b61e85dffed669b24fa18bd8a6b6e47c4687c13efa437edad9772709b4793730356649f1167968301bc5aeb7bc09 + "@effect/platform": ^0.71.4 + effect: ^3.11.8 + checksum: 10c0/c4ef87ab809b2ad695ff94a84fbcd07beb7d607bc143dc45ccbefad8567e3c01ce87244b626180bdce5f39d53adfdc8546bbd2655b182b4202250419b43fc42d languageName: node linkType: hard -"@effect/platform@npm:0.71.2": - version: 0.71.2 - resolution: "@effect/platform@npm:0.71.2" +"@effect/platform@npm:0.71.4": + version: 0.71.4 + resolution: "@effect/platform@npm:0.71.4" dependencies: find-my-way-ts: "npm:^0.1.5" multipasta: "npm:^0.2.5" peerDependencies: - effect: ^3.11.7 - checksum: 10c0/8cda4abaa90bcb8e646a8937db97b9cd4d15f2f2daa0cf1197fbfc8a004668823f9fda355a49206999cddbb923225dbd96f50a3782209661411c8334074e8aeb + effect: ^3.11.8 + checksum: 10c0/eec7e979aa3fc0001e305f4109afc4cd0003c7045eb6fdfc62ab750c289442c4b56f97525a8d636142a0f697cd461cba5aeb71fc57f8cc53ff4c737178dcd631 languageName: node linkType: hard @@ -9022,7 +9022,7 @@ __metadata: "@types/babel__core": "npm:^7" "@types/eslint__eslintrc": "npm:2.1.2" "@types/node": "npm:22.10.2" - effect: "npm:3.11.7" + effect: "npm:3.11.8" eslint: "npm:9.17.0" eslint-config-airbnb: "npm:19.0.4" eslint-config-flat-gitignore: "npm:0.3.0" @@ -9047,8 +9047,8 @@ __metadata: dependencies: "@chainsafe/libp2p-noise": "npm:16.0.0" "@chainsafe/libp2p-yamux": "npm:7.0.1" - "@effect/platform": "npm:0.71.2" - "@effect/platform-node": "npm:0.66.2" + "@effect/platform": "npm:0.71.4" + "@effect/platform-node": "npm:0.67.0" "@effect/vitest": "npm:0.14.7" "@libp2p/crypto": "npm:5.0.8" "@libp2p/identify": "npm:3.0.14" @@ -9062,7 +9062,7 @@ __metadata: "@rust/harpc-wire-protocol": "npm:0.0.0-private" "@types/node": "npm:22.10.2" "@vitest/coverage-istanbul": "npm:2.1.8" - effect: "npm:3.11.7" + effect: "npm:3.11.8" eslint: "npm:9.17.0" it-stream-types: "npm:2.0.2" libp2p: "npm:2.4.2" @@ -9150,7 +9150,7 @@ __metadata: "@local/hash-graph-types": "npm:0.0.0-private" "@local/tsconfig": "npm:0.0.0-private" "@vitest/coverage-istanbul": "npm:2.1.8" - effect: "npm:3.11.7" + effect: "npm:3.11.8" eslint: "npm:9.17.0" rimraf: "npm:6.0.1" typescript: "npm:5.7.2" @@ -25230,12 +25230,12 @@ __metadata: languageName: node linkType: hard -"effect@npm:3.11.7": - version: 3.11.7 - resolution: "effect@npm:3.11.7" +"effect@npm:3.11.8": + version: 3.11.8 + resolution: "effect@npm:3.11.8" dependencies: fast-check: "npm:^3.21.0" - checksum: 10c0/e7d7d5ba96b34a0403177ef99102f98788be9a6da6459e54f4dc3cf84915e5f7a1e19373fbf8a5b5f98c9b55e902ef9799b9dbbaf36378e4197e1d9d7a0c859f + checksum: 10c0/e05d73b2c15e08ee2de3a908aae8c01babe76ddb118bb12f589eb4c7dbc3e676eca7c8b1904b52161712c9c8bf2da7fd7f6279b2042caae67130c68695707265 languageName: node linkType: hard @@ -46132,13 +46132,20 @@ __metadata: languageName: node linkType: hard -"undici@npm:^6.19.5, undici@npm:^6.19.7": +"undici@npm:^6.19.5": version: 6.21.0 resolution: "undici@npm:6.21.0" checksum: 10c0/afa9bde6dcf8e0f5cf1ff2fa977ba73dd5510299ddfca0e1f37ff326554172ae31cb3d4a40b5a729601be1f21b96a2684f974d74dab53f9b6930fd47d1949246 languageName: node linkType: hard +"undici@npm:^7.1.0": + version: 7.1.1 + resolution: "undici@npm:7.1.1" + checksum: 10c0/0bffa25170e863714dee6bf973fc1cec29480d55bb29d3652470d2de78f7b03c18f3155347ec939df493135df7faccfb753e9a5795fe975923994c07faba0014 + languageName: node + linkType: hard + "undici@npm:~5.28.4": version: 5.28.4 resolution: "undici@npm:5.28.4" From 32761efcdddae04b567e06948797185159292c0d Mon Sep 17 00:00:00 2001 From: "hash-worker[bot]" <180894564+hash-worker[bot]@users.noreply.github.com> Date: Tue, 17 Dec 2024 01:53:16 +0000 Subject: [PATCH 024/159] Update npm package `openai` to v4.76.3 (#5927) Co-authored-by: hash-worker[bot] <180894564+hash-worker[bot]@users.noreply.github.com> Co-authored-by: vilkinsons <6226576+vilkinsons@users.noreply.github.com> --- apps/hash-ai-worker-ts/package.json | 2 +- apps/hash-api/package.json | 2 +- yarn.lock | 12 ++++++------ 3 files changed, 8 insertions(+), 8 deletions(-) diff --git a/apps/hash-ai-worker-ts/package.json b/apps/hash-ai-worker-ts/package.json index dc67dd00d63..43c3a3971bb 100644 --- a/apps/hash-ai-worker-ts/package.json +++ b/apps/hash-ai-worker-ts/package.json @@ -81,7 +81,7 @@ "md5": "2.3.0", "mime-types": "2.1.35", "officeparser": "4.2.0", - "openai": "4.76.2", + "openai": "4.76.3", "openai-chat-tokens": "0.2.8", "papaparse": "5.4.1", "pdf2json": "3.1.4", diff --git a/apps/hash-api/package.json b/apps/hash-api/package.json index ff938336b8e..9cb54fa0407 100644 --- a/apps/hash-api/package.json +++ b/apps/hash-api/package.json @@ -99,7 +99,7 @@ "nanoid": "3.3.8", "nodemailer": "6.9.16", "oembed-providers": "1.0.20241022", - "openai": "4.76.2", + "openai": "4.76.3", "ts-json-schema-generator": "1.5.1", "tsx": "4.19.2", "typescript": "5.7.2", diff --git a/yarn.lock b/yarn.lock index c0ad53b3d19..7ca195a6c87 100644 --- a/yarn.lock +++ b/yarn.lock @@ -327,7 +327,7 @@ __metadata: md5: "npm:2.3.0" mime-types: "npm:2.1.35" officeparser: "npm:4.2.0" - openai: "npm:4.76.2" + openai: "npm:4.76.3" openai-chat-tokens: "npm:0.2.8" papaparse: "npm:5.4.1" pdf2json: "npm:3.1.4" @@ -444,7 +444,7 @@ __metadata: nanoid: "npm:3.3.8" nodemailer: "npm:6.9.16" oembed-providers: "npm:1.0.20241022" - openai: "npm:4.76.2" + openai: "npm:4.76.3" prettier: "npm:3.4.2" rimraf: "npm:6.0.1" ts-json-schema-generator: "npm:1.5.1" @@ -37514,9 +37514,9 @@ __metadata: languageName: node linkType: hard -"openai@npm:4.76.2, openai@npm:^4.38.0": - version: 4.76.2 - resolution: "openai@npm:4.76.2" +"openai@npm:4.76.3, openai@npm:^4.38.0": + version: 4.76.3 + resolution: "openai@npm:4.76.3" dependencies: "@types/node": "npm:^18.11.18" "@types/node-fetch": "npm:^2.6.4" @@ -37532,7 +37532,7 @@ __metadata: optional: true bin: openai: bin/cli - checksum: 10c0/d78af0c2dd64ad24a2ce92deb92656b742b8120012e554fd562095f237ce06d84764217e040b437f955c6f26b7675f9321862a8937c8537f28ed6ead4b674559 + checksum: 10c0/0ef8c8fd125886ebc67a8b13ff6106d701cbace274586d8f7fcc91355275dd50d4048e5e543167400c79fba6797a0dd903e0e94f2b0c7949f61c3d03f51d0ab2 languageName: node linkType: hard From bf7967f36a74c554b5d3eb241bca809ff6cd39e4 Mon Sep 17 00:00:00 2001 From: "hash-worker[bot]" <180894564+hash-worker[bot]@users.noreply.github.com> Date: Tue, 17 Dec 2024 02:06:50 +0000 Subject: [PATCH 025/159] Update Rust crate `clap_complete` to v4.5.39 (#5929) Co-authored-by: hash-worker[bot] <180894564+hash-worker[bot]@users.noreply.github.com> --- Cargo.lock | 4 ++-- Cargo.toml | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index 127080db594..0c63a2e7fba 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -1248,9 +1248,9 @@ dependencies = [ [[package]] name = "clap_complete" -version = "4.5.38" +version = "4.5.39" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "d9647a559c112175f17cf724dc72d3645680a883c58481332779192b0d8e7a01" +checksum = "fd4db298d517d5fa00b2b84bbe044efd3fde43874a41db0d46f91994646a2da4" dependencies = [ "clap", ] diff --git a/Cargo.toml b/Cargo.toml index 3e53cd63fcb..3f240a8f9d1 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -160,7 +160,7 @@ aws-sdk-s3 = { version = "=1.65.0", default-features = false } bitvec = { version = "=1.0.1", default-features = false } bytes-utils = { version = "=0.1.4", default-features = false } clap = { version = "=4.5.23", features = ["color", "error-context", "help", "std", "suggestions", "usage"] } -clap_complete = { version = "=4.5.38", default-features = false } +clap_complete = { version = "=4.5.39", default-features = false } convert_case = { version = "=0.6.0", default-features = false } criterion-macro = { version = "=0.4.0", default-features = false } derive-where = { version = "=1.2.7", default-features = false, features = ["nightly"] } From a3251d31effd15258ffbb6f435ebb2561c10dcdb Mon Sep 17 00:00:00 2001 From: "hash-worker[bot]" <180894564+hash-worker[bot]@users.noreply.github.com> Date: Tue, 17 Dec 2024 02:59:51 +0000 Subject: [PATCH 026/159] Update Rust crate `jsonschema` to v0.26.2 (#5932) Co-authored-by: hash-worker[bot] <180894564+hash-worker[bot]@users.noreply.github.com> --- Cargo.lock | 8 ++++---- Cargo.toml | 2 +- 2 files changed, 5 insertions(+), 5 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index 0c63a2e7fba..bf39acb77f1 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -3918,9 +3918,9 @@ dependencies = [ [[package]] name = "jsonschema" -version = "0.26.1" +version = "0.26.2" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "893d6229c7315763ca0df9b29ab7661ee419f286577a02847c5521b462e071af" +checksum = "26a960f0c34d5423581d858ce94815cc11f0171b09939409097969ed269ede1b" dependencies = [ "ahash", "base64 0.22.1", @@ -5981,9 +5981,9 @@ dependencies = [ [[package]] name = "referencing" -version = "0.26.1" +version = "0.26.2" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "eb853437e467c693ac1dc8c1520105a31b8c2588544ff2f3cfa5a7c706c6c069" +checksum = "fb8e15af8558cb157432dd3d88c1d1e982d0a5755cf80ce593b6499260aebc49" dependencies = [ "ahash", "fluent-uri", diff --git a/Cargo.toml b/Cargo.toml index 3f240a8f9d1..edaecd20f47 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -175,7 +175,7 @@ hyper = { version = "=1.5.1", default-features = false } include_dir = { version = "=0.7.4", default-features = false } insta = { version = "=1.41.1", default-features = false } itertools = { version = "0.13.0", default-features = false } -jsonschema = { version = "=0.26.1", default-features = false } +jsonschema = { version = "=0.26.2", default-features = false } justjson = { version = "=0.3.0", default-features = false } lexical = { version = "=7.0.4", default-features = false } libp2p = { version = "=0.54.1", default-features = false } From eb81a3167bbfe4eafeaf84f9f22bb8f738afb1de Mon Sep 17 00:00:00 2001 From: "hash-worker[bot]" <180894564+hash-worker[bot]@users.noreply.github.com> Date: Tue, 17 Dec 2024 03:07:34 +0000 Subject: [PATCH 027/159] Update npm package `@effect/vitest` to v0.14.8 (#5931) Co-authored-by: hash-worker[bot] <180894564+hash-worker[bot]@users.noreply.github.com> --- libs/@local/harpc/client/typescript/package.json | 2 +- yarn.lock | 12 ++++++------ 2 files changed, 7 insertions(+), 7 deletions(-) diff --git a/libs/@local/harpc/client/typescript/package.json b/libs/@local/harpc/client/typescript/package.json index babf411380c..3a69464c39d 100644 --- a/libs/@local/harpc/client/typescript/package.json +++ b/libs/@local/harpc/client/typescript/package.json @@ -41,7 +41,7 @@ "devDependencies": { "@effect/platform": "0.71.4", "@effect/platform-node": "0.67.0", - "@effect/vitest": "0.14.7", + "@effect/vitest": "0.14.8", "@local/eslint": "0.0.0-private", "@local/tsconfig": "0.0.0-private", "@rust/harpc-wire-protocol": "0.0.0-private", diff --git a/yarn.lock b/yarn.lock index 7ca195a6c87..a2a93ba5ffb 100644 --- a/yarn.lock +++ b/yarn.lock @@ -5774,13 +5774,13 @@ __metadata: languageName: node linkType: hard -"@effect/vitest@npm:0.14.7": - version: 0.14.7 - resolution: "@effect/vitest@npm:0.14.7" +"@effect/vitest@npm:0.14.8": + version: 0.14.8 + resolution: "@effect/vitest@npm:0.14.8" peerDependencies: - effect: ^3.11.7 + effect: ^3.11.8 vitest: ^2.0.5 - checksum: 10c0/2df79062f3cc926473ed1e88e2435d56a4284d99b71347d1353d83b148f0bc9e5d10a914a3a9f7d2c6391cf83ca4faffd470ad628650f7b377ae6a997bcccbd7 + checksum: 10c0/b03e77dec2abf359a56c6a6090286185b3181d46f2e010683d1b2315d1dffb7327016d40df1339444b1e8cb7e2423dfea3b98cb8ce1aabe03f015aed77461f6d languageName: node linkType: hard @@ -9049,7 +9049,7 @@ __metadata: "@chainsafe/libp2p-yamux": "npm:7.0.1" "@effect/platform": "npm:0.71.4" "@effect/platform-node": "npm:0.67.0" - "@effect/vitest": "npm:0.14.7" + "@effect/vitest": "npm:0.14.8" "@libp2p/crypto": "npm:5.0.8" "@libp2p/identify": "npm:3.0.14" "@libp2p/interface": "npm:2.3.0" From a121995d3acf78def4c6083f4ad474fe5532f01e Mon Sep 17 00:00:00 2001 From: "hash-worker[bot]" <180894564+hash-worker[bot]@users.noreply.github.com> Date: Tue, 17 Dec 2024 03:07:42 +0000 Subject: [PATCH 028/159] Update Rust crate `hyper` to v1.5.2 (#5930) Co-authored-by: hash-worker[bot] <180894564+hash-worker[bot]@users.noreply.github.com> --- Cargo.lock | 20 ++++++++++---------- Cargo.toml | 2 +- 2 files changed, 11 insertions(+), 11 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index bf39acb77f1..c60fdc13c67 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -808,7 +808,7 @@ dependencies = [ "http 1.2.0", "http-body 1.0.1", "http-body-util", - "hyper 1.5.1", + "hyper 1.5.2", "hyper-util", "itoa", "matchit", @@ -2748,7 +2748,7 @@ dependencies = [ "hash-status", "hash-temporal-client", "http 1.2.0", - "hyper 1.5.1", + "hyper 1.5.2", "include_dir", "mime", "opentelemetry 0.27.1", @@ -3434,9 +3434,9 @@ dependencies = [ [[package]] name = "hyper" -version = "1.5.1" +version = "1.5.2" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "97818827ef4f364230e16705d4706e2897df2bb60617d6ca15d598025a3c481f" +checksum = "256fb8d4bd6413123cc9d91832d78325c48ff41677595be797d90f42969beae0" dependencies = [ "bytes", "futures-channel", @@ -3477,7 +3477,7 @@ checksum = "08afdbb5c31130e3034af566421053ab03787c640246a446327f550d11bcb333" dependencies = [ "futures-util", "http 1.2.0", - "hyper 1.5.1", + "hyper 1.5.2", "hyper-util", "rustls 0.23.19", "rustls-pki-types", @@ -3493,7 +3493,7 @@ version = "0.5.1" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "3203a961e5c83b6f5498933e78b6b263e208c197b63e9c6c53cc82ffd3f63793" dependencies = [ - "hyper 1.5.1", + "hyper 1.5.2", "hyper-util", "pin-project-lite", "tokio", @@ -3511,7 +3511,7 @@ dependencies = [ "futures-util", "http 1.2.0", "http-body 1.0.1", - "hyper 1.5.1", + "hyper 1.5.2", "pin-project-lite", "socket2", "tokio", @@ -6099,7 +6099,7 @@ dependencies = [ "http 1.2.0", "http-body 1.0.1", "http-body-util", - "hyper 1.5.1", + "hyper 1.5.2", "hyper-rustls 0.27.3", "hyper-util", "ipnet", @@ -7142,7 +7142,7 @@ dependencies = [ "futures-util", "http 1.2.0", "http-body-util", - "hyper 1.5.1", + "hyper 1.5.2", "hyper-util", "parking_lot", "prost-types", @@ -7609,7 +7609,7 @@ dependencies = [ "http 1.2.0", "http-body 1.0.1", "http-body-util", - "hyper 1.5.1", + "hyper 1.5.2", "hyper-timeout", "hyper-util", "percent-encoding", diff --git a/Cargo.toml b/Cargo.toml index edaecd20f47..e4503302e2c 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -171,7 +171,7 @@ frunk_core = { version = "0.4.3", default-features = false } futures = { version = "=0.3.31", default-features = false } hifijson = { version = "=0.2.2", default-features = false } humansize = { version = "=2.1.3", default-features = false } -hyper = { version = "=1.5.1", default-features = false } +hyper = { version = "=1.5.2", default-features = false } include_dir = { version = "=0.7.4", default-features = false } insta = { version = "=1.41.1", default-features = false } itertools = { version = "0.13.0", default-features = false } From 10a0d13af9842c6256a3b397f232beed56d29749 Mon Sep 17 00:00:00 2001 From: "hash-worker[bot]" <180894564+hash-worker[bot]@users.noreply.github.com> Date: Tue, 17 Dec 2024 04:13:09 +0000 Subject: [PATCH 029/159] Update npm package `react-window` to v1.8.11 (#5937) Co-authored-by: hash-worker[bot] <180894564+hash-worker[bot]@users.noreply.github.com> --- apps/hash-frontend/package.json | 2 +- yarn.lock | 14 +++++++------- 2 files changed, 8 insertions(+), 8 deletions(-) diff --git a/apps/hash-frontend/package.json b/apps/hash-frontend/package.json index 1abd035fe26..16ef5155615 100644 --- a/apps/hash-frontend/package.json +++ b/apps/hash-frontend/package.json @@ -112,7 +112,7 @@ "react-responsive-carousel": "3.2.23", "react-transition-group": "4.4.5", "react-virtuoso": "4.12.3", - "react-window": "1.8.10", + "react-window": "1.8.11", "reactflow": "11.11.4", "remark-gfm": "4.0.0", "rooks": "7.14.1", diff --git a/yarn.lock b/yarn.lock index a2a93ba5ffb..0fbc515e0e8 100644 --- a/yarn.lock +++ b/yarn.lock @@ -584,7 +584,7 @@ __metadata: react-responsive-carousel: "npm:3.2.23" react-transition-group: "npm:4.4.5" react-virtuoso: "npm:4.12.3" - react-window: "npm:1.8.10" + react-window: "npm:1.8.11" reactflow: "npm:11.11.4" remark-gfm: "npm:4.0.0" rimraf: "npm:6.0.1" @@ -40752,16 +40752,16 @@ __metadata: languageName: node linkType: hard -"react-window@npm:1.8.10": - version: 1.8.10 - resolution: "react-window@npm:1.8.10" +"react-window@npm:1.8.11": + version: 1.8.11 + resolution: "react-window@npm:1.8.11" dependencies: "@babel/runtime": "npm:^7.0.0" memoize-one: "npm:>=3.1.1 <6" peerDependencies: - react: ^15.0.0 || ^16.0.0 || ^17.0.0 || ^18.0.0 - react-dom: ^15.0.0 || ^16.0.0 || ^17.0.0 || ^18.0.0 - checksum: 10c0/eda9afb667d9784513dcc2755b65edf3a1412e7877975322993c1382908aaef0c0b948b7e3b2d705e353306556274d90f7ab19ac40aef2184fa39d4c1e2232ea + react: ^15.0.0 || ^16.0.0 || ^17.0.0 || ^18.0.0 || ^19.0.0 + react-dom: ^15.0.0 || ^16.0.0 || ^17.0.0 || ^18.0.0 || ^19.0.0 + checksum: 10c0/5ae8da1bc5c47d8f0a428b28a600256e2db511975573e52cb65a9b27ed1a0e5b9f7b3bee5a54fb0da93956d782c24010be434be451072f46ba5a89159d2b3944 languageName: node linkType: hard From cbdfa1f8c7b8856313e15367176b32edb5841431 Mon Sep 17 00:00:00 2001 From: "hash-worker[bot]" <180894564+hash-worker[bot]@users.noreply.github.com> Date: Tue, 17 Dec 2024 10:25:56 +0000 Subject: [PATCH 030/159] Update GitHub Action `taiki-e/install-action` to v2.46.12 (#5936) Co-authored-by: hash-worker[bot] <180894564+hash-worker[bot]@users.noreply.github.com> --- .github/actions/warm-up-repo/action.yml | 2 +- .github/workflows/bench.yml | 4 ++-- .github/workflows/lint.yml | 2 +- .github/workflows/test.yml | 4 ++-- 4 files changed, 6 insertions(+), 6 deletions(-) diff --git a/.github/actions/warm-up-repo/action.yml b/.github/actions/warm-up-repo/action.yml index d2ffef8ee8c..72f3bd8aea4 100644 --- a/.github/actions/warm-up-repo/action.yml +++ b/.github/actions/warm-up-repo/action.yml @@ -17,7 +17,7 @@ runs: # cache: yarn ## Currently disabled because of frequent timeouts - name: Install WASM tools - uses: taiki-e/install-action@ed8c79bccf0b1cb1544a358f81684d3acaa5133f # v2.46.11 + uses: taiki-e/install-action@120c8997a0a81ef0701bb1f7166e7080143a96d5 # v2.46.12 with: tool: wasm-pack@0.12.1 diff --git a/.github/workflows/bench.yml b/.github/workflows/bench.yml index 0a14a2f4f11..d9fe31ff926 100644 --- a/.github/workflows/bench.yml +++ b/.github/workflows/bench.yml @@ -99,7 +99,7 @@ jobs: - name: Install Rust tools if: steps.benches.outputs.has-rust == 'true' - uses: taiki-e/install-action@ed8c79bccf0b1cb1544a358f81684d3acaa5133f # v2.46.11 + uses: taiki-e/install-action@120c8997a0a81ef0701bb1f7166e7080143a96d5 # v2.46.12 with: tool: just@1.34.0,critcmp@0.1.8 @@ -251,7 +251,7 @@ jobs: - name: Install Rust tools if: steps.benches.outputs.has-rust == 'true' - uses: taiki-e/install-action@ed8c79bccf0b1cb1544a358f81684d3acaa5133f # v2.46.11 + uses: taiki-e/install-action@120c8997a0a81ef0701bb1f7166e7080143a96d5 # v2.46.12 with: tool: just@1.34.0,critcmp@0.1.8 diff --git a/.github/workflows/lint.yml b/.github/workflows/lint.yml index 8f29e8e0e37..a1bea43d5c8 100644 --- a/.github/workflows/lint.yml +++ b/.github/workflows/lint.yml @@ -111,7 +111,7 @@ jobs: - name: Install Rust tools if: always() && steps.lints.outputs.has-rust == 'true' - uses: taiki-e/install-action@ed8c79bccf0b1cb1544a358f81684d3acaa5133f # v2.46.11 + uses: taiki-e/install-action@120c8997a0a81ef0701bb1f7166e7080143a96d5 # v2.46.12 with: tool: just@1.34.0,cargo-hack@0.6.30,clippy-sarif@0.6.5,sarif-fmt@0.6.5 diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index c89b56d2fc9..da857461910 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -163,7 +163,7 @@ jobs: - name: Install Rust tools if: always() && steps.tests.outputs.has-rust == 'true' - uses: taiki-e/install-action@ed8c79bccf0b1cb1544a358f81684d3acaa5133f # v2.46.11 + uses: taiki-e/install-action@120c8997a0a81ef0701bb1f7166e7080143a96d5 # v2.46.12 with: tool: just@1.34.0,cargo-hack@0.6.30,cargo-nextest@0.9.72,cargo-llvm-cov@0.6.11 @@ -281,7 +281,7 @@ jobs: - name: Install Rust tools if: steps.tests.outputs.has-rust == 'true' - uses: taiki-e/install-action@ed8c79bccf0b1cb1544a358f81684d3acaa5133f # v2.46.11 + uses: taiki-e/install-action@120c8997a0a81ef0701bb1f7166e7080143a96d5 # v2.46.12 with: tool: just@1.34.0,cargo-hack@0.6.30,cargo-nextest@0.9.72,cargo-llvm-cov@0.6.11 From d2698ef9c20c6b0be5d18d5266bc51c9f8bc16d2 Mon Sep 17 00:00:00 2001 From: "hash-worker[bot]" <180894564+hash-worker[bot]@users.noreply.github.com> Date: Tue, 17 Dec 2024 13:24:30 +0000 Subject: [PATCH 031/159] Update Rust crate `scc` to v2.2.6 (#5933) Co-authored-by: hash-worker[bot] <180894564+hash-worker[bot]@users.noreply.github.com> Co-authored-by: Bilal Mahmoud --- Cargo.lock | 4 ++-- Cargo.toml | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index c60fdc13c67..15d933215a6 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -6391,9 +6391,9 @@ dependencies = [ [[package]] name = "scc" -version = "2.2.5" +version = "2.2.6" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "66b202022bb57c049555430e11fc22fea12909276a80a4c3d368da36ac1d88ed" +checksum = "94b13f8ea6177672c49d12ed964cca44836f59621981b04a3e26b87e675181de" dependencies = [ "sdd", ] diff --git a/Cargo.toml b/Cargo.toml index e4503302e2c..4b493093c72 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -203,7 +203,7 @@ quote = { version = "=1.0.37", default-features = false } rand = { version = "=0.8.5", default-features = false } refinery = { version = "=0.8.14", default-features = false } rustc_version = { version = "=0.4.1", default-features = false } -scc = { version = "=2.2.5", default-features = false } +scc = { version = "=2.2.6", default-features = false } sentry = { version = "=0.35.0", default-features = false, features = ["backtrace", "contexts", "debug-images", "panic", "reqwest", "rustls", "tower-http", "tracing"] } seq-macro = { version = "=0.3.5", default-features = false } serde_plain = { version = "=1.0.2", default-features = false } From 1cfd22b1ec950ca2024772a5c89ef0d0da469a9a Mon Sep 17 00:00:00 2001 From: Dei Vilkinsons <6226576+vilkinsons@users.noreply.github.com> Date: Tue, 17 Dec 2024 13:39:56 +0000 Subject: [PATCH 032/159] H-3833: Fix typo on intro use cases page (#5939) --- apps/hashdotai/guide/01_introduction/01_use-cases.mdx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/apps/hashdotai/guide/01_introduction/01_use-cases.mdx b/apps/hashdotai/guide/01_introduction/01_use-cases.mdx index 3b458f59f88..fa5a8d5aa77 100644 --- a/apps/hashdotai/guide/01_introduction/01_use-cases.mdx +++ b/apps/hashdotai/guide/01_introduction/01_use-cases.mdx @@ -13,7 +13,7 @@ sidebarIcon: https://app.hash.ai/icons/docs/introduction-usecases.svg ### Knowledge graph generation -Quickly create a trustworthy, comprehensive, and useful knowledge graph (or ["web"](/guide/webs)), capturing information about your business, industy or any area of interest in a strongly-typed, semantic graph. +Quickly create a trustworthy, comprehensive, and useful knowledge graph (or ["web"](/guide/webs)), capturing information about your business, industry or any area of interest in a strongly-typed, semantic graph. ### Deep research From 49de1d125678f95c53f8957afce2ce7a5c29c8e9 Mon Sep 17 00:00:00 2001 From: Dei Vilkinsons <6226576+vilkinsons@users.noreply.github.com> Date: Tue, 17 Dec 2024 14:05:56 +0000 Subject: [PATCH 033/159] H-3833: Fix `Workers` page heading (#5940) --- apps/hashdotai/guide/05_workers/00_index.mdx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/apps/hashdotai/guide/05_workers/00_index.mdx b/apps/hashdotai/guide/05_workers/00_index.mdx index bb998463c87..209935bd047 100644 --- a/apps/hashdotai/guide/05_workers/00_index.mdx +++ b/apps/hashdotai/guide/05_workers/00_index.mdx @@ -1,5 +1,5 @@ --- -title: "Overview" +title: "Workers" description: "Helping you with the hard stuff" cover: https://hash.ai/cdn-cgi/imagedelivery/EipKtqu98OotgfhvKf6Eew/f2b4136e-eecb-4427-e19e-1096b370ad00/public metaTitle: "AI Workers in HASH" From 86d84f006d4608ae307d308c425ea2a767fe8ae7 Mon Sep 17 00:00:00 2001 From: "hash-worker[bot]" <180894564+hash-worker[bot]@users.noreply.github.com> Date: Tue, 17 Dec 2024 15:57:42 +0000 Subject: [PATCH 034/159] Update npm package `katex` to v0.16.17 (#5942) Co-authored-by: hash-worker[bot] <180894564+hash-worker[bot]@users.noreply.github.com> --- apps/hashdotdev/package.json | 2 +- yarn.lock | 10 +++++----- 2 files changed, 6 insertions(+), 6 deletions(-) diff --git a/apps/hashdotdev/package.json b/apps/hashdotdev/package.json index f947792f6de..ddc4e587613 100644 --- a/apps/hashdotdev/package.json +++ b/apps/hashdotdev/package.json @@ -40,7 +40,7 @@ "gray-matter": "4.0.3", "html-to-text": "9.0.5", "image-size": "1.1.1", - "katex": "0.16.15", + "katex": "0.16.17", "md5": "2.3.0", "mock-block-dock": "0.0.21", "next": "13.5.5", diff --git a/yarn.lock b/yarn.lock index 0fbc515e0e8..fc0b794c62c 100644 --- a/yarn.lock +++ b/yarn.lock @@ -764,7 +764,7 @@ __metadata: gray-matter: "npm:4.0.3" html-to-text: "npm:9.0.5" image-size: "npm:1.1.1" - katex: "npm:0.16.15" + katex: "npm:0.16.17" md5: "npm:2.3.0" mock-block-dock: "npm:0.0.21" next: "npm:13.5.5" @@ -32729,14 +32729,14 @@ __metadata: languageName: node linkType: hard -"katex@npm:0.16.15": - version: 0.16.15 - resolution: "katex@npm:0.16.15" +"katex@npm:0.16.17": + version: 0.16.17 + resolution: "katex@npm:0.16.17" dependencies: commander: "npm:^8.3.0" bin: katex: cli.js - checksum: 10c0/bf1f553c7368821228c22d2cef61672fbaed96388226e27df1422925f8676502267343bcbad1fe4657d729390062c1009ac5fac952e987bc60531ce675049f84 + checksum: 10c0/2f5025ae6051b000f78000de8578d6f641755270ba948f3a39892bb0beb502e0a7e716837c3b1402abd695b22b52958ccf8c33de82b16b68649ebe1b3dcb03b2 languageName: node linkType: hard From cc79e76abd601464fddd616347b1f8fd4e0aa02c Mon Sep 17 00:00:00 2001 From: "hash-worker[bot]" <180894564+hash-worker[bot]@users.noreply.github.com> Date: Tue, 17 Dec 2024 20:43:10 +0000 Subject: [PATCH 035/159] Update react monorepo (#5111) Co-authored-by: hash-worker[bot] <180894564+hash-worker[bot]@users.noreply.github.com> Co-authored-by: Ciaran Morinan --- apps/hash-frontend/package.json | 8 +- .../src/components/forms/select-input.tsx | 1 - apps/hashdotdesign/package.json | 4 +- apps/hashdotdev/package.json | 8 +- apps/plugin-browser/package.json | 10 +- blocks/address/package.json | 6 +- blocks/ai-chat/package.json | 6 +- blocks/ai-image/package.json | 6 +- blocks/ai-text/package.json | 6 +- blocks/callout/package.json | 6 +- blocks/chart/package.json | 6 +- blocks/code/package.json | 6 +- blocks/countdown/package.json | 6 +- blocks/divider/package.json | 6 +- blocks/embed/package.json | 6 +- blocks/faq/package.json | 6 +- blocks/heading/package.json | 6 +- blocks/how-to/package.json | 6 +- blocks/image/package.json | 6 +- blocks/kanban-board/package.json | 6 +- blocks/minesweeper/package.json | 6 +- blocks/paragraph/package.json | 6 +- blocks/person/package.json | 6 +- blocks/shuffle/package.json | 4 +- blocks/table/package.json | 6 +- blocks/timer/package.json | 6 +- blocks/video/package.json | 6 +- libs/@blockprotocol/graph/package.json | 2 +- .../type-system/typescript/package.json | 4 +- .../block-design-system/package.json | 8 +- libs/@hashintel/design-system/package.json | 8 +- libs/@hashintel/query-editor/package.json | 4 +- libs/@hashintel/type-editor/package.json | 4 +- .../entity-type-editor/shared/type-form.tsx | 1 + libs/@local/advanced-types/package.json | 2 +- .../@local/hash-isomorphic-utils/package.json | 2 +- package.json | 6 +- yarn.lock | 259 ++++++++---------- 38 files changed, 222 insertions(+), 239 deletions(-) diff --git a/apps/hash-frontend/package.json b/apps/hash-frontend/package.json index 16ef5155615..944f32a6664 100644 --- a/apps/hash-frontend/package.json +++ b/apps/hash-frontend/package.json @@ -101,9 +101,9 @@ "prosemirror-state": "1.4.3", "prosemirror-transform": "1.7.0", "prosemirror-view": "patch:prosemirror-view@npm%3A1.29.1#~/.yarn/patches/prosemirror-view-npm-1.29.1-ff37db4eea.patch", - "react": "18.2.0", + "react": "18.3.1", "react-beautiful-dnd": "13.1.1", - "react-dom": "18.2.0", + "react-dom": "18.3.1", "react-dropzone": "14.3.5", "react-full-screen": "1.1.1", "react-hook-form": "7.54.1", @@ -141,9 +141,9 @@ "@types/jsonpath": "0.2.4", "@types/lodash": "4.17.13", "@types/papaparse": "5.3.15", - "@types/react": "18.2.68", + "@types/react": "18.3.16", "@types/react-beautiful-dnd": "13.1.8", - "@types/react-dom": "18.2.25", + "@types/react-dom": "18.3.5", "@types/react-window": "1.8.8", "@types/url-regex-safe": "1.0.2", "@types/uuid": "10.0.0", diff --git a/apps/hash-frontend/src/components/forms/select-input.tsx b/apps/hash-frontend/src/components/forms/select-input.tsx index 1c5941f2b91..6298ae47c30 100644 --- a/apps/hash-frontend/src/components/forms/select-input.tsx +++ b/apps/hash-frontend/src/components/forms/select-input.tsx @@ -84,7 +84,6 @@ export const SelectInput = forwardRef( }, }} onChange={_onChange} - // @ts-expect-error -- @type investigate ref type mismatch ref={ref} {...(value && { value })} {...(placeholder && { defaultValue: "" })} diff --git a/apps/hashdotdesign/package.json b/apps/hashdotdesign/package.json index 170ea7f2744..6213133dcac 100644 --- a/apps/hashdotdesign/package.json +++ b/apps/hashdotdesign/package.json @@ -22,8 +22,8 @@ "@storybook/react": "7.6.20", "@storybook/react-webpack5": "7.6.20", "@storybook/testing-library": "0.2.2", - "@types/react": "18.2.68", - "@types/react-dom": "18.2.25", + "@types/react": "18.3.16", + "@types/react-dom": "18.3.5", "storybook": "7.6.20" }, "peerDependencies": { diff --git a/apps/hashdotdev/package.json b/apps/hashdotdev/package.json index ddc4e587613..d99ffd71e1f 100644 --- a/apps/hashdotdev/package.json +++ b/apps/hashdotdev/package.json @@ -49,8 +49,8 @@ "nextjs-progressbar": "0.0.16", "plaiceholder": "2.5.0", "prismjs": "1.29.0", - "react": "18.2.0", - "react-dom": "18.2.0", + "react": "18.3.1", + "react-dom": "18.3.1", "react-full-screen": "1.1.1", "react-html-parser": "2.0.2", "remark-gfm": "3.0.1", @@ -74,8 +74,8 @@ "@types/md5": "2.3.5", "@types/node": "22.10.2", "@types/prismjs": "1.26.5", - "@types/react": "18.2.68", - "@types/react-dom": "18.2.25", + "@types/react": "18.3.16", + "@types/react-dom": "18.3.5", "@types/react-html-parser": "2.0.6", "@types/unist": "2.0.11", "babel-loader": "9.2.1", diff --git a/apps/plugin-browser/package.json b/apps/plugin-browser/package.json index 006f3ce2819..0fd1d556000 100755 --- a/apps/plugin-browser/package.json +++ b/apps/plugin-browser/package.json @@ -42,8 +42,8 @@ "fractional-indexing": "2.1.0", "graphql": "16.10.0", "lodash.debounce": "4.0.8", - "react": "18.2.0", - "react-dom": "18.2.0", + "react": "18.3.1", + "react-dom": "18.3.1", "uuid": "9.0.1", "webextension-polyfill": "0.10.0", "ws": "8.18.0" @@ -63,8 +63,8 @@ "@pmmmwh/react-refresh-webpack-plugin": "0.5.15", "@sentry/webpack-plugin": "2.22.7", "@types/lodash.debounce": "4.0.9", - "@types/react": "18.2.68", - "@types/react-dom": "18.2.25", + "@types/react": "18.3.16", + "@types/react-dom": "18.3.5", "@types/webextension-polyfill": "patch:@types/webextension-polyfill@npm%3A0.10.4#~/.yarn/patches/@types-webextension-polyfill-npm-0.10.4-291152c615.patch", "@types/ws": "8.5.13", "babel-loader": "9.2.1", @@ -79,7 +79,7 @@ "html-loader": "4.2.0", "html-webpack-plugin": "5.6.3", "process": "0.11.10", - "react-refresh": "0.14.0", + "react-refresh": "0.16.0", "react-refresh-typescript": "2.0.9", "rimraf": "6.0.1", "sass": "1.83.0", diff --git a/blocks/address/package.json b/blocks/address/package.json index 4fbe99490de..14755be2775 100644 --- a/blocks/address/package.json +++ b/blocks/address/package.json @@ -46,14 +46,14 @@ "devDependencies": { "@local/eslint": "0.0.0-private", "@types/lodash.debounce": "4.0.9", - "@types/react-dom": "18.2.25", + "@types/react-dom": "18.3.5", "@types/uuid": "10.0.0", "block-scripts": "0.3.4", "eslint": "9.17.0", "mock-block-dock": "0.1.9", "prettier": "3.4.2", - "react": "18.2.0", - "react-dom": "18.2.0", + "react": "18.3.1", + "react-dom": "18.3.1", "typescript": "5.7.2" }, "peerDependencies": { diff --git a/blocks/ai-chat/package.json b/blocks/ai-chat/package.json index dddd1633050..c623a35a195 100644 --- a/blocks/ai-chat/package.json +++ b/blocks/ai-chat/package.json @@ -41,14 +41,14 @@ "devDependencies": { "@local/eslint": "0.0.0-private", "@local/tsconfig": "0.0.0-private", - "@types/react-dom": "18.2.25", + "@types/react-dom": "18.3.5", "@types/uuid": "10.0.0", "block-scripts": "0.3.4", "eslint": "9.17.0", "mock-block-dock": "0.1.9", "prettier": "3.4.2", - "react": "18.2.0", - "react-dom": "18.2.0", + "react": "18.3.1", + "react-dom": "18.3.1", "typescript": "5.7.2" }, "peerDependencies": { diff --git a/blocks/ai-image/package.json b/blocks/ai-image/package.json index 742db509be6..a26b5ffb836 100644 --- a/blocks/ai-image/package.json +++ b/blocks/ai-image/package.json @@ -42,14 +42,14 @@ "devDependencies": { "@local/eslint": "0.0.0-private", "@local/tsconfig": "0.0.0-private", - "@types/react-dom": "18.2.25", + "@types/react-dom": "18.3.5", "@types/uuid": "10.0.0", "block-scripts": "0.3.4", "eslint": "9.17.0", "mock-block-dock": "0.1.9", "prettier": "3.4.2", - "react": "18.2.0", - "react-dom": "18.2.0", + "react": "18.3.1", + "react-dom": "18.3.1", "typescript": "5.7.2" }, "peerDependencies": { diff --git a/blocks/ai-text/package.json b/blocks/ai-text/package.json index 44b0627ea2d..555e83ed518 100644 --- a/blocks/ai-text/package.json +++ b/blocks/ai-text/package.json @@ -36,13 +36,13 @@ "devDependencies": { "@local/eslint": "0.0.0-private", "@local/tsconfig": "0.0.0-private", - "@types/react-dom": "18.2.25", + "@types/react-dom": "18.3.5", "block-scripts": "0.3.4", "eslint": "9.17.0", "mock-block-dock": "0.1.9", "prettier": "3.4.2", - "react": "18.2.0", - "react-dom": "18.2.0", + "react": "18.3.1", + "react-dom": "18.3.1", "typescript": "5.7.2" }, "peerDependencies": { diff --git a/blocks/callout/package.json b/blocks/callout/package.json index daf942da9b7..4b0d2f7d74f 100644 --- a/blocks/callout/package.json +++ b/blocks/callout/package.json @@ -33,13 +33,13 @@ "devDependencies": { "@local/eslint": "0.0.0-private", "@local/tsconfig": "0.0.0-private", - "@types/react-dom": "18.2.25", + "@types/react-dom": "18.3.5", "block-scripts": "0.3.4", "eslint": "9.17.0", "mock-block-dock": "0.1.9", "prettier": "3.4.2", - "react": "18.2.0", - "react-dom": "18.2.0", + "react": "18.3.1", + "react-dom": "18.3.1", "typescript": "5.7.2" }, "peerDependencies": { diff --git a/blocks/chart/package.json b/blocks/chart/package.json index 220ce240311..268f93f8ae0 100644 --- a/blocks/chart/package.json +++ b/blocks/chart/package.json @@ -42,14 +42,14 @@ "@local/eslint": "0.0.0-private", "@local/tsconfig": "0.0.0-private", "@types/lodash.debounce": "4.0.9", - "@types/react-dom": "18.2.25", + "@types/react-dom": "18.3.5", "@types/react-is": "18.3.1", "block-scripts": "0.3.4", "eslint": "9.17.0", "mock-block-dock": "0.1.9", "prettier": "3.4.2", - "react": "18.2.0", - "react-dom": "18.2.0", + "react": "18.3.1", + "react-dom": "18.3.1", "typescript": "5.7.2" }, "peerDependencies": { diff --git a/blocks/code/package.json b/blocks/code/package.json index db272f2144f..677d2579ba8 100644 --- a/blocks/code/package.json +++ b/blocks/code/package.json @@ -34,13 +34,13 @@ "@local/eslint": "0.0.0-private", "@local/tsconfig": "0.0.0-private", "@types/prismjs": "1.26.5", - "@types/react-dom": "18.2.25", + "@types/react-dom": "18.3.5", "block-scripts": "0.3.4", "eslint": "9.17.0", "mock-block-dock": "0.1.9", "prettier": "3.4.2", - "react": "18.2.0", - "react-dom": "18.2.0", + "react": "18.3.1", + "react-dom": "18.3.1", "typescript": "5.7.2" }, "peerDependencies": { diff --git a/blocks/countdown/package.json b/blocks/countdown/package.json index e22f09616bf..6c08dd9de7e 100644 --- a/blocks/countdown/package.json +++ b/blocks/countdown/package.json @@ -35,13 +35,13 @@ "@local/eslint": "0.0.0-private", "@local/tsconfig": "0.0.0-private", "@types/react-datepicker": "4.19.6", - "@types/react-dom": "18.2.25", + "@types/react-dom": "18.3.5", "block-scripts": "0.3.4", "eslint": "9.17.0", "mock-block-dock": "0.1.9", "prettier": "3.4.2", - "react": "18.2.0", - "react-dom": "18.2.0", + "react": "18.3.1", + "react-dom": "18.3.1", "typescript": "5.7.2" }, "peerDependencies": { diff --git a/blocks/divider/package.json b/blocks/divider/package.json index dad6f60df49..e74b47d3ead 100644 --- a/blocks/divider/package.json +++ b/blocks/divider/package.json @@ -33,13 +33,13 @@ "devDependencies": { "@local/eslint": "0.0.0-private", "@local/tsconfig": "0.0.0-private", - "@types/react-dom": "18.2.25", + "@types/react-dom": "18.3.5", "block-scripts": "0.3.4", "eslint": "9.17.0", "mock-block-dock": "0.1.9", "prettier": "3.4.2", - "react": "18.2.0", - "react-dom": "18.2.0", + "react": "18.3.1", + "react-dom": "18.3.1", "typescript": "5.7.2" }, "peerDependencies": { diff --git a/blocks/embed/package.json b/blocks/embed/package.json index 00a19fd7ef9..51665ff885d 100644 --- a/blocks/embed/package.json +++ b/blocks/embed/package.json @@ -33,12 +33,12 @@ "@local/eslint": "0.0.0-private", "@local/tsconfig": "0.0.0-private", "@types/lodash": "4.17.13", - "@types/react-dom": "18.0.9", + "@types/react-dom": "18.3.5", "block-scripts": "0.0.14", "eslint": "9.17.0", "mock-block-dock": "0.0.10", - "react": "18.2.0", - "react-dom": "18.2.0", + "react": "18.3.1", + "react-dom": "18.3.1", "typescript": "5.7.2" }, "peerDependencies": { diff --git a/blocks/faq/package.json b/blocks/faq/package.json index fb73ff50073..5d52f7cc69f 100644 --- a/blocks/faq/package.json +++ b/blocks/faq/package.json @@ -39,14 +39,14 @@ }, "devDependencies": { "@local/eslint": "0.0.0-private", - "@types/react-dom": "18.2.25", + "@types/react-dom": "18.3.5", "@types/uuid": "10.0.0", "block-scripts": "0.3.4", "eslint": "9.17.0", "mock-block-dock": "0.1.9", "prettier": "3.4.2", - "react": "18.2.0", - "react-dom": "18.2.0", + "react": "18.3.1", + "react-dom": "18.3.1", "typescript": "5.7.2" }, "peerDependencies": { diff --git a/blocks/heading/package.json b/blocks/heading/package.json index dedff50783e..45cf86f090c 100644 --- a/blocks/heading/package.json +++ b/blocks/heading/package.json @@ -33,13 +33,13 @@ "devDependencies": { "@local/eslint": "0.0.0-private", "@local/tsconfig": "0.0.0-private", - "@types/react-dom": "18.2.25", + "@types/react-dom": "18.3.5", "block-scripts": "0.3.4", "eslint": "9.17.0", "mock-block-dock": "0.1.9", "prettier": "3.4.2", - "react": "18.2.0", - "react-dom": "18.2.0", + "react": "18.3.1", + "react-dom": "18.3.1", "typescript": "5.7.2" }, "peerDependencies": { diff --git a/blocks/how-to/package.json b/blocks/how-to/package.json index 02da7531928..994d228a0a2 100644 --- a/blocks/how-to/package.json +++ b/blocks/how-to/package.json @@ -40,14 +40,14 @@ }, "devDependencies": { "@local/eslint": "0.0.0-private", - "@types/react-dom": "18.2.25", + "@types/react-dom": "18.3.5", "@types/uuid": "10.0.0", "block-scripts": "0.3.4", "eslint": "9.17.0", "mock-block-dock": "0.1.9", "prettier": "3.4.2", - "react": "18.2.0", - "react-dom": "18.2.0", + "react": "18.3.1", + "react-dom": "18.3.1", "typescript": "5.7.2" }, "peerDependencies": { diff --git a/blocks/image/package.json b/blocks/image/package.json index 1e6d0485c95..9ce50a490b1 100644 --- a/blocks/image/package.json +++ b/blocks/image/package.json @@ -34,13 +34,13 @@ "devDependencies": { "@local/eslint": "0.0.0-private", "@local/tsconfig": "0.0.0-private", - "@types/react-dom": "18.2.25", + "@types/react-dom": "18.3.5", "block-scripts": "0.3.4", "eslint": "9.17.0", "mock-block-dock": "0.1.9", "prettier": "3.4.2", - "react": "18.2.0", - "react-dom": "18.2.0", + "react": "18.3.1", + "react-dom": "18.3.1", "typescript": "5.7.2" }, "peerDependencies": { diff --git a/blocks/kanban-board/package.json b/blocks/kanban-board/package.json index 3188bd6fb71..c1c049853c6 100644 --- a/blocks/kanban-board/package.json +++ b/blocks/kanban-board/package.json @@ -50,13 +50,13 @@ "@types/lodash.clonedeep": "4.5.9", "@types/lodash.debounce": "4.0.9", "@types/lodash.isequal": "4.5.8", - "@types/react-dom": "18.2.25", + "@types/react-dom": "18.3.5", "block-scripts": "0.3.4", "eslint": "9.17.0", "mock-block-dock": "0.1.9", "prettier": "3.4.2", - "react": "18.2.0", - "react-dom": "18.2.0", + "react": "18.3.1", + "react-dom": "18.3.1", "typescript": "5.7.2" }, "peerDependencies": { diff --git a/blocks/minesweeper/package.json b/blocks/minesweeper/package.json index 0d1f89a8301..f040bf41474 100644 --- a/blocks/minesweeper/package.json +++ b/blocks/minesweeper/package.json @@ -28,13 +28,13 @@ "devDependencies": { "@local/eslint": "0.0.0-private", "@local/tsconfig": "0.0.0-private", - "@types/react-dom": "18.2.25", + "@types/react-dom": "18.3.5", "block-scripts": "0.3.4", "eslint": "9.17.0", "mock-block-dock": "0.1.9", "prettier": "3.4.2", - "react": "18.2.0", - "react-dom": "18.2.0", + "react": "18.3.1", + "react-dom": "18.3.1", "typescript": "5.7.2" }, "block-scripts": { diff --git a/blocks/paragraph/package.json b/blocks/paragraph/package.json index fd8db666951..ba5c338d969 100644 --- a/blocks/paragraph/package.json +++ b/blocks/paragraph/package.json @@ -33,13 +33,13 @@ "devDependencies": { "@local/eslint": "0.0.0-private", "@local/tsconfig": "0.0.0-private", - "@types/react-dom": "18.2.25", + "@types/react-dom": "18.3.5", "block-scripts": "0.3.4", "eslint": "9.17.0", "mock-block-dock": "0.1.9", "prettier": "3.4.2", - "react": "18.2.0", - "react-dom": "18.2.0", + "react": "18.3.1", + "react-dom": "18.3.1", "typescript": "5.7.2" }, "peerDependencies": { diff --git a/blocks/person/package.json b/blocks/person/package.json index 6d98dd453ff..45ad49699ac 100644 --- a/blocks/person/package.json +++ b/blocks/person/package.json @@ -32,12 +32,12 @@ "@local/eslint": "0.0.0-private", "@local/tsconfig": "0.0.0-private", "@types/dompurify": "2.4.0", - "@types/react-dom": "18.0.9", + "@types/react-dom": "18.3.5", "block-scripts": "0.0.14", "eslint": "9.17.0", "mock-block-dock": "0.0.38", - "react": "18.2.0", - "react-dom": "18.2.0", + "react": "18.3.1", + "react-dom": "18.3.1", "typescript": "5.7.2" }, "peerDependencies": { diff --git a/blocks/shuffle/package.json b/blocks/shuffle/package.json index 19a85d46023..84a5321ecf5 100644 --- a/blocks/shuffle/package.json +++ b/blocks/shuffle/package.json @@ -47,8 +47,8 @@ "eslint": "9.17.0", "mock-block-dock": "0.1.9", "prettier": "3.4.2", - "react": "18.2.0", - "react-dom": "18.2.0", + "react": "18.3.1", + "react-dom": "18.3.1", "typescript": "5.7.2" }, "peerDependencies": { diff --git a/blocks/table/package.json b/blocks/table/package.json index 52448471c8d..c348f74dd8a 100644 --- a/blocks/table/package.json +++ b/blocks/table/package.json @@ -53,13 +53,13 @@ "@types/lodash.debounce": "4.0.9", "@types/lodash.isequal": "4.5.8", "@types/lodash.uniqueid": "4.0.9", - "@types/react-dom": "18.2.25", + "@types/react-dom": "18.3.5", "block-scripts": "0.3.4", "eslint": "9.17.0", "mock-block-dock": "0.1.9", "prettier": "3.4.2", - "react": "18.2.0", - "react-dom": "18.2.0", + "react": "18.3.1", + "react-dom": "18.3.1", "typescript": "5.7.2" }, "peerDependencies": { diff --git a/blocks/timer/package.json b/blocks/timer/package.json index 8b5c9fbe4ce..2c2474bc273 100644 --- a/blocks/timer/package.json +++ b/blocks/timer/package.json @@ -34,13 +34,13 @@ "devDependencies": { "@local/eslint": "0.0.0-private", "@local/tsconfig": "0.0.0-private", - "@types/react-dom": "18.2.25", + "@types/react-dom": "18.3.5", "block-scripts": "0.3.4", "eslint": "9.17.0", "mock-block-dock": "0.1.9", "prettier": "3.4.2", - "react": "18.2.0", - "react-dom": "18.2.0", + "react": "18.3.1", + "react-dom": "18.3.1", "typescript": "5.7.2" }, "peerDependencies": { diff --git a/blocks/video/package.json b/blocks/video/package.json index 31294817625..473d138a6ab 100644 --- a/blocks/video/package.json +++ b/blocks/video/package.json @@ -33,13 +33,13 @@ "devDependencies": { "@local/eslint": "0.0.0-private", "@local/tsconfig": "0.0.0-private", - "@types/react-dom": "18.2.25", + "@types/react-dom": "18.3.5", "block-scripts": "0.3.4", "eslint": "9.17.0", "mock-block-dock": "0.1.9", "prettier": "3.4.2", - "react": "18.2.0", - "react-dom": "18.2.0", + "react": "18.3.1", + "react-dom": "18.3.1", "typescript": "5.7.2" }, "peerDependencies": { diff --git a/libs/@blockprotocol/graph/package.json b/libs/@blockprotocol/graph/package.json index 8c16756ca51..f4e35e95fbd 100644 --- a/libs/@blockprotocol/graph/package.json +++ b/libs/@blockprotocol/graph/package.json @@ -79,7 +79,7 @@ "@local/tsconfig": "0.0.0-private", "@types/lodash.isequal": "4.5.8", "@types/node": "22.10.2", - "@types/react": "18.2.68", + "@types/react": "18.3.16", "eslint": "9.17.0", "rimraf": "6.0.1", "typescript": "5.7.2" diff --git a/libs/@blockprotocol/type-system/typescript/package.json b/libs/@blockprotocol/type-system/typescript/package.json index 38ef9b785cd..b0387ac9a31 100644 --- a/libs/@blockprotocol/type-system/typescript/package.json +++ b/libs/@blockprotocol/type-system/typescript/package.json @@ -60,10 +60,10 @@ "@rollup/plugin-typescript": "12.1.2", "@rollup/plugin-wasm": "6.2.2", "@types/node": "22.10.2", - "@types/react": "18.2.68", + "@types/react": "18.3.16", "@vitest/coverage-istanbul": "2.1.8", "eslint": "9.17.0", - "react": "18.2.0", + "react": "18.3.1", "rimraf": "6.0.1", "rollup": "4.28.1", "tslib": "2.8.1", diff --git a/libs/@hashintel/block-design-system/package.json b/libs/@hashintel/block-design-system/package.json index 8e74910c2b1..0e35523c178 100644 --- a/libs/@hashintel/block-design-system/package.json +++ b/libs/@hashintel/block-design-system/package.json @@ -43,13 +43,13 @@ "@local/tsconfig": "0.0.0-private", "@mui/material": "5.16.11", "@mui/system": "5.16.8", - "@types/react": "18.2.68", - "@types/react-dom": "18.2.25", + "@types/react": "18.3.16", + "@types/react-dom": "18.3.5", "@types/react-syntax-highlighter": "15.5.13", "eslint": "9.17.0", "eslint-plugin-storybook": "0.11.1", - "react": "18.2.0", - "react-dom": "18.2.0", + "react": "18.3.1", + "react-dom": "18.3.1", "typescript": "5.7.2" }, "peerDependencies": { diff --git a/libs/@hashintel/design-system/package.json b/libs/@hashintel/design-system/package.json index 36ef432c97b..73af4ce1dde 100644 --- a/libs/@hashintel/design-system/package.json +++ b/libs/@hashintel/design-system/package.json @@ -59,12 +59,12 @@ "@mui/material": "5.16.11", "@mui/system": "5.16.8", "@storybook/react": "7.6.20", - "@types/react": "18.2.68", - "@types/react-dom": "18.2.25", + "@types/react": "18.3.16", + "@types/react-dom": "18.3.5", "eslint": "9.17.0", "eslint-plugin-storybook": "0.11.1", - "react": "18.2.0", - "react-dom": "18.2.0", + "react": "18.3.1", + "react-dom": "18.3.1", "typescript": "5.7.2" }, "peerDependencies": { diff --git a/libs/@hashintel/query-editor/package.json b/libs/@hashintel/query-editor/package.json index 85aa2c762df..7d176c11089 100644 --- a/libs/@hashintel/query-editor/package.json +++ b/libs/@hashintel/query-editor/package.json @@ -33,8 +33,8 @@ "@mui/system": "5.16.8", "eslint": "9.17.0", "eslint-plugin-storybook": "0.11.1", - "react": "18.2.0", - "react-dom": "18.2.0", + "react": "18.3.1", + "react-dom": "18.3.1", "react-hook-form": "7.54.1", "typescript": "5.7.2" }, diff --git a/libs/@hashintel/type-editor/package.json b/libs/@hashintel/type-editor/package.json index 1ca8711b90f..a22b739ad4b 100644 --- a/libs/@hashintel/type-editor/package.json +++ b/libs/@hashintel/type-editor/package.json @@ -42,8 +42,8 @@ "@types/lodash.uniqueid": "4.0.9", "eslint": "9.17.0", "eslint-plugin-storybook": "0.11.1", - "react": "18.2.0", - "react-dom": "18.2.0", + "react": "18.3.1", + "react-dom": "18.3.1", "react-hook-form": "7.54.1", "typescript": "5.7.2" }, diff --git a/libs/@hashintel/type-editor/src/entity-type-editor/shared/type-form.tsx b/libs/@hashintel/type-editor/src/entity-type-editor/shared/type-form.tsx index 71a86831274..7055b476158 100644 --- a/libs/@hashintel/type-editor/src/entity-type-editor/shared/type-form.tsx +++ b/libs/@hashintel/type-editor/src/entity-type-editor/shared/type-form.tsx @@ -200,6 +200,7 @@ type PolymorphicComponent< // @ts-expect-error -- fix this at some point, search 'PolymorphicComponent with forwardRef' export const TypeFormModal: PolymorphicComponent = forwardRef( + // @ts-expect-error -- fix this at some point, search 'PolymorphicComponent with forwardRef' ( props: TypeFormModalProps, ref: Ref, diff --git a/libs/@local/advanced-types/package.json b/libs/@local/advanced-types/package.json index e9bbc4387f9..2d98e73bc8c 100644 --- a/libs/@local/advanced-types/package.json +++ b/libs/@local/advanced-types/package.json @@ -25,7 +25,7 @@ "@local/eslint": "0.0.0-private", "@local/tsconfig": "0.0.0-private", "eslint": "9.17.0", - "react": "18.2.0", + "react": "18.3.1", "rimraf": "6.0.1", "typescript": "5.7.2" } diff --git a/libs/@local/hash-isomorphic-utils/package.json b/libs/@local/hash-isomorphic-utils/package.json index 7d6fb6cc46a..83de35a1b32 100644 --- a/libs/@local/hash-isomorphic-utils/package.json +++ b/libs/@local/hash-isomorphic-utils/package.json @@ -71,7 +71,7 @@ "graphql": "16.10.0", "next": "13.5.5", "prettier": "3.4.2", - "react": "18.2.0", + "react": "18.3.1", "rimraf": "6.0.1", "typescript": "5.7.2", "vitest": "2.1.8" diff --git a/package.json b/package.json index c7264009618..4962e4c34ae 100644 --- a/package.json +++ b/package.json @@ -87,7 +87,7 @@ "@tldraw/editor@npm:2.0.0-alpha.12": "patch:@tldraw/editor@npm%3A2.0.0-alpha.12#~/.yarn/patches/@tldraw-editor-npm-2.0.0-alpha.12-ba59bf001c.patch", "@tldraw/tlschema@npm:2.0.0-alpha.12": "patch:@tldraw/tlschema@npm%3A2.0.0-alpha.12#~/.yarn/patches/@tldraw-tlschema-npm-2.0.0-alpha.12-13bf88407b.patch", "@types/express": "4.17.21", - "@types/react": "18.2.68", + "@types/react": "18.3.16", "blockprotocol@npm:0.0.10": "patch:blockprotocol@npm%3A0.0.12#~/.yarn/patches/blockprotocol-npm-0.0.12-2558a31f0a.patch", "prosemirror-model@npm:>=1.0.0": "patch:prosemirror-model@npm%3A1.18.2#~/.yarn/patches/prosemirror-model-npm-1.18.2-479d845b52.patch", "prosemirror-model@npm:^1.0.0": "patch:prosemirror-model@npm%3A1.18.2#~/.yarn/patches/prosemirror-model-npm-1.18.2-479d845b52.patch", @@ -96,8 +96,8 @@ "prosemirror-model@npm:^1.21.0": "patch:prosemirror-model@npm%3A1.18.2#~/.yarn/patches/prosemirror-model-npm-1.18.2-479d845b52.patch", "prosemirror-view@npm:^1.1.0": "patch:prosemirror-view@npm%3A1.29.1#~/.yarn/patches/prosemirror-view-npm-1.29.1-ff37db4eea.patch", "prosemirror-view@npm:^1.27.0": "patch:prosemirror-view@npm%3A1.29.1#~/.yarn/patches/prosemirror-view-npm-1.29.1-ff37db4eea.patch", - "react": "18.2.0", - "react-dom": "18.2.0" + "react": "18.3.1", + "react-dom": "18.3.1" }, "devDependencies": { "@changesets/changelog-github": "0.4.8", diff --git a/yarn.lock b/yarn.lock index fc0b794c62c..fb17ac82b6f 100644 --- a/yarn.lock +++ b/yarn.lock @@ -527,9 +527,9 @@ __metadata: "@types/lodash": "npm:4.17.13" "@types/papaparse": "npm:5.3.15" "@types/prismjs": "npm:1.26.5" - "@types/react": "npm:18.2.68" + "@types/react": "npm:18.3.16" "@types/react-beautiful-dnd": "npm:13.1.8" - "@types/react-dom": "npm:18.2.25" + "@types/react-dom": "npm:18.3.5" "@types/react-window": "npm:1.8.8" "@types/url-regex-safe": "npm:1.0.2" "@types/uuid": "npm:10.0.0" @@ -573,9 +573,9 @@ __metadata: prosemirror-state: "npm:1.4.3" prosemirror-transform: "npm:1.7.0" prosemirror-view: "patch:prosemirror-view@npm%3A1.29.1#~/.yarn/patches/prosemirror-view-npm-1.29.1-ff37db4eea.patch" - react: "npm:18.2.0" + react: "npm:18.3.1" react-beautiful-dnd: "npm:13.1.1" - react-dom: "npm:18.2.0" + react-dom: "npm:18.3.1" react-dropzone: "npm:14.3.5" react-full-screen: "npm:1.1.1" react-hook-form: "npm:7.54.1" @@ -708,8 +708,8 @@ __metadata: "@storybook/react": "npm:7.6.20" "@storybook/react-webpack5": "npm:7.6.20" "@storybook/testing-library": "npm:0.2.2" - "@types/react": "npm:18.2.68" - "@types/react-dom": "npm:18.2.25" + "@types/react": "npm:18.3.16" + "@types/react-dom": "npm:18.3.5" storybook: "npm:7.6.20" peerDependencies: "@emotion/cache": 11.14.0 @@ -745,8 +745,8 @@ __metadata: "@types/md5": "npm:2.3.5" "@types/node": "npm:22.10.2" "@types/prismjs": "npm:1.26.5" - "@types/react": "npm:18.2.68" - "@types/react-dom": "npm:18.2.25" + "@types/react": "npm:18.3.16" + "@types/react-dom": "npm:18.3.5" "@types/react-html-parser": "npm:2.0.6" "@types/unist": "npm:2.0.11" axios: "npm:1.7.9" @@ -773,8 +773,8 @@ __metadata: nextjs-progressbar: "npm:0.0.16" plaiceholder: "npm:2.5.0" prismjs: "npm:1.29.0" - react: "npm:18.2.0" - react-dom: "npm:18.2.0" + react: "npm:18.3.1" + react-dom: "npm:18.3.1" react-full-screen: "npm:1.1.1" react-html-parser: "npm:2.0.2" remark-gfm: "npm:3.0.1" @@ -817,8 +817,8 @@ __metadata: "@sentry/browser": "npm:7.120.2" "@sentry/webpack-plugin": "npm:2.22.7" "@types/lodash.debounce": "npm:4.0.9" - "@types/react": "npm:18.2.68" - "@types/react-dom": "npm:18.2.25" + "@types/react": "npm:18.3.16" + "@types/react-dom": "npm:18.3.5" "@types/webextension-polyfill": "patch:@types/webextension-polyfill@npm%3A0.10.4#~/.yarn/patches/@types-webextension-polyfill-npm-0.10.4-291152c615.patch" "@types/ws": "npm:8.5.13" babel-loader: "npm:9.2.1" @@ -838,9 +838,9 @@ __metadata: html-webpack-plugin: "npm:5.6.3" lodash.debounce: "npm:4.0.8" process: "npm:0.11.10" - react: "npm:18.2.0" - react-dom: "npm:18.2.0" - react-refresh: "npm:0.14.0" + react: "npm:18.3.1" + react-dom: "npm:18.3.1" + react-refresh: "npm:0.16.0" react-refresh-typescript: "npm:2.0.9" rimraf: "npm:6.0.1" sass: "npm:1.83.0" @@ -4512,7 +4512,7 @@ __metadata: "@local/tsconfig": "npm:0.0.0-private" "@types/lodash.isequal": "npm:4.5.8" "@types/node": "npm:22.10.2" - "@types/react": "npm:18.2.68" + "@types/react": "npm:18.3.16" ajv: "npm:8.17.1" ajv-formats: "npm:3.0.1" eslint: "npm:9.17.0" @@ -4601,10 +4601,10 @@ __metadata: "@rollup/plugin-typescript": "npm:12.1.2" "@rollup/plugin-wasm": "npm:6.2.2" "@types/node": "npm:22.10.2" - "@types/react": "npm:18.2.68" + "@types/react": "npm:18.3.16" "@vitest/coverage-istanbul": "npm:2.1.8" eslint: "npm:9.17.0" - react: "npm:18.2.0" + react: "npm:18.3.1" rimraf: "npm:6.0.1" rollup: "npm:4.28.1" tslib: "npm:2.8.1" @@ -4627,15 +4627,15 @@ __metadata: "@local/eslint": "npm:0.0.0-private" "@mui/material": "npm:5.16.11" "@types/lodash.debounce": "npm:4.0.9" - "@types/react-dom": "npm:18.2.25" + "@types/react-dom": "npm:18.3.5" "@types/uuid": "npm:10.0.0" block-scripts: "npm:0.3.4" eslint: "npm:9.17.0" lodash.debounce: "npm:4.0.8" mock-block-dock: "npm:0.1.9" prettier: "npm:3.4.2" - react: "npm:18.2.0" - react-dom: "npm:18.2.0" + react: "npm:18.3.1" + react-dom: "npm:18.3.1" react-sizeme: "npm:3.0.2" rooks: "npm:7.14.1" typescript: "npm:5.7.2" @@ -4658,14 +4658,14 @@ __metadata: "@local/eslint": "npm:0.0.0-private" "@local/tsconfig": "npm:0.0.0-private" "@mui/material": "npm:5.16.11" - "@types/react-dom": "npm:18.2.25" + "@types/react-dom": "npm:18.3.5" "@types/uuid": "npm:10.0.0" block-scripts: "npm:0.3.4" eslint: "npm:9.17.0" mock-block-dock: "npm:0.1.9" prettier: "npm:3.4.2" - react: "npm:18.2.0" - react-dom: "npm:18.2.0" + react: "npm:18.3.1" + react-dom: "npm:18.3.1" react-sizeme: "npm:3.0.2" react-transition-group: "npm:4.4.5" react-type-animation: "npm:3.2.0" @@ -4688,14 +4688,14 @@ __metadata: "@local/eslint": "npm:0.0.0-private" "@local/tsconfig": "npm:0.0.0-private" "@mui/material": "npm:5.16.11" - "@types/react-dom": "npm:18.2.25" + "@types/react-dom": "npm:18.3.5" "@types/uuid": "npm:10.0.0" block-scripts: "npm:0.3.4" eslint: "npm:9.17.0" mock-block-dock: "npm:0.1.9" prettier: "npm:3.4.2" - react: "npm:18.2.0" - react-dom: "npm:18.2.0" + react: "npm:18.3.1" + react-dom: "npm:18.3.1" react-sizeme: "npm:3.0.2" typescript: "npm:5.7.2" uuid: "npm:9.0.1" @@ -4716,13 +4716,13 @@ __metadata: "@local/eslint": "npm:0.0.0-private" "@local/tsconfig": "npm:0.0.0-private" "@mui/material": "npm:5.16.11" - "@types/react-dom": "npm:18.2.25" + "@types/react-dom": "npm:18.3.5" block-scripts: "npm:0.3.4" eslint: "npm:9.17.0" mock-block-dock: "npm:0.1.9" prettier: "npm:3.4.2" - react: "npm:18.2.0" - react-dom: "npm:18.2.0" + react: "npm:18.3.1" + react-dom: "npm:18.3.1" typescript: "npm:5.7.2" peerDependencies: react: ^18.0.0 @@ -4738,13 +4738,13 @@ __metadata: "@blockprotocol/hook": "npm:0.1.3" "@local/eslint": "npm:0.0.0-private" "@local/tsconfig": "npm:0.0.0-private" - "@types/react-dom": "npm:18.2.25" + "@types/react-dom": "npm:18.3.5" block-scripts: "npm:0.3.4" eslint: "npm:9.17.0" mock-block-dock: "npm:0.1.9" prettier: "npm:3.4.2" - react: "npm:18.2.0" - react-dom: "npm:18.2.0" + react: "npm:18.3.1" + react-dom: "npm:18.3.1" typescript: "npm:5.7.2" peerDependencies: react: ^18.2.0 @@ -4766,7 +4766,7 @@ __metadata: "@local/tsconfig": "npm:0.0.0-private" "@mui/material": "npm:5.16.11" "@types/lodash.debounce": "npm:4.0.9" - "@types/react-dom": "npm:18.2.25" + "@types/react-dom": "npm:18.3.5" "@types/react-is": "npm:18.3.1" block-scripts: "npm:0.3.4" echarts: "npm:5.5.1" @@ -4774,8 +4774,8 @@ __metadata: lodash.debounce: "npm:4.0.8" mock-block-dock: "npm:0.1.9" prettier: "npm:3.4.2" - react: "npm:18.2.0" - react-dom: "npm:18.2.0" + react: "npm:18.3.1" + react-dom: "npm:18.3.1" react-hook-form: "npm:7.54.1" typescript: "npm:5.7.2" peerDependencies: @@ -4792,14 +4792,14 @@ __metadata: "@local/eslint": "npm:0.0.0-private" "@local/tsconfig": "npm:0.0.0-private" "@types/prismjs": "npm:1.26.5" - "@types/react-dom": "npm:18.2.25" + "@types/react-dom": "npm:18.3.5" block-scripts: "npm:0.3.4" eslint: "npm:9.17.0" mock-block-dock: "npm:0.1.9" prettier: "npm:3.4.2" prismjs: "npm:1.29.0" - react: "npm:18.2.0" - react-dom: "npm:18.2.0" + react: "npm:18.3.1" + react-dom: "npm:18.3.1" typescript: "npm:5.7.2" peerDependencies: react: ^18.2.0 @@ -4815,15 +4815,15 @@ __metadata: "@local/eslint": "npm:0.0.0-private" "@local/tsconfig": "npm:0.0.0-private" "@types/react-datepicker": "npm:4.19.6" - "@types/react-dom": "npm:18.2.25" + "@types/react-dom": "npm:18.3.5" block-scripts: "npm:0.3.4" date-fns: "npm:4.1.0" eslint: "npm:9.17.0" mock-block-dock: "npm:0.1.9" prettier: "npm:3.4.2" - react: "npm:18.2.0" + react: "npm:18.3.1" react-datepicker: "npm:4.25.0" - react-dom: "npm:18.2.0" + react-dom: "npm:18.3.1" typescript: "npm:5.7.2" peerDependencies: react: ^18.2.0 @@ -4839,13 +4839,13 @@ __metadata: "@blockprotocol/graph": "npm:0.3.4" "@local/eslint": "npm:0.0.0-private" "@local/tsconfig": "npm:0.0.0-private" - "@types/react-dom": "npm:18.2.25" + "@types/react-dom": "npm:18.3.5" block-scripts: "npm:0.3.4" eslint: "npm:9.17.0" mock-block-dock: "npm:0.1.9" prettier: "npm:3.4.2" - react: "npm:18.2.0" - react-dom: "npm:18.2.0" + react: "npm:18.3.1" + react-dom: "npm:18.3.1" typescript: "npm:5.7.2" peerDependencies: react: ^18.2.0 @@ -4860,14 +4860,14 @@ __metadata: "@local/eslint": "npm:0.0.0-private" "@local/tsconfig": "npm:0.0.0-private" "@types/lodash": "npm:4.17.13" - "@types/react-dom": "npm:18.0.9" + "@types/react-dom": "npm:18.3.5" block-scripts: "npm:0.0.14" blockprotocol: "patch:blockprotocol@npm%3A0.0.12#~/.yarn/patches/blockprotocol-npm-0.0.12-2558a31f0a.patch" eslint: "npm:9.17.0" lodash: "npm:4.17.21" mock-block-dock: "npm:0.0.10" - react: "npm:18.2.0" - react-dom: "npm:18.2.0" + react: "npm:18.3.1" + react-dom: "npm:18.3.1" twind: "npm:0.16.19" typescript: "npm:5.7.2" peerDependencies: @@ -4886,14 +4886,14 @@ __metadata: "@hashintel/design-system": "npm:0.0.8" "@local/eslint": "npm:0.0.0-private" "@mui/material": "npm:5.16.11" - "@types/react-dom": "npm:18.2.25" + "@types/react-dom": "npm:18.3.5" "@types/uuid": "npm:10.0.0" block-scripts: "npm:0.3.4" eslint: "npm:9.17.0" mock-block-dock: "npm:0.1.9" prettier: "npm:3.4.2" - react: "npm:18.2.0" - react-dom: "npm:18.2.0" + react: "npm:18.3.1" + react-dom: "npm:18.3.1" typescript: "npm:5.7.2" uuid: "npm:9.0.1" peerDependencies: @@ -4910,13 +4910,13 @@ __metadata: "@blockprotocol/hook": "npm:0.1.3" "@local/eslint": "npm:0.0.0-private" "@local/tsconfig": "npm:0.0.0-private" - "@types/react-dom": "npm:18.2.25" + "@types/react-dom": "npm:18.3.5" block-scripts: "npm:0.3.4" eslint: "npm:9.17.0" mock-block-dock: "npm:0.1.9" prettier: "npm:3.4.2" - react: "npm:18.2.0" - react-dom: "npm:18.2.0" + react: "npm:18.3.1" + react-dom: "npm:18.3.1" typescript: "npm:5.7.2" peerDependencies: react: ^18.2.0 @@ -4933,14 +4933,14 @@ __metadata: "@hashintel/design-system": "npm:0.0.8" "@local/eslint": "npm:0.0.0-private" "@mui/material": "npm:5.16.11" - "@types/react-dom": "npm:18.2.25" + "@types/react-dom": "npm:18.3.5" "@types/uuid": "npm:10.0.0" block-scripts: "npm:0.3.4" eslint: "npm:9.17.0" mock-block-dock: "npm:0.1.9" prettier: "npm:3.4.2" - react: "npm:18.2.0" - react-dom: "npm:18.2.0" + react: "npm:18.3.1" + react-dom: "npm:18.3.1" react-sizeme: "npm:3.0.2" typescript: "npm:5.7.2" uuid: "npm:9.0.1" @@ -4958,13 +4958,13 @@ __metadata: "@blockprotocol/hook": "npm:0.1.3" "@local/eslint": "npm:0.0.0-private" "@local/tsconfig": "npm:0.0.0-private" - "@types/react-dom": "npm:18.2.25" + "@types/react-dom": "npm:18.3.5" block-scripts: "npm:0.3.4" eslint: "npm:9.17.0" mock-block-dock: "npm:0.1.9" prettier: "npm:3.4.2" - react: "npm:18.2.0" - react-dom: "npm:18.2.0" + react: "npm:18.3.1" + react-dom: "npm:18.3.1" twind: "npm:0.16.19" typescript: "npm:5.7.2" peerDependencies: @@ -4989,7 +4989,7 @@ __metadata: "@types/lodash.clonedeep": "npm:4.5.9" "@types/lodash.debounce": "npm:4.0.9" "@types/lodash.isequal": "npm:4.5.8" - "@types/react-dom": "npm:18.2.25" + "@types/react-dom": "npm:18.3.5" block-scripts: "npm:0.3.4" clsx: "npm:1.2.1" eslint: "npm:9.17.0" @@ -4998,8 +4998,8 @@ __metadata: lodash.isequal: "npm:4.5.0" mock-block-dock: "npm:0.1.9" prettier: "npm:3.4.2" - react: "npm:18.2.0" - react-dom: "npm:18.2.0" + react: "npm:18.3.1" + react-dom: "npm:18.3.1" react-textarea-autosize: "npm:8.5.6" typescript: "npm:5.7.2" peerDependencies: @@ -5015,15 +5015,15 @@ __metadata: "@blockprotocol/graph": "npm:0.3.4" "@local/eslint": "npm:0.0.0-private" "@local/tsconfig": "npm:0.0.0-private" - "@types/react-dom": "npm:18.2.25" + "@types/react-dom": "npm:18.3.5" block-scripts: "npm:0.3.4" eslint: "npm:9.17.0" lit: "npm:2.8.0" mine-sweeper-tag: "npm:1.0.6" mock-block-dock: "npm:0.1.9" prettier: "npm:3.4.2" - react: "npm:18.2.0" - react-dom: "npm:18.2.0" + react: "npm:18.3.1" + react-dom: "npm:18.3.1" typescript: "npm:5.7.2" languageName: unknown linkType: soft @@ -5036,13 +5036,13 @@ __metadata: "@blockprotocol/hook": "npm:0.1.3" "@local/eslint": "npm:0.0.0-private" "@local/tsconfig": "npm:0.0.0-private" - "@types/react-dom": "npm:18.2.25" + "@types/react-dom": "npm:18.3.5" block-scripts: "npm:0.3.4" eslint: "npm:9.17.0" mock-block-dock: "npm:0.1.9" prettier: "npm:3.4.2" - react: "npm:18.2.0" - react-dom: "npm:18.2.0" + react: "npm:18.3.1" + react-dom: "npm:18.3.1" typescript: "npm:5.7.2" peerDependencies: react: ^18.2.0 @@ -5058,13 +5058,13 @@ __metadata: "@local/eslint": "npm:0.0.0-private" "@local/tsconfig": "npm:0.0.0-private" "@types/dompurify": "npm:2.4.0" - "@types/react-dom": "npm:18.0.9" + "@types/react-dom": "npm:18.3.5" block-scripts: "npm:0.0.14" dompurify: "npm:2.5.8" eslint: "npm:9.17.0" mock-block-dock: "npm:0.0.38" - react: "npm:18.2.0" - react-dom: "npm:18.2.0" + react: "npm:18.3.1" + react-dom: "npm:18.3.1" typescript: "npm:5.7.2" peerDependencies: react: ^18.2.0 @@ -5093,8 +5093,8 @@ __metadata: lodash.isequal: "npm:4.5.0" mock-block-dock: "npm:0.1.9" prettier: "npm:3.4.2" - react: "npm:18.2.0" - react-dom: "npm:18.2.0" + react: "npm:18.3.1" + react-dom: "npm:18.3.1" typescript: "npm:5.7.2" uuid: "npm:9.0.1" peerDependencies: @@ -5118,7 +5118,7 @@ __metadata: "@types/lodash.debounce": "npm:4.0.9" "@types/lodash.isequal": "npm:4.5.8" "@types/lodash.uniqueid": "npm:4.0.9" - "@types/react-dom": "npm:18.2.25" + "@types/react-dom": "npm:18.3.5" block-scripts: "npm:0.3.4" clsx: "npm:1.2.1" eslint: "npm:9.17.0" @@ -5128,9 +5128,9 @@ __metadata: lodash.uniqueid: "npm:4.0.1" mock-block-dock: "npm:0.1.9" prettier: "npm:3.4.2" - react: "npm:18.2.0" + react: "npm:18.3.1" react-device-detect: "npm:2.2.3" - react-dom: "npm:18.2.0" + react-dom: "npm:18.3.1" react-laag: "npm:2.0.5" react-sizeme: "npm:3.0.2" rooks: "npm:7.14.1" @@ -5148,15 +5148,15 @@ __metadata: "@blockprotocol/graph": "npm:0.3.4" "@local/eslint": "npm:0.0.0-private" "@local/tsconfig": "npm:0.0.0-private" - "@types/react-dom": "npm:18.2.25" + "@types/react-dom": "npm:18.3.5" block-scripts: "npm:0.3.4" date-fns: "npm:4.1.0" duration-fns: "npm:3.0.2" eslint: "npm:9.17.0" mock-block-dock: "npm:0.1.9" prettier: "npm:3.4.2" - react: "npm:18.2.0" - react-dom: "npm:18.2.0" + react: "npm:18.3.1" + react-dom: "npm:18.3.1" typescript: "npm:5.7.2" peerDependencies: react: ^18.2.0 @@ -5171,13 +5171,13 @@ __metadata: "@blockprotocol/graph": "npm:0.3.4" "@local/eslint": "npm:0.0.0-private" "@local/tsconfig": "npm:0.0.0-private" - "@types/react-dom": "npm:18.2.25" + "@types/react-dom": "npm:18.3.5" block-scripts: "npm:0.3.4" eslint: "npm:9.17.0" mock-block-dock: "npm:0.1.9" prettier: "npm:3.4.2" - react: "npm:18.2.0" - react-dom: "npm:18.2.0" + react: "npm:18.3.1" + react-dom: "npm:18.3.1" twind: "npm:0.16.19" typescript: "npm:5.7.2" peerDependencies: @@ -7834,14 +7834,14 @@ __metadata: "@local/tsconfig": "npm:0.0.0-private" "@mui/material": "npm:5.16.11" "@mui/system": "npm:5.16.8" - "@types/react": "npm:18.2.68" - "@types/react-dom": "npm:18.2.25" + "@types/react": "npm:18.3.16" + "@types/react-dom": "npm:18.3.5" "@types/react-syntax-highlighter": "npm:15.5.13" eslint: "npm:9.17.0" eslint-plugin-storybook: "npm:0.11.1" lowlight: "npm:2.9.0" - react: "npm:18.2.0" - react-dom: "npm:18.2.0" + react: "npm:18.3.1" + react-dom: "npm:18.3.1" react-syntax-highlighter: "npm:15.6.1" react-type-animation: "npm:3.2.0" typescript: "npm:5.7.2" @@ -7872,14 +7872,14 @@ __metadata: "@mui/material": "npm:5.16.11" "@mui/system": "npm:5.16.8" "@storybook/react": "npm:7.6.20" - "@types/react": "npm:18.2.68" - "@types/react-dom": "npm:18.2.25" + "@types/react": "npm:18.3.16" + "@types/react-dom": "npm:18.3.5" clsx: "npm:1.2.1" echarts: "npm:5.5.1" eslint: "npm:9.17.0" eslint-plugin-storybook: "npm:0.11.1" - react: "npm:18.2.0" - react-dom: "npm:18.2.0" + react: "npm:18.3.1" + react-dom: "npm:18.3.1" react-loading-skeleton: "npm:3.5.0" typescript: "npm:5.7.2" peerDependencies: @@ -7908,8 +7908,8 @@ __metadata: clsx: "npm:1.2.1" eslint: "npm:9.17.0" eslint-plugin-storybook: "npm:0.11.1" - react: "npm:18.2.0" - react-dom: "npm:18.2.0" + react: "npm:18.3.1" + react-dom: "npm:18.3.1" react-hook-form: "npm:7.54.1" typescript: "npm:5.7.2" peerDependencies: @@ -7943,8 +7943,8 @@ __metadata: lodash.memoize: "npm:4.1.2" lodash.uniqueid: "npm:4.0.1" material-ui-popup-state: "npm:4.1.0" - react: "npm:18.2.0" - react-dom: "npm:18.2.0" + react: "npm:18.3.1" + react-dom: "npm:18.3.1" react-hook-form: "npm:7.54.1" rooks: "npm:7.14.1" setimmediate: "npm:1.0.5" @@ -9004,7 +9004,7 @@ __metadata: "@local/eslint": "npm:0.0.0-private" "@local/tsconfig": "npm:0.0.0-private" eslint: "npm:9.17.0" - react: "npm:18.2.0" + react: "npm:18.3.1" rimraf: "npm:6.0.1" typescript: "npm:5.7.2" languageName: unknown @@ -9219,7 +9219,7 @@ __metadata: prosemirror-state: "npm:1.4.3" prosemirror-transform: "npm:1.7.0" prosemirror-view: "patch:prosemirror-view@npm%3A1.29.1#~/.yarn/patches/prosemirror-view-npm-1.29.1-ff37db4eea.patch" - react: "npm:18.2.0" + react: "npm:18.3.1" rimraf: "npm:6.0.1" serialize-error: "npm:11.0.3" tsx: "npm:4.19.2" @@ -18157,21 +18157,12 @@ __metadata: languageName: node linkType: hard -"@types/react-dom@npm:18.0.9": - version: 18.0.9 - resolution: "@types/react-dom@npm:18.0.9" - dependencies: - "@types/react": "npm:*" - checksum: 10c0/1c85b0889f15631132816fba93bf3aaa7b11cd0ce6f4a825d3c863a46b1b8d0b7fcdf03d7fcdf761f4a2e38312e5f26fc9b9ba34b486ee9f160477b9103625af - languageName: node - linkType: hard - -"@types/react-dom@npm:18.2.25": - version: 18.2.25 - resolution: "@types/react-dom@npm:18.2.25" - dependencies: - "@types/react": "npm:*" - checksum: 10c0/87604407eca6884c5b4d4657cb511dc5ba28ea1cfa5d0ce1fc2d659a7ad1b64ae85dcda60e3f010641f9a52a6a60dfcaa6be3b0d0de9d624475052a13dae01f4 +"@types/react-dom@npm:18.3.5": + version: 18.3.5 + resolution: "@types/react-dom@npm:18.3.5" + peerDependencies: + "@types/react": ^18.0.0 + checksum: 10c0/b163d35a6b32a79f5782574a7aeb12a31a647e248792bf437e6d596e2676961c394c5e3c6e91d1ce44ae90441dbaf93158efb4f051c0d61e2612f1cb04ce4faa languageName: node linkType: hard @@ -18233,14 +18224,13 @@ __metadata: languageName: node linkType: hard -"@types/react@npm:18.2.68": - version: 18.2.68 - resolution: "@types/react@npm:18.2.68" +"@types/react@npm:18.3.16": + version: 18.3.16 + resolution: "@types/react@npm:18.3.16" dependencies: "@types/prop-types": "npm:*" - "@types/scheduler": "npm:*" csstype: "npm:^3.0.2" - checksum: 10c0/c22e47cd8ba6d4e85681444e7fb8c5829bd86f51778222f09412ab00c2a766634500c8ff54331064ba27476fa5f20564464338816cf91ec1df1dddf8efea1e1e + checksum: 10c0/9113d3003865eda07be0fb596f5bd8d7784b8900675090c56e75bdee45499f0b0de2481cbbeb5980c3b4ad18f234a49f39c9e62fd7b89a4e8530c74789f739bd languageName: node linkType: hard @@ -18312,13 +18302,6 @@ __metadata: languageName: node linkType: hard -"@types/scheduler@npm:*": - version: 0.23.0 - resolution: "@types/scheduler@npm:0.23.0" - checksum: 10c0/5cf7f2ba3732b74877559eb20b19f95fcd0a20c17dcb20e75a7ca7c7369cd455aeb2d406b3ff5a38168a9750da3bad78dd20d96d11118468b78f4959b8e56090 - languageName: node - linkType: hard - "@types/semver@npm:^6.0.0": version: 6.2.7 resolution: "@types/semver@npm:6.2.7" @@ -40229,15 +40212,15 @@ __metadata: languageName: node linkType: hard -"react-dom@npm:18.2.0": - version: 18.2.0 - resolution: "react-dom@npm:18.2.0" +"react-dom@npm:18.3.1": + version: 18.3.1 + resolution: "react-dom@npm:18.3.1" dependencies: loose-envify: "npm:^1.1.0" - scheduler: "npm:^0.23.0" + scheduler: "npm:^0.23.2" peerDependencies: - react: ^18.2.0 - checksum: 10c0/66dfc5f93e13d0674e78ef41f92ed21dfb80f9c4ac4ac25a4b51046d41d4d2186abc915b897f69d3d0ebbffe6184e7c5876f2af26bfa956f179225d921be713a + react: ^18.3.1 + checksum: 10c0/a752496c1941f958f2e8ac56239172296fcddce1365ce45222d04a1947e0cc5547df3e8447f855a81d6d39f008d7c32eab43db3712077f09e3f67c4874973e85 languageName: node linkType: hard @@ -40543,10 +40526,10 @@ __metadata: languageName: node linkType: hard -"react-refresh@npm:0.14.0": - version: 0.14.0 - resolution: "react-refresh@npm:0.14.0" - checksum: 10c0/b8ae07ad153357d77830928a7f1fc2df837aabefee907fa273ba04c7643f3b860e986f1d4b7ada9b721c8d79b8c24b5b911a314a1a2398b105f1b13d19ea2b8d +"react-refresh@npm:0.16.0": + version: 0.16.0 + resolution: "react-refresh@npm:0.16.0" + checksum: 10c0/122525dbd7a44140757f46b8b93df6a349126e64b270809a8f082809662be5837a97310e56df2cfc7dac98b8adfaaafa570ec579c8b269c374e6928394307c68 languageName: node linkType: hard @@ -40765,12 +40748,12 @@ __metadata: languageName: node linkType: hard -"react@npm:18.2.0": - version: 18.2.0 - resolution: "react@npm:18.2.0" +"react@npm:18.3.1": + version: 18.3.1 + resolution: "react@npm:18.3.1" dependencies: loose-envify: "npm:^1.1.0" - checksum: 10c0/b562d9b569b0cb315e44b48099f7712283d93df36b19a39a67c254c6686479d3980b7f013dc931f4a5a3ae7645eae6386b4aa5eea933baa54ecd0f9acb0902b8 + checksum: 10c0/283e8c5efcf37802c9d1ce767f302dd569dd97a70d9bb8c7be79a789b9902451e0d16334b05d73299b20f048cbc3c7d288bbbde10b701fa194e2089c237dbea3 languageName: node linkType: hard From 1475d9199d26ed0b1b53960d37e7902a06a155f0 Mon Sep 17 00:00:00 2001 From: "hash-worker[bot]" <180894564+hash-worker[bot]@users.noreply.github.com> Date: Wed, 18 Dec 2024 00:46:12 +0000 Subject: [PATCH 036/159] Update Rust crate `clap_complete` to v4.5.40 (#5946) Co-authored-by: hash-worker[bot] <180894564+hash-worker[bot]@users.noreply.github.com> --- Cargo.lock | 4 ++-- Cargo.toml | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index 15d933215a6..711a69b0a00 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -1248,9 +1248,9 @@ dependencies = [ [[package]] name = "clap_complete" -version = "4.5.39" +version = "4.5.40" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "fd4db298d517d5fa00b2b84bbe044efd3fde43874a41db0d46f91994646a2da4" +checksum = "ac2e663e3e3bed2d32d065a8404024dad306e699a04263ec59919529f803aee9" dependencies = [ "clap", ] diff --git a/Cargo.toml b/Cargo.toml index 4b493093c72..ddfa348c192 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -160,7 +160,7 @@ aws-sdk-s3 = { version = "=1.65.0", default-features = false } bitvec = { version = "=1.0.1", default-features = false } bytes-utils = { version = "=0.1.4", default-features = false } clap = { version = "=4.5.23", features = ["color", "error-context", "help", "std", "suggestions", "usage"] } -clap_complete = { version = "=4.5.39", default-features = false } +clap_complete = { version = "=4.5.40", default-features = false } convert_case = { version = "=0.6.0", default-features = false } criterion-macro = { version = "=0.4.0", default-features = false } derive-where = { version = "=1.2.7", default-features = false, features = ["nightly"] } From 3c193bf0431f3eea4b65f5588471acf396e191cd Mon Sep 17 00:00:00 2001 From: "hash-worker[bot]" <180894564+hash-worker[bot]@users.noreply.github.com> Date: Wed, 18 Dec 2024 00:56:15 +0000 Subject: [PATCH 037/159] Update npm package `@types/react` to v18.3.17 (#5948) Co-authored-by: hash-worker[bot] <180894564+hash-worker[bot]@users.noreply.github.com> --- apps/hash-frontend/package.json | 2 +- apps/hashdotdesign/package.json | 2 +- apps/hashdotdev/package.json | 2 +- apps/plugin-browser/package.json | 2 +- libs/@blockprotocol/graph/package.json | 2 +- .../type-system/typescript/package.json | 2 +- .../block-design-system/package.json | 2 +- libs/@hashintel/design-system/package.json | 2 +- package.json | 2 +- yarn.lock | 24 +++++++++---------- 10 files changed, 21 insertions(+), 21 deletions(-) diff --git a/apps/hash-frontend/package.json b/apps/hash-frontend/package.json index 944f32a6664..d6df91dbdbf 100644 --- a/apps/hash-frontend/package.json +++ b/apps/hash-frontend/package.json @@ -141,7 +141,7 @@ "@types/jsonpath": "0.2.4", "@types/lodash": "4.17.13", "@types/papaparse": "5.3.15", - "@types/react": "18.3.16", + "@types/react": "18.3.17", "@types/react-beautiful-dnd": "13.1.8", "@types/react-dom": "18.3.5", "@types/react-window": "1.8.8", diff --git a/apps/hashdotdesign/package.json b/apps/hashdotdesign/package.json index 6213133dcac..46ebd9f8d08 100644 --- a/apps/hashdotdesign/package.json +++ b/apps/hashdotdesign/package.json @@ -22,7 +22,7 @@ "@storybook/react": "7.6.20", "@storybook/react-webpack5": "7.6.20", "@storybook/testing-library": "0.2.2", - "@types/react": "18.3.16", + "@types/react": "18.3.17", "@types/react-dom": "18.3.5", "storybook": "7.6.20" }, diff --git a/apps/hashdotdev/package.json b/apps/hashdotdev/package.json index d99ffd71e1f..c72434ec52a 100644 --- a/apps/hashdotdev/package.json +++ b/apps/hashdotdev/package.json @@ -74,7 +74,7 @@ "@types/md5": "2.3.5", "@types/node": "22.10.2", "@types/prismjs": "1.26.5", - "@types/react": "18.3.16", + "@types/react": "18.3.17", "@types/react-dom": "18.3.5", "@types/react-html-parser": "2.0.6", "@types/unist": "2.0.11", diff --git a/apps/plugin-browser/package.json b/apps/plugin-browser/package.json index 0fd1d556000..163fad74a92 100755 --- a/apps/plugin-browser/package.json +++ b/apps/plugin-browser/package.json @@ -63,7 +63,7 @@ "@pmmmwh/react-refresh-webpack-plugin": "0.5.15", "@sentry/webpack-plugin": "2.22.7", "@types/lodash.debounce": "4.0.9", - "@types/react": "18.3.16", + "@types/react": "18.3.17", "@types/react-dom": "18.3.5", "@types/webextension-polyfill": "patch:@types/webextension-polyfill@npm%3A0.10.4#~/.yarn/patches/@types-webextension-polyfill-npm-0.10.4-291152c615.patch", "@types/ws": "8.5.13", diff --git a/libs/@blockprotocol/graph/package.json b/libs/@blockprotocol/graph/package.json index f4e35e95fbd..9a6279bc424 100644 --- a/libs/@blockprotocol/graph/package.json +++ b/libs/@blockprotocol/graph/package.json @@ -79,7 +79,7 @@ "@local/tsconfig": "0.0.0-private", "@types/lodash.isequal": "4.5.8", "@types/node": "22.10.2", - "@types/react": "18.3.16", + "@types/react": "18.3.17", "eslint": "9.17.0", "rimraf": "6.0.1", "typescript": "5.7.2" diff --git a/libs/@blockprotocol/type-system/typescript/package.json b/libs/@blockprotocol/type-system/typescript/package.json index b0387ac9a31..526f1267a1a 100644 --- a/libs/@blockprotocol/type-system/typescript/package.json +++ b/libs/@blockprotocol/type-system/typescript/package.json @@ -60,7 +60,7 @@ "@rollup/plugin-typescript": "12.1.2", "@rollup/plugin-wasm": "6.2.2", "@types/node": "22.10.2", - "@types/react": "18.3.16", + "@types/react": "18.3.17", "@vitest/coverage-istanbul": "2.1.8", "eslint": "9.17.0", "react": "18.3.1", diff --git a/libs/@hashintel/block-design-system/package.json b/libs/@hashintel/block-design-system/package.json index 0e35523c178..670f86af004 100644 --- a/libs/@hashintel/block-design-system/package.json +++ b/libs/@hashintel/block-design-system/package.json @@ -43,7 +43,7 @@ "@local/tsconfig": "0.0.0-private", "@mui/material": "5.16.11", "@mui/system": "5.16.8", - "@types/react": "18.3.16", + "@types/react": "18.3.17", "@types/react-dom": "18.3.5", "@types/react-syntax-highlighter": "15.5.13", "eslint": "9.17.0", diff --git a/libs/@hashintel/design-system/package.json b/libs/@hashintel/design-system/package.json index 73af4ce1dde..f00a4f36cc7 100644 --- a/libs/@hashintel/design-system/package.json +++ b/libs/@hashintel/design-system/package.json @@ -59,7 +59,7 @@ "@mui/material": "5.16.11", "@mui/system": "5.16.8", "@storybook/react": "7.6.20", - "@types/react": "18.3.16", + "@types/react": "18.3.17", "@types/react-dom": "18.3.5", "eslint": "9.17.0", "eslint-plugin-storybook": "0.11.1", diff --git a/package.json b/package.json index 4962e4c34ae..f0595b57d84 100644 --- a/package.json +++ b/package.json @@ -87,7 +87,7 @@ "@tldraw/editor@npm:2.0.0-alpha.12": "patch:@tldraw/editor@npm%3A2.0.0-alpha.12#~/.yarn/patches/@tldraw-editor-npm-2.0.0-alpha.12-ba59bf001c.patch", "@tldraw/tlschema@npm:2.0.0-alpha.12": "patch:@tldraw/tlschema@npm%3A2.0.0-alpha.12#~/.yarn/patches/@tldraw-tlschema-npm-2.0.0-alpha.12-13bf88407b.patch", "@types/express": "4.17.21", - "@types/react": "18.3.16", + "@types/react": "18.3.17", "blockprotocol@npm:0.0.10": "patch:blockprotocol@npm%3A0.0.12#~/.yarn/patches/blockprotocol-npm-0.0.12-2558a31f0a.patch", "prosemirror-model@npm:>=1.0.0": "patch:prosemirror-model@npm%3A1.18.2#~/.yarn/patches/prosemirror-model-npm-1.18.2-479d845b52.patch", "prosemirror-model@npm:^1.0.0": "patch:prosemirror-model@npm%3A1.18.2#~/.yarn/patches/prosemirror-model-npm-1.18.2-479d845b52.patch", diff --git a/yarn.lock b/yarn.lock index fb17ac82b6f..c5fa4f452ef 100644 --- a/yarn.lock +++ b/yarn.lock @@ -527,7 +527,7 @@ __metadata: "@types/lodash": "npm:4.17.13" "@types/papaparse": "npm:5.3.15" "@types/prismjs": "npm:1.26.5" - "@types/react": "npm:18.3.16" + "@types/react": "npm:18.3.17" "@types/react-beautiful-dnd": "npm:13.1.8" "@types/react-dom": "npm:18.3.5" "@types/react-window": "npm:1.8.8" @@ -708,7 +708,7 @@ __metadata: "@storybook/react": "npm:7.6.20" "@storybook/react-webpack5": "npm:7.6.20" "@storybook/testing-library": "npm:0.2.2" - "@types/react": "npm:18.3.16" + "@types/react": "npm:18.3.17" "@types/react-dom": "npm:18.3.5" storybook: "npm:7.6.20" peerDependencies: @@ -745,7 +745,7 @@ __metadata: "@types/md5": "npm:2.3.5" "@types/node": "npm:22.10.2" "@types/prismjs": "npm:1.26.5" - "@types/react": "npm:18.3.16" + "@types/react": "npm:18.3.17" "@types/react-dom": "npm:18.3.5" "@types/react-html-parser": "npm:2.0.6" "@types/unist": "npm:2.0.11" @@ -817,7 +817,7 @@ __metadata: "@sentry/browser": "npm:7.120.2" "@sentry/webpack-plugin": "npm:2.22.7" "@types/lodash.debounce": "npm:4.0.9" - "@types/react": "npm:18.3.16" + "@types/react": "npm:18.3.17" "@types/react-dom": "npm:18.3.5" "@types/webextension-polyfill": "patch:@types/webextension-polyfill@npm%3A0.10.4#~/.yarn/patches/@types-webextension-polyfill-npm-0.10.4-291152c615.patch" "@types/ws": "npm:8.5.13" @@ -4512,7 +4512,7 @@ __metadata: "@local/tsconfig": "npm:0.0.0-private" "@types/lodash.isequal": "npm:4.5.8" "@types/node": "npm:22.10.2" - "@types/react": "npm:18.3.16" + "@types/react": "npm:18.3.17" ajv: "npm:8.17.1" ajv-formats: "npm:3.0.1" eslint: "npm:9.17.0" @@ -4601,7 +4601,7 @@ __metadata: "@rollup/plugin-typescript": "npm:12.1.2" "@rollup/plugin-wasm": "npm:6.2.2" "@types/node": "npm:22.10.2" - "@types/react": "npm:18.3.16" + "@types/react": "npm:18.3.17" "@vitest/coverage-istanbul": "npm:2.1.8" eslint: "npm:9.17.0" react: "npm:18.3.1" @@ -7834,7 +7834,7 @@ __metadata: "@local/tsconfig": "npm:0.0.0-private" "@mui/material": "npm:5.16.11" "@mui/system": "npm:5.16.8" - "@types/react": "npm:18.3.16" + "@types/react": "npm:18.3.17" "@types/react-dom": "npm:18.3.5" "@types/react-syntax-highlighter": "npm:15.5.13" eslint: "npm:9.17.0" @@ -7872,7 +7872,7 @@ __metadata: "@mui/material": "npm:5.16.11" "@mui/system": "npm:5.16.8" "@storybook/react": "npm:7.6.20" - "@types/react": "npm:18.3.16" + "@types/react": "npm:18.3.17" "@types/react-dom": "npm:18.3.5" clsx: "npm:1.2.1" echarts: "npm:5.5.1" @@ -18224,13 +18224,13 @@ __metadata: languageName: node linkType: hard -"@types/react@npm:18.3.16": - version: 18.3.16 - resolution: "@types/react@npm:18.3.16" +"@types/react@npm:18.3.17": + version: 18.3.17 + resolution: "@types/react@npm:18.3.17" dependencies: "@types/prop-types": "npm:*" csstype: "npm:^3.0.2" - checksum: 10c0/9113d3003865eda07be0fb596f5bd8d7784b8900675090c56e75bdee45499f0b0de2481cbbeb5980c3b4ad18f234a49f39c9e62fd7b89a4e8530c74789f739bd + checksum: 10c0/475191e9cd0ab5bef35cc1868295d6526cd78b25c1bb816f0747a1e92261688305f81c0e29aff52e6ea70397f133e34c399dc936cb5072f1acf465d9daacc0da languageName: node linkType: hard From b7855c6527ccff0267b9b78e9f1155d969a7803e Mon Sep 17 00:00:00 2001 From: "hash-worker[bot]" <180894564+hash-worker[bot]@users.noreply.github.com> Date: Wed, 18 Dec 2024 01:10:56 +0000 Subject: [PATCH 038/159] Update `eslint` npm packages (#5947) Co-authored-by: hash-worker[bot] <180894564+hash-worker[bot]@users.noreply.github.com> Co-authored-by: vilkinsons <6226576+vilkinsons@users.noreply.github.com> --- libs/@local/eslint/package.json | 4 +- yarn.lock | 129 +++++++++++++++++--------------- 2 files changed, 71 insertions(+), 62 deletions(-) diff --git a/libs/@local/eslint/package.json b/libs/@local/eslint/package.json index 83864a4a80a..513e5163726 100644 --- a/libs/@local/eslint/package.json +++ b/libs/@local/eslint/package.json @@ -29,10 +29,10 @@ "eslint-config-airbnb": "19.0.4", "eslint-config-flat-gitignore": "0.3.0", "eslint-config-prettier": "9.1.0", - "eslint-config-sheriff": "25.3.0", + "eslint-config-sheriff": "25.3.1", "eslint-import-resolver-node": "0.3.9", "eslint-import-resolver-typescript": "3.7.0", - "eslint-plugin-canonical": "5.0.0", + "eslint-plugin-canonical": "5.0.1", "eslint-plugin-import": "2.31.0", "eslint-plugin-react-hooks": "5.1.0", "eslint-plugin-storybook": "0.11.1", diff --git a/yarn.lock b/yarn.lock index c5fa4f452ef..f74cd3c23b8 100644 --- a/yarn.lock +++ b/yarn.lock @@ -9027,10 +9027,10 @@ __metadata: eslint-config-airbnb: "npm:19.0.4" eslint-config-flat-gitignore: "npm:0.3.0" eslint-config-prettier: "npm:9.1.0" - eslint-config-sheriff: "npm:25.3.0" + eslint-config-sheriff: "npm:25.3.1" eslint-import-resolver-node: "npm:0.3.9" eslint-import-resolver-typescript: "npm:3.7.0" - eslint-plugin-canonical: "npm:5.0.0" + eslint-plugin-canonical: "npm:5.0.1" eslint-plugin-import: "npm:2.31.0" eslint-plugin-react-hooks: "npm:5.1.0" eslint-plugin-storybook: "npm:0.11.1" @@ -18626,13 +18626,13 @@ __metadata: languageName: node linkType: hard -"@typescript-eslint/scope-manager@npm:8.17.0, @typescript-eslint/scope-manager@npm:^7.0.0 || ^8.0.0, @typescript-eslint/scope-manager@npm:^8.16.0": - version: 8.17.0 - resolution: "@typescript-eslint/scope-manager@npm:8.17.0" +"@typescript-eslint/scope-manager@npm:8.18.1, @typescript-eslint/scope-manager@npm:^7.0.0 || ^8.0.0, @typescript-eslint/scope-manager@npm:^8.16.0": + version: 8.18.1 + resolution: "@typescript-eslint/scope-manager@npm:8.18.1" dependencies: - "@typescript-eslint/types": "npm:8.17.0" - "@typescript-eslint/visitor-keys": "npm:8.17.0" - checksum: 10c0/0c08d14240bad4b3f6874f08ba80b29db1a6657437089a6f109db458c544d835bcdc06ba9140bb4f835233ba4326d9a86e6cf6bdb5209960d2f7025aa3191f4f + "@typescript-eslint/types": "npm:8.18.1" + "@typescript-eslint/visitor-keys": "npm:8.18.1" + checksum: 10c0/97c503b2ece79b6c99ca8e6a5f1f40855cf72f17fbf05e42e62d19c2666e7e6f5df9bf71f13dbc4720c5ee0397670ba8052482a90441fbffa901da5f2e739565 languageName: node linkType: hard @@ -18681,10 +18681,10 @@ __metadata: languageName: node linkType: hard -"@typescript-eslint/types@npm:8.17.0, @typescript-eslint/types@npm:^7.0.0 || ^8.0.0, @typescript-eslint/types@npm:^7.7.1 || ^8, @typescript-eslint/types@npm:^8.16.0": - version: 8.17.0 - resolution: "@typescript-eslint/types@npm:8.17.0" - checksum: 10c0/26b1bf9dfc3ee783c85c6f354b84c28706d5689d777f3ff2de2cb496e45f9d0189c0d561c03ccbc8b24712438be17cf63dd0871ff3ca2083e7f48749770d1893 +"@typescript-eslint/types@npm:8.18.1, @typescript-eslint/types@npm:^7.0.0 || ^8.0.0, @typescript-eslint/types@npm:^7.7.1 || ^8, @typescript-eslint/types@npm:^8.16.0": + version: 8.18.1 + resolution: "@typescript-eslint/types@npm:8.18.1" + checksum: 10c0/0a2ca5f7cdebcc844b6bc1e5afc5d83b563f55917d20e3fea3a17ed39c54b003178e26b5ec535113f45c93c569b46628d9a67defa70c01cbdfa801573fed69a2 languageName: node linkType: hard @@ -18745,22 +18745,21 @@ __metadata: languageName: node linkType: hard -"@typescript-eslint/typescript-estree@npm:8.17.0, @typescript-eslint/typescript-estree@npm:^7.0.0 || ^8.0.0, @typescript-eslint/typescript-estree@npm:^8.16.0": - version: 8.17.0 - resolution: "@typescript-eslint/typescript-estree@npm:8.17.0" +"@typescript-eslint/typescript-estree@npm:8.18.1, @typescript-eslint/typescript-estree@npm:^7.0.0 || ^8.0.0, @typescript-eslint/typescript-estree@npm:^8.16.0": + version: 8.18.1 + resolution: "@typescript-eslint/typescript-estree@npm:8.18.1" dependencies: - "@typescript-eslint/types": "npm:8.17.0" - "@typescript-eslint/visitor-keys": "npm:8.17.0" + "@typescript-eslint/types": "npm:8.18.1" + "@typescript-eslint/visitor-keys": "npm:8.18.1" debug: "npm:^4.3.4" fast-glob: "npm:^3.3.2" is-glob: "npm:^4.0.3" minimatch: "npm:^9.0.4" semver: "npm:^7.6.0" ts-api-utils: "npm:^1.3.0" - peerDependenciesMeta: - typescript: - optional: true - checksum: 10c0/523013f9b5cf2c58c566868e4c3b0b9ac1b4807223a6d64e2a7c58e01e53b6587ba61f1a8241eade361f3f426d6057657515473176141ef8aebb352bc0d223ce + peerDependencies: + typescript: ">=4.8.4 <5.8.0" + checksum: 10c0/7ecb061dc63c729b23f4f15db5736ca93b1ae633108400e6c31cf8af782494912f25c3683f9f952dbfd10cb96031caba247a1ad406abf5d163639a00ac3ce5a3 languageName: node linkType: hard @@ -18816,20 +18815,18 @@ __metadata: languageName: node linkType: hard -"@typescript-eslint/utils@npm:^6.0.0 || ^7.0.0 || ^8.0.0, @typescript-eslint/utils@npm:^8.13.0, @typescript-eslint/utils@npm:^8.16.0, @typescript-eslint/utils@npm:^8.2.0, @typescript-eslint/utils@npm:^8.8.1": - version: 8.17.0 - resolution: "@typescript-eslint/utils@npm:8.17.0" +"@typescript-eslint/utils@npm:^6.0.0 || ^7.0.0 || ^8.0.0, @typescript-eslint/utils@npm:^8.13.0, @typescript-eslint/utils@npm:^8.16.0, @typescript-eslint/utils@npm:^8.18.1, @typescript-eslint/utils@npm:^8.8.1": + version: 8.18.1 + resolution: "@typescript-eslint/utils@npm:8.18.1" dependencies: "@eslint-community/eslint-utils": "npm:^4.4.0" - "@typescript-eslint/scope-manager": "npm:8.17.0" - "@typescript-eslint/types": "npm:8.17.0" - "@typescript-eslint/typescript-estree": "npm:8.17.0" + "@typescript-eslint/scope-manager": "npm:8.18.1" + "@typescript-eslint/types": "npm:8.18.1" + "@typescript-eslint/typescript-estree": "npm:8.18.1" peerDependencies: eslint: ^8.57.0 || ^9.0.0 - peerDependenciesMeta: - typescript: - optional: true - checksum: 10c0/a9785ae5f7e7b51d521dc3f48b15093948e4fcd03352c0b60f39bae366cbc935947d215f91e2ae3182d52fa6affb5ccbb50feff487bd1209011f3e0da02cdf07 + typescript: ">=4.8.4 <5.8.0" + checksum: 10c0/1e29408bd8fbda9f3386dabdb2b7471dacff28342d5bd6521ca3b7932df0cae100030d2eac75d946a82cbefa33f78000eed4ce789128fdea069ffeabd4429d80 languageName: node linkType: hard @@ -18887,13 +18884,13 @@ __metadata: languageName: node linkType: hard -"@typescript-eslint/visitor-keys@npm:8.17.0": - version: 8.17.0 - resolution: "@typescript-eslint/visitor-keys@npm:8.17.0" +"@typescript-eslint/visitor-keys@npm:8.18.1": + version: 8.18.1 + resolution: "@typescript-eslint/visitor-keys@npm:8.18.1" dependencies: - "@typescript-eslint/types": "npm:8.17.0" + "@typescript-eslint/types": "npm:8.18.1" eslint-visitor-keys: "npm:^4.2.0" - checksum: 10c0/9144c4e4a63034fb2031a0ee1fc77e80594f30cab3faafa9a1f7f83782695774dd32fac8986f260698b4e150b4dd52444f2611c07e4c101501f08353eb47c82c + checksum: 10c0/68651ae1825dbd660ea39b4e1d1618f6ad0026fa3a04aecec296750977cab316564e3e2ace8edbebf1ae86bd17d86acc98cac7b6e9aad4e1c666bd26f18706ad languageName: node linkType: hard @@ -22075,7 +22072,7 @@ __metadata: languageName: node linkType: hard -"chance@npm:^1.1.11": +"chance@npm:^1.1.12": version: 1.1.12 resolution: "chance@npm:1.1.12" checksum: 10c0/96686a72df9077852993476dc4a16ec7afb797bb26d74caf4a5c6f6786d73fcd3c821ededb88b23a5c7b8762718b5cc43ce07fdd1ea3f508826ba88b57c36329 @@ -24151,15 +24148,15 @@ __metadata: languageName: node linkType: hard -"debug@npm:4, debug@npm:^4.0.0, debug@npm:^4.0.1, debug@npm:^4.1.0, debug@npm:^4.1.1, debug@npm:^4.3.1, debug@npm:^4.3.2, debug@npm:^4.3.3, debug@npm:^4.3.4, debug@npm:^4.3.5, debug@npm:^4.3.6, debug@npm:^4.3.7, debug@npm:~4.3.1, debug@npm:~4.3.2": - version: 4.3.7 - resolution: "debug@npm:4.3.7" +"debug@npm:4, debug@npm:^4.0.0, debug@npm:^4.0.1, debug@npm:^4.1.0, debug@npm:^4.1.1, debug@npm:^4.3.1, debug@npm:^4.3.2, debug@npm:^4.3.3, debug@npm:^4.3.4, debug@npm:^4.3.5, debug@npm:^4.3.6, debug@npm:^4.3.7, debug@npm:^4.4.0": + version: 4.4.0 + resolution: "debug@npm:4.4.0" dependencies: ms: "npm:^2.1.3" peerDependenciesMeta: supports-color: optional: true - checksum: 10c0/1471db19c3b06d485a622d62f65947a19a23fbd0dd73f7fd3eafb697eec5360cde447fb075919987899b1a2096e85d35d4eb5a4de09a57600ac9cf7e6c8e768b + checksum: 10c0/db94f1a182bf886f57b4755f85b3a74c39b5114b9377b7ab375dc2cfa3454f09490cc6c30f829df3fc8042bc8b8995f6567ce5cd96f3bc3688bd24027197d9de languageName: node linkType: hard @@ -24172,6 +24169,18 @@ __metadata: languageName: node linkType: hard +"debug@npm:~4.3.1, debug@npm:~4.3.2": + version: 4.3.7 + resolution: "debug@npm:4.3.7" + dependencies: + ms: "npm:^2.1.3" + peerDependenciesMeta: + supports-color: + optional: true + checksum: 10c0/1471db19c3b06d485a622d62f65947a19a23fbd0dd73f7fd3eafb697eec5360cde447fb075919987899b1a2096e85d35d4eb5a4de09a57600ac9cf7e6c8e768b + languageName: node + linkType: hard + "decamelize-keys@npm:^1.1.0": version: 1.1.1 resolution: "decamelize-keys@npm:1.1.1" @@ -26114,9 +26123,9 @@ __metadata: languageName: node linkType: hard -"eslint-config-sheriff@npm:25.3.0": - version: 25.3.0 - resolution: "eslint-config-sheriff@npm:25.3.0" +"eslint-config-sheriff@npm:25.3.1": + version: 25.3.1 + resolution: "eslint-config-sheriff@npm:25.3.1" dependencies: "@eslint-react/eslint-plugin": "npm:^1.10.1" "@eslint/compat": "npm:^1.1.1" @@ -26152,7 +26161,7 @@ __metadata: peerDependencies: eslint: ">=9.0.0" typescript: ">=5.0.0" - checksum: 10c0/4cfbc0b7a1a32c2c450559364dc09ed47900b6d051a55a9a6a4794faa6af144ddfea86ae4d9dc8d373c80b1380fbc90bf1252536d1507a5ca24867059c460a17 + checksum: 10c0/1b2af085c7acb066a8d3b2ff98e68089218aa3304316d7f70b1e918434ccf37dc10972d335481a7c52d0549c9cf85962136d92130dc7b825e914b4c501eae7e2 languageName: node linkType: hard @@ -26167,7 +26176,7 @@ __metadata: languageName: node linkType: hard -"eslint-import-resolver-typescript@npm:3.7.0, eslint-import-resolver-typescript@npm:^3.6.1, eslint-import-resolver-typescript@npm:^3.6.3": +"eslint-import-resolver-typescript@npm:3.7.0, eslint-import-resolver-typescript@npm:^3.6.3, eslint-import-resolver-typescript@npm:^3.7.0": version: 3.7.0 resolution: "eslint-import-resolver-typescript@npm:3.7.0" dependencies: @@ -26192,7 +26201,7 @@ __metadata: languageName: node linkType: hard -"eslint-module-utils@npm:^2.12.0, eslint-module-utils@npm:^2.8.1": +"eslint-module-utils@npm:^2.12.0": version: 2.12.0 resolution: "eslint-module-utils@npm:2.12.0" dependencies: @@ -26234,26 +26243,26 @@ __metadata: languageName: node linkType: hard -"eslint-plugin-canonical@npm:5.0.0": - version: 5.0.0 - resolution: "eslint-plugin-canonical@npm:5.0.0" +"eslint-plugin-canonical@npm:5.0.1": + version: 5.0.1 + resolution: "eslint-plugin-canonical@npm:5.0.1" dependencies: - "@typescript-eslint/utils": "npm:^8.2.0" - chance: "npm:^1.1.11" - debug: "npm:^4.3.4" - eslint-import-resolver-typescript: "npm:^3.6.1" - eslint-module-utils: "npm:^2.8.1" + "@typescript-eslint/utils": "npm:^8.18.1" + chance: "npm:^1.1.12" + debug: "npm:^4.4.0" + eslint-import-resolver-typescript: "npm:^3.7.0" + eslint-module-utils: "npm:^2.12.0" is-get-set-prop: "npm:^1.0.0" is-js-type: "npm:^2.0.0" is-obj-prop: "npm:^1.0.0" is-proto-prop: "npm:^2.0.0" lodash: "npm:^4.17.21" natural-compare: "npm:^1.4.0" - recast: "npm:^0.23.2" - roarr: "npm:^7.14.2" + recast: "npm:^0.23.9" + roarr: "npm:^7.21.1" ts-unused-exports: "npm:^9.0.3" xregexp: "npm:^5.1.1" - checksum: 10c0/c4a071a00179deff87c31fdaa66e3c86757ce9af387617078ad4ca042209b201406fd94a7d1096c41459b6c2f3fcf6d47cb5808b2a58030d0abdcac745e93582 + checksum: 10c0/2ac473955e6924c4997b5a63b75386ffdaa8487ea08e8e5c05f26c4b327113b0f17aaf77777ec18d07130639071953d4b7b711425c7532c1f8a9cd0d0afbb6ed languageName: node linkType: hard @@ -40965,7 +40974,7 @@ __metadata: languageName: node linkType: hard -"recast@npm:^0.23.1, recast@npm:^0.23.2, recast@npm:^0.23.3": +"recast@npm:^0.23.1, recast@npm:^0.23.3, recast@npm:^0.23.9": version: 0.23.9 resolution: "recast@npm:0.23.9" dependencies: @@ -41833,7 +41842,7 @@ __metadata: languageName: node linkType: hard -"roarr@npm:^7.0.3, roarr@npm:^7.0.4, roarr@npm:^7.14.2": +"roarr@npm:^7.0.3, roarr@npm:^7.0.4, roarr@npm:^7.21.1": version: 7.21.1 resolution: "roarr@npm:7.21.1" dependencies: From 4db0c35c6b243a188020c87be09dd3b693537475 Mon Sep 17 00:00:00 2001 From: "hash-worker[bot]" <180894564+hash-worker[bot]@users.noreply.github.com> Date: Wed, 18 Dec 2024 04:02:52 +0000 Subject: [PATCH 039/159] Update Rust crate `thiserror` to v2.0.8 (#5951) Co-authored-by: hash-worker[bot] <180894564+hash-worker[bot]@users.noreply.github.com> --- Cargo.lock | 46 +++++++++++++++++++++++----------------------- Cargo.toml | 2 +- 2 files changed, 24 insertions(+), 24 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index 711a69b0a00..5d6d95fe300 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -1167,7 +1167,7 @@ dependencies = [ "image", "insta", "pdfium-render", - "thiserror 2.0.7", + "thiserror 2.0.8", ] [[package]] @@ -1993,7 +1993,7 @@ dependencies = [ "spin 0.9.8", "supports-color", "supports-unicode", - "thiserror 2.0.7", + "thiserror 2.0.8", "tracing", "tracing-error", "tracing-subscriber", @@ -2514,7 +2514,7 @@ dependencies = [ "multiaddr", "serde", "serde-value", - "thiserror 2.0.7", + "thiserror 2.0.8", "tokio-util", "tower 0.5.2", ] @@ -2532,7 +2532,7 @@ dependencies = [ "pin-project-lite", "serde", "serde_json", - "thiserror 2.0.7", + "thiserror 2.0.8", "tokio", ] @@ -2570,7 +2570,7 @@ dependencies = [ "serde", "tachyonix", "test-log", - "thiserror 2.0.7", + "thiserror 2.0.8", "tokio", "tokio-stream", "tokio-util", @@ -2598,7 +2598,7 @@ dependencies = [ "multiaddr", "scc", "serde", - "thiserror 2.0.7", + "thiserror 2.0.8", "tokio", "tokio-util", "tower 0.5.2", @@ -2631,7 +2631,7 @@ dependencies = [ "pin-project", "pin-project-lite", "serde", - "thiserror 2.0.7", + "thiserror 2.0.8", "tokio", "tokio-test", "tokio-util", @@ -2665,7 +2665,7 @@ dependencies = [ "serde_json", "similar-asserts", "test-strategy", - "thiserror 2.0.7", + "thiserror 2.0.8", ] [[package]] @@ -2927,7 +2927,7 @@ dependencies = [ "postgres-types", "serde", "serde_json", - "thiserror 2.0.7", + "thiserror 2.0.8", "tokio", "tokio-postgres", "tracing", @@ -3023,7 +3023,7 @@ dependencies = [ "semver", "serde", "serde_json", - "thiserror 2.0.7", + "thiserror 2.0.8", "time", "tokio", "trait-variant", @@ -3047,7 +3047,7 @@ dependencies = [ "regex", "serde", "serde_json", - "thiserror 2.0.7", + "thiserror 2.0.8", "tokio", "type-system", "url", @@ -3070,7 +3070,7 @@ dependencies = [ "inferno", "serde", "serde_json", - "thiserror 2.0.7", + "thiserror 2.0.8", "tokio", "walkdir", ] @@ -3092,7 +3092,7 @@ dependencies = [ "serde_json", "temporal-client", "temporal-sdk-core-protos", - "thiserror 2.0.7", + "thiserror 2.0.8", "url", "uuid", ] @@ -3291,7 +3291,7 @@ dependencies = [ "serde_json", "serde_with", "text-size", - "thiserror 2.0.7", + "thiserror 2.0.8", ] [[package]] @@ -7149,7 +7149,7 @@ dependencies = [ "slotmap", "temporal-sdk-core-api", "temporal-sdk-core-protos", - "thiserror 2.0.7", + "thiserror 2.0.8", "tokio", "tonic", "tower 0.5.2", @@ -7170,7 +7170,7 @@ dependencies = [ "prost-types", "serde_json", "temporal-sdk-core-protos", - "thiserror 2.0.7", + "thiserror 2.0.8", "tonic", "tracing-core", "url", @@ -7192,7 +7192,7 @@ dependencies = [ "prost-wkt-types", "serde", "serde_json", - "thiserror 2.0.7", + "thiserror 2.0.8", "tonic", "tonic-build", ] @@ -7321,11 +7321,11 @@ dependencies = [ [[package]] name = "thiserror" -version = "2.0.7" +version = "2.0.8" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "93605438cbd668185516ab499d589afb7ee1859ea3d5fc8f6b0755e1c7443767" +checksum = "08f5383f3e0071702bf93ab5ee99b52d26936be9dedd9413067cbdcddcb6141a" dependencies = [ - "thiserror-impl 2.0.7", + "thiserror-impl 2.0.8", ] [[package]] @@ -7341,9 +7341,9 @@ dependencies = [ [[package]] name = "thiserror-impl" -version = "2.0.7" +version = "2.0.8" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "e1d8749b4531af2117677a5fcd12b1348a3fe2b81e36e61ffeac5c4aa3273e36" +checksum = "f2f357fcec90b3caef6623a099691be676d033b40a058ac95d2a6ade6fa0c943" dependencies = [ "proc-macro2", "quote", @@ -7935,7 +7935,7 @@ dependencies = [ "regex", "serde", "serde_json", - "thiserror 2.0.7", + "thiserror 2.0.8", "tokio", "tsify", "url", diff --git a/Cargo.toml b/Cargo.toml index ddfa348c192..0a9d925fed3 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -220,7 +220,7 @@ temporal-sdk-core-protos = { git = "https://github.com/temporalio/sdk-core", rev test-fuzz = { version = "=7.0.1", default-features = false } test-log = { version = "=0.2.16", default-features = false } test-strategy = { version = "=0.4.0", default-features = false } -thiserror = { version = "=2.0.7", default-features = false } +thiserror = { version = "=2.0.8", default-features = false } tokio-stream = { version = "=0.1.17", default-features = false } tokio-test = { version = "=0.4.4", default-features = false } tower = { version = "=0.5.2", default-features = false } From 99e4b5dc42a1f8cfb66e961410b38a97a21516e7 Mon Sep 17 00:00:00 2001 From: "hash-worker[bot]" <180894564+hash-worker[bot]@users.noreply.github.com> Date: Wed, 18 Dec 2024 10:05:27 +0000 Subject: [PATCH 040/159] Update npm package `openai` to v4.77.0 (#5950) Co-authored-by: hash-worker[bot] <180894564+hash-worker[bot]@users.noreply.github.com> Co-authored-by: vilkinsons <6226576+vilkinsons@users.noreply.github.com> --- apps/hash-ai-worker-ts/package.json | 2 +- apps/hash-api/package.json | 2 +- yarn.lock | 12 ++++++------ 3 files changed, 8 insertions(+), 8 deletions(-) diff --git a/apps/hash-ai-worker-ts/package.json b/apps/hash-ai-worker-ts/package.json index 43c3a3971bb..49fe45b59fa 100644 --- a/apps/hash-ai-worker-ts/package.json +++ b/apps/hash-ai-worker-ts/package.json @@ -81,7 +81,7 @@ "md5": "2.3.0", "mime-types": "2.1.35", "officeparser": "4.2.0", - "openai": "4.76.3", + "openai": "4.77.0", "openai-chat-tokens": "0.2.8", "papaparse": "5.4.1", "pdf2json": "3.1.4", diff --git a/apps/hash-api/package.json b/apps/hash-api/package.json index 9cb54fa0407..8376ce23862 100644 --- a/apps/hash-api/package.json +++ b/apps/hash-api/package.json @@ -99,7 +99,7 @@ "nanoid": "3.3.8", "nodemailer": "6.9.16", "oembed-providers": "1.0.20241022", - "openai": "4.76.3", + "openai": "4.77.0", "ts-json-schema-generator": "1.5.1", "tsx": "4.19.2", "typescript": "5.7.2", diff --git a/yarn.lock b/yarn.lock index f74cd3c23b8..05ba627d0c7 100644 --- a/yarn.lock +++ b/yarn.lock @@ -327,7 +327,7 @@ __metadata: md5: "npm:2.3.0" mime-types: "npm:2.1.35" officeparser: "npm:4.2.0" - openai: "npm:4.76.3" + openai: "npm:4.77.0" openai-chat-tokens: "npm:0.2.8" papaparse: "npm:5.4.1" pdf2json: "npm:3.1.4" @@ -444,7 +444,7 @@ __metadata: nanoid: "npm:3.3.8" nodemailer: "npm:6.9.16" oembed-providers: "npm:1.0.20241022" - openai: "npm:4.76.3" + openai: "npm:4.77.0" prettier: "npm:3.4.2" rimraf: "npm:6.0.1" ts-json-schema-generator: "npm:1.5.1" @@ -37506,9 +37506,9 @@ __metadata: languageName: node linkType: hard -"openai@npm:4.76.3, openai@npm:^4.38.0": - version: 4.76.3 - resolution: "openai@npm:4.76.3" +"openai@npm:4.77.0, openai@npm:^4.38.0": + version: 4.77.0 + resolution: "openai@npm:4.77.0" dependencies: "@types/node": "npm:^18.11.18" "@types/node-fetch": "npm:^2.6.4" @@ -37524,7 +37524,7 @@ __metadata: optional: true bin: openai: bin/cli - checksum: 10c0/0ef8c8fd125886ebc67a8b13ff6106d701cbace274586d8f7fcc91355275dd50d4048e5e543167400c79fba6797a0dd903e0e94f2b0c7949f61c3d03f51d0ab2 + checksum: 10c0/438e5acbcdc592ff192f294e936c10a8b71edf898b53afacb937da45f8d4e221e041bfcc84d6174c8dcb9ed4080b32760f8d94de1fcec7ab889046f1e1173f68 languageName: node linkType: hard From 49d5d14b291d4a95aab8a951f81a96cf0dcc977d Mon Sep 17 00:00:00 2001 From: "hash-worker[bot]" <180894564+hash-worker[bot]@users.noreply.github.com> Date: Wed, 18 Dec 2024 12:39:04 +0000 Subject: [PATCH 041/159] Update aws-sdk-js-v3 monorepo to v3.714.0 (#5949) Co-authored-by: hash-worker[bot] <180894564+hash-worker[bot]@users.noreply.github.com> Co-authored-by: vilkinsons <6226576+vilkinsons@users.noreply.github.com> --- apps/hash-api/package.json | 10 +- libs/@local/hash-backend-utils/package.json | 4 +- yarn.lock | 530 ++++++++++---------- 3 files changed, 272 insertions(+), 272 deletions(-) diff --git a/apps/hash-api/package.json b/apps/hash-api/package.json index 8376ce23862..a971af0f070 100644 --- a/apps/hash-api/package.json +++ b/apps/hash-api/package.json @@ -24,11 +24,11 @@ }, "dependencies": { "@apps/hash-graph": "0.0.0-private", - "@aws-sdk/client-s3": "3.713.0", - "@aws-sdk/client-ses": "3.713.0", - "@aws-sdk/credential-provider-node": "3.713.0", - "@aws-sdk/s3-presigned-post": "3.713.0", - "@aws-sdk/s3-request-presigner": "3.713.0", + "@aws-sdk/client-s3": "3.714.0", + "@aws-sdk/client-ses": "3.714.0", + "@aws-sdk/credential-provider-node": "3.714.0", + "@aws-sdk/s3-presigned-post": "3.714.0", + "@aws-sdk/s3-request-presigner": "3.714.0", "@blockprotocol/core": "0.1.3", "@blockprotocol/type-system": "0.1.2-canary.0", "@graphql-tools/schema": "8.5.1", diff --git a/libs/@local/hash-backend-utils/package.json b/libs/@local/hash-backend-utils/package.json index 48265dfc271..15cee44d377 100644 --- a/libs/@local/hash-backend-utils/package.json +++ b/libs/@local/hash-backend-utils/package.json @@ -23,8 +23,8 @@ "test:unit": "vitest --run" }, "dependencies": { - "@aws-sdk/client-s3": "3.713.0", - "@aws-sdk/s3-request-presigner": "3.713.0", + "@aws-sdk/client-s3": "3.714.0", + "@aws-sdk/s3-request-presigner": "3.714.0", "@blockprotocol/core": "0.1.3", "@blockprotocol/graph": "0.4.0-canary.0", "@blockprotocol/type-system": "0.1.2-canary.0", diff --git a/yarn.lock b/yarn.lock index 05ba627d0c7..81eb3008437 100644 --- a/yarn.lock +++ b/yarn.lock @@ -350,11 +350,11 @@ __metadata: resolution: "@apps/hash-api@workspace:apps/hash-api" dependencies: "@apps/hash-graph": "npm:0.0.0-private" - "@aws-sdk/client-s3": "npm:3.713.0" - "@aws-sdk/client-ses": "npm:3.713.0" - "@aws-sdk/credential-provider-node": "npm:3.713.0" - "@aws-sdk/s3-presigned-post": "npm:3.713.0" - "@aws-sdk/s3-request-presigner": "npm:3.713.0" + "@aws-sdk/client-s3": "npm:3.714.0" + "@aws-sdk/client-ses": "npm:3.714.0" + "@aws-sdk/credential-provider-node": "npm:3.714.0" + "@aws-sdk/s3-presigned-post": "npm:3.714.0" + "@aws-sdk/s3-request-presigner": "npm:3.714.0" "@blockprotocol/core": "npm:0.1.3" "@blockprotocol/graph": "npm:0.4.0-canary.0" "@blockprotocol/type-system": "npm:0.1.2-canary.0" @@ -1274,33 +1274,33 @@ __metadata: languageName: node linkType: hard -"@aws-sdk/client-s3@npm:3.713.0": - version: 3.713.0 - resolution: "@aws-sdk/client-s3@npm:3.713.0" +"@aws-sdk/client-s3@npm:3.714.0": + version: 3.714.0 + resolution: "@aws-sdk/client-s3@npm:3.714.0" dependencies: "@aws-crypto/sha1-browser": "npm:5.2.0" "@aws-crypto/sha256-browser": "npm:5.2.0" "@aws-crypto/sha256-js": "npm:5.2.0" - "@aws-sdk/client-sso-oidc": "npm:3.713.0" - "@aws-sdk/client-sts": "npm:3.713.0" - "@aws-sdk/core": "npm:3.713.0" - "@aws-sdk/credential-provider-node": "npm:3.713.0" - "@aws-sdk/middleware-bucket-endpoint": "npm:3.713.0" - "@aws-sdk/middleware-expect-continue": "npm:3.713.0" - "@aws-sdk/middleware-flexible-checksums": "npm:3.713.0" - "@aws-sdk/middleware-host-header": "npm:3.713.0" - "@aws-sdk/middleware-location-constraint": "npm:3.713.0" - "@aws-sdk/middleware-logger": "npm:3.713.0" - "@aws-sdk/middleware-recursion-detection": "npm:3.713.0" - "@aws-sdk/middleware-sdk-s3": "npm:3.713.0" - "@aws-sdk/middleware-ssec": "npm:3.713.0" - "@aws-sdk/middleware-user-agent": "npm:3.713.0" - "@aws-sdk/region-config-resolver": "npm:3.713.0" - "@aws-sdk/signature-v4-multi-region": "npm:3.713.0" - "@aws-sdk/types": "npm:3.713.0" - "@aws-sdk/util-endpoints": "npm:3.713.0" - "@aws-sdk/util-user-agent-browser": "npm:3.713.0" - "@aws-sdk/util-user-agent-node": "npm:3.713.0" + "@aws-sdk/client-sso-oidc": "npm:3.714.0" + "@aws-sdk/client-sts": "npm:3.714.0" + "@aws-sdk/core": "npm:3.714.0" + "@aws-sdk/credential-provider-node": "npm:3.714.0" + "@aws-sdk/middleware-bucket-endpoint": "npm:3.714.0" + "@aws-sdk/middleware-expect-continue": "npm:3.714.0" + "@aws-sdk/middleware-flexible-checksums": "npm:3.714.0" + "@aws-sdk/middleware-host-header": "npm:3.714.0" + "@aws-sdk/middleware-location-constraint": "npm:3.714.0" + "@aws-sdk/middleware-logger": "npm:3.714.0" + "@aws-sdk/middleware-recursion-detection": "npm:3.714.0" + "@aws-sdk/middleware-sdk-s3": "npm:3.714.0" + "@aws-sdk/middleware-ssec": "npm:3.714.0" + "@aws-sdk/middleware-user-agent": "npm:3.714.0" + "@aws-sdk/region-config-resolver": "npm:3.714.0" + "@aws-sdk/signature-v4-multi-region": "npm:3.714.0" + "@aws-sdk/types": "npm:3.714.0" + "@aws-sdk/util-endpoints": "npm:3.714.0" + "@aws-sdk/util-user-agent-browser": "npm:3.714.0" + "@aws-sdk/util-user-agent-node": "npm:3.714.0" "@aws-sdk/xml-builder": "npm:3.709.0" "@smithy/config-resolver": "npm:^3.0.13" "@smithy/core": "npm:^2.5.5" @@ -1336,7 +1336,7 @@ __metadata: "@smithy/util-utf8": "npm:^3.0.0" "@smithy/util-waiter": "npm:^3.2.0" tslib: "npm:^2.6.2" - checksum: 10c0/f80275f8e8269d8f0fc5ac787537e050a211ce489823e1080f15fc48721be862d5c96446da33f63cc63038a55fbe961781e6cecfc894284c572116dccab818dd + checksum: 10c0/620fe3530f5eb5571e61ac83fdc141e46296057d6d2df073036f040353cb6c3db091dc50d9fd86dcec568039e9ea77b545f036660f7590c63f75899af710c4ba languageName: node linkType: hard @@ -1392,25 +1392,25 @@ __metadata: languageName: node linkType: hard -"@aws-sdk/client-ses@npm:3.713.0": - version: 3.713.0 - resolution: "@aws-sdk/client-ses@npm:3.713.0" +"@aws-sdk/client-ses@npm:3.714.0": + version: 3.714.0 + resolution: "@aws-sdk/client-ses@npm:3.714.0" dependencies: "@aws-crypto/sha256-browser": "npm:5.2.0" "@aws-crypto/sha256-js": "npm:5.2.0" - "@aws-sdk/client-sso-oidc": "npm:3.713.0" - "@aws-sdk/client-sts": "npm:3.713.0" - "@aws-sdk/core": "npm:3.713.0" - "@aws-sdk/credential-provider-node": "npm:3.713.0" - "@aws-sdk/middleware-host-header": "npm:3.713.0" - "@aws-sdk/middleware-logger": "npm:3.713.0" - "@aws-sdk/middleware-recursion-detection": "npm:3.713.0" - "@aws-sdk/middleware-user-agent": "npm:3.713.0" - "@aws-sdk/region-config-resolver": "npm:3.713.0" - "@aws-sdk/types": "npm:3.713.0" - "@aws-sdk/util-endpoints": "npm:3.713.0" - "@aws-sdk/util-user-agent-browser": "npm:3.713.0" - "@aws-sdk/util-user-agent-node": "npm:3.713.0" + "@aws-sdk/client-sso-oidc": "npm:3.714.0" + "@aws-sdk/client-sts": "npm:3.714.0" + "@aws-sdk/core": "npm:3.714.0" + "@aws-sdk/credential-provider-node": "npm:3.714.0" + "@aws-sdk/middleware-host-header": "npm:3.714.0" + "@aws-sdk/middleware-logger": "npm:3.714.0" + "@aws-sdk/middleware-recursion-detection": "npm:3.714.0" + "@aws-sdk/middleware-user-agent": "npm:3.714.0" + "@aws-sdk/region-config-resolver": "npm:3.714.0" + "@aws-sdk/types": "npm:3.714.0" + "@aws-sdk/util-endpoints": "npm:3.714.0" + "@aws-sdk/util-user-agent-browser": "npm:3.714.0" + "@aws-sdk/util-user-agent-node": "npm:3.714.0" "@smithy/config-resolver": "npm:^3.0.13" "@smithy/core": "npm:^2.5.5" "@smithy/fetch-http-handler": "npm:^4.1.2" @@ -1438,7 +1438,7 @@ __metadata: "@smithy/util-utf8": "npm:^3.0.0" "@smithy/util-waiter": "npm:^3.2.0" tslib: "npm:^2.6.2" - checksum: 10c0/f76dea55cc13c9698d501bce3d881ff51edf667ceb2fb820dbfb97a6ff5125eb4af3df79cea28348f0168fe75fce0f443fd6954666d0af5dc2f4fd53077a308d + checksum: 10c0/5330fd980bbb4fdcbe530ce4deb91e9f93eb7ceaf751013d0b411cc7e7623c93ca12036afdf6102e7afcba8cec972f8be011f0735626331acc3abb5c50d52ff2 languageName: node linkType: hard @@ -1491,23 +1491,23 @@ __metadata: languageName: node linkType: hard -"@aws-sdk/client-sso-oidc@npm:3.713.0": - version: 3.713.0 - resolution: "@aws-sdk/client-sso-oidc@npm:3.713.0" +"@aws-sdk/client-sso-oidc@npm:3.714.0": + version: 3.714.0 + resolution: "@aws-sdk/client-sso-oidc@npm:3.714.0" dependencies: "@aws-crypto/sha256-browser": "npm:5.2.0" "@aws-crypto/sha256-js": "npm:5.2.0" - "@aws-sdk/core": "npm:3.713.0" - "@aws-sdk/credential-provider-node": "npm:3.713.0" - "@aws-sdk/middleware-host-header": "npm:3.713.0" - "@aws-sdk/middleware-logger": "npm:3.713.0" - "@aws-sdk/middleware-recursion-detection": "npm:3.713.0" - "@aws-sdk/middleware-user-agent": "npm:3.713.0" - "@aws-sdk/region-config-resolver": "npm:3.713.0" - "@aws-sdk/types": "npm:3.713.0" - "@aws-sdk/util-endpoints": "npm:3.713.0" - "@aws-sdk/util-user-agent-browser": "npm:3.713.0" - "@aws-sdk/util-user-agent-node": "npm:3.713.0" + "@aws-sdk/core": "npm:3.714.0" + "@aws-sdk/credential-provider-node": "npm:3.714.0" + "@aws-sdk/middleware-host-header": "npm:3.714.0" + "@aws-sdk/middleware-logger": "npm:3.714.0" + "@aws-sdk/middleware-recursion-detection": "npm:3.714.0" + "@aws-sdk/middleware-user-agent": "npm:3.714.0" + "@aws-sdk/region-config-resolver": "npm:3.714.0" + "@aws-sdk/types": "npm:3.714.0" + "@aws-sdk/util-endpoints": "npm:3.714.0" + "@aws-sdk/util-user-agent-browser": "npm:3.714.0" + "@aws-sdk/util-user-agent-node": "npm:3.714.0" "@smithy/config-resolver": "npm:^3.0.13" "@smithy/core": "npm:^2.5.5" "@smithy/fetch-http-handler": "npm:^4.1.2" @@ -1535,8 +1535,8 @@ __metadata: "@smithy/util-utf8": "npm:^3.0.0" tslib: "npm:^2.6.2" peerDependencies: - "@aws-sdk/client-sts": ^3.713.0 - checksum: 10c0/a26784a6179cb64f2d117dbd5b1336eae0b737b85d42b79756dbcd073c0bfdbb81343cfaa841944b16d5afa3c78eadc242d0b874b3169dd10c0035373a3e6a7f + "@aws-sdk/client-sts": ^3.714.0 + checksum: 10c0/ec17ba502e535c3dfa6d96ccdbd78ce6585ea3e602b8e683fe24842c9640e76e2cd4f8e1603767873e98aba6b85c6696e890b7ad46a90de562e96f267120d450 languageName: node linkType: hard @@ -1586,22 +1586,22 @@ __metadata: languageName: node linkType: hard -"@aws-sdk/client-sso@npm:3.713.0": - version: 3.713.0 - resolution: "@aws-sdk/client-sso@npm:3.713.0" +"@aws-sdk/client-sso@npm:3.714.0": + version: 3.714.0 + resolution: "@aws-sdk/client-sso@npm:3.714.0" dependencies: "@aws-crypto/sha256-browser": "npm:5.2.0" "@aws-crypto/sha256-js": "npm:5.2.0" - "@aws-sdk/core": "npm:3.713.0" - "@aws-sdk/middleware-host-header": "npm:3.713.0" - "@aws-sdk/middleware-logger": "npm:3.713.0" - "@aws-sdk/middleware-recursion-detection": "npm:3.713.0" - "@aws-sdk/middleware-user-agent": "npm:3.713.0" - "@aws-sdk/region-config-resolver": "npm:3.713.0" - "@aws-sdk/types": "npm:3.713.0" - "@aws-sdk/util-endpoints": "npm:3.713.0" - "@aws-sdk/util-user-agent-browser": "npm:3.713.0" - "@aws-sdk/util-user-agent-node": "npm:3.713.0" + "@aws-sdk/core": "npm:3.714.0" + "@aws-sdk/middleware-host-header": "npm:3.714.0" + "@aws-sdk/middleware-logger": "npm:3.714.0" + "@aws-sdk/middleware-recursion-detection": "npm:3.714.0" + "@aws-sdk/middleware-user-agent": "npm:3.714.0" + "@aws-sdk/region-config-resolver": "npm:3.714.0" + "@aws-sdk/types": "npm:3.714.0" + "@aws-sdk/util-endpoints": "npm:3.714.0" + "@aws-sdk/util-user-agent-browser": "npm:3.714.0" + "@aws-sdk/util-user-agent-node": "npm:3.714.0" "@smithy/config-resolver": "npm:^3.0.13" "@smithy/core": "npm:^2.5.5" "@smithy/fetch-http-handler": "npm:^4.1.2" @@ -1628,7 +1628,7 @@ __metadata: "@smithy/util-retry": "npm:^3.0.11" "@smithy/util-utf8": "npm:^3.0.0" tslib: "npm:^2.6.2" - checksum: 10c0/d81a1153d63116c0fc2d25a26c6e3dd3d45e5560b11bed1314ecc9e23dd6be1ecb879a66ff5782d3043e1578147ac9cfd052d1b08907436d6ae56ad8ad528b30 + checksum: 10c0/089f06949e93600639e2f7e4ac3ddcc6456577cc7a5315af478b44b4be35ad3de729218e4de0c43b7e143210e8e8abb2da752fb11011f53718549a76371f14b9 languageName: node linkType: hard @@ -1680,24 +1680,24 @@ __metadata: languageName: node linkType: hard -"@aws-sdk/client-sts@npm:3.713.0": - version: 3.713.0 - resolution: "@aws-sdk/client-sts@npm:3.713.0" +"@aws-sdk/client-sts@npm:3.714.0": + version: 3.714.0 + resolution: "@aws-sdk/client-sts@npm:3.714.0" dependencies: "@aws-crypto/sha256-browser": "npm:5.2.0" "@aws-crypto/sha256-js": "npm:5.2.0" - "@aws-sdk/client-sso-oidc": "npm:3.713.0" - "@aws-sdk/core": "npm:3.713.0" - "@aws-sdk/credential-provider-node": "npm:3.713.0" - "@aws-sdk/middleware-host-header": "npm:3.713.0" - "@aws-sdk/middleware-logger": "npm:3.713.0" - "@aws-sdk/middleware-recursion-detection": "npm:3.713.0" - "@aws-sdk/middleware-user-agent": "npm:3.713.0" - "@aws-sdk/region-config-resolver": "npm:3.713.0" - "@aws-sdk/types": "npm:3.713.0" - "@aws-sdk/util-endpoints": "npm:3.713.0" - "@aws-sdk/util-user-agent-browser": "npm:3.713.0" - "@aws-sdk/util-user-agent-node": "npm:3.713.0" + "@aws-sdk/client-sso-oidc": "npm:3.714.0" + "@aws-sdk/core": "npm:3.714.0" + "@aws-sdk/credential-provider-node": "npm:3.714.0" + "@aws-sdk/middleware-host-header": "npm:3.714.0" + "@aws-sdk/middleware-logger": "npm:3.714.0" + "@aws-sdk/middleware-recursion-detection": "npm:3.714.0" + "@aws-sdk/middleware-user-agent": "npm:3.714.0" + "@aws-sdk/region-config-resolver": "npm:3.714.0" + "@aws-sdk/types": "npm:3.714.0" + "@aws-sdk/util-endpoints": "npm:3.714.0" + "@aws-sdk/util-user-agent-browser": "npm:3.714.0" + "@aws-sdk/util-user-agent-node": "npm:3.714.0" "@smithy/config-resolver": "npm:^3.0.13" "@smithy/core": "npm:^2.5.5" "@smithy/fetch-http-handler": "npm:^4.1.2" @@ -1724,7 +1724,7 @@ __metadata: "@smithy/util-retry": "npm:^3.0.11" "@smithy/util-utf8": "npm:^3.0.0" tslib: "npm:^2.6.2" - checksum: 10c0/4d2d48bd056c5f57ed972b46f410b5d887e13f8efda0662abd8248c705bc8137f1b0514996b4449a67fe6314142738948441a7a330c144574f513f4389065e98 + checksum: 10c0/f73988f30b16154695fc04924ea9c41ad6a3accbc9dc8d0e748ae374c2384fc5c2d7efce4d9df7189d4034b9c36a02065c5f1fb52accd0f1a5c90d8fa638c106 languageName: node linkType: hard @@ -1747,11 +1747,11 @@ __metadata: languageName: node linkType: hard -"@aws-sdk/core@npm:3.713.0": - version: 3.713.0 - resolution: "@aws-sdk/core@npm:3.713.0" +"@aws-sdk/core@npm:3.714.0": + version: 3.714.0 + resolution: "@aws-sdk/core@npm:3.714.0" dependencies: - "@aws-sdk/types": "npm:3.713.0" + "@aws-sdk/types": "npm:3.714.0" "@smithy/core": "npm:^2.5.5" "@smithy/node-config-provider": "npm:^3.1.12" "@smithy/property-provider": "npm:^3.1.11" @@ -1762,7 +1762,7 @@ __metadata: "@smithy/util-middleware": "npm:^3.0.11" fast-xml-parser: "npm:4.4.1" tslib: "npm:^2.6.2" - checksum: 10c0/81b9d4a8699c532d0c7a73fad9d8d8dae9d86abef1b846bc3d99a470054b415d6878f403c45d23da65b9892455e58486f27dde663719e6b8d660f4fc7f2b92de + checksum: 10c0/a7cbf60236eef2a40391e4a5ce88e5fd8b8db4011648598230cd43c4ed6639882dba7383ddf1a7b55ef3382341375071bbe5ece10c08e26a757bd8d0ccdb398c languageName: node linkType: hard @@ -1792,16 +1792,16 @@ __metadata: languageName: node linkType: hard -"@aws-sdk/credential-provider-env@npm:3.713.0": - version: 3.713.0 - resolution: "@aws-sdk/credential-provider-env@npm:3.713.0" +"@aws-sdk/credential-provider-env@npm:3.714.0": + version: 3.714.0 + resolution: "@aws-sdk/credential-provider-env@npm:3.714.0" dependencies: - "@aws-sdk/core": "npm:3.713.0" - "@aws-sdk/types": "npm:3.713.0" + "@aws-sdk/core": "npm:3.714.0" + "@aws-sdk/types": "npm:3.714.0" "@smithy/property-provider": "npm:^3.1.11" "@smithy/types": "npm:^3.7.2" tslib: "npm:^2.6.2" - checksum: 10c0/ad04f21b8ad731dbcb8af6e582c7fce48d16af7a7d9b3d67111b180e8ff3cf0c1a4b4f5d0b716dea6cb9c1ca6348a0ea32dd90b86c7754ccca5ff14233cad6d6 + checksum: 10c0/f968166492b8791b0428a28b17f6cd1d61d925bab646b97dad4d55ee116095a1fc2f7032b2caff81a033170fd1271d1177a18be7b5c73b885daccc7946da912e languageName: node linkType: hard @@ -1823,12 +1823,12 @@ __metadata: languageName: node linkType: hard -"@aws-sdk/credential-provider-http@npm:3.713.0": - version: 3.713.0 - resolution: "@aws-sdk/credential-provider-http@npm:3.713.0" +"@aws-sdk/credential-provider-http@npm:3.714.0": + version: 3.714.0 + resolution: "@aws-sdk/credential-provider-http@npm:3.714.0" dependencies: - "@aws-sdk/core": "npm:3.713.0" - "@aws-sdk/types": "npm:3.713.0" + "@aws-sdk/core": "npm:3.714.0" + "@aws-sdk/types": "npm:3.714.0" "@smithy/fetch-http-handler": "npm:^4.1.2" "@smithy/node-http-handler": "npm:^3.3.2" "@smithy/property-provider": "npm:^3.1.11" @@ -1837,7 +1837,7 @@ __metadata: "@smithy/types": "npm:^3.7.2" "@smithy/util-stream": "npm:^3.3.2" tslib: "npm:^2.6.2" - checksum: 10c0/339c8b4ac304a8b9ca4d45dc2dda82d52d23a49a15c4d67fa2d2339b5d61f1d111219e60eda423226716755364e5384892432aa5ed9ba76fc5048d66340002c1 + checksum: 10c0/fd21159d732c09852d25066a61d4862851a88d1522c905d5f748ba73bc4fc2e313da206ba9d9462f1148e99fd67d15b10bd292da55a634f1352b4bf32ad82dc4 languageName: node linkType: hard @@ -1863,25 +1863,25 @@ __metadata: languageName: node linkType: hard -"@aws-sdk/credential-provider-ini@npm:3.713.0": - version: 3.713.0 - resolution: "@aws-sdk/credential-provider-ini@npm:3.713.0" +"@aws-sdk/credential-provider-ini@npm:3.714.0": + version: 3.714.0 + resolution: "@aws-sdk/credential-provider-ini@npm:3.714.0" dependencies: - "@aws-sdk/core": "npm:3.713.0" - "@aws-sdk/credential-provider-env": "npm:3.713.0" - "@aws-sdk/credential-provider-http": "npm:3.713.0" - "@aws-sdk/credential-provider-process": "npm:3.713.0" - "@aws-sdk/credential-provider-sso": "npm:3.713.0" - "@aws-sdk/credential-provider-web-identity": "npm:3.713.0" - "@aws-sdk/types": "npm:3.713.0" + "@aws-sdk/core": "npm:3.714.0" + "@aws-sdk/credential-provider-env": "npm:3.714.0" + "@aws-sdk/credential-provider-http": "npm:3.714.0" + "@aws-sdk/credential-provider-process": "npm:3.714.0" + "@aws-sdk/credential-provider-sso": "npm:3.714.0" + "@aws-sdk/credential-provider-web-identity": "npm:3.714.0" + "@aws-sdk/types": "npm:3.714.0" "@smithy/credential-provider-imds": "npm:^3.2.8" "@smithy/property-provider": "npm:^3.1.11" "@smithy/shared-ini-file-loader": "npm:^3.1.12" "@smithy/types": "npm:^3.7.2" tslib: "npm:^2.6.2" peerDependencies: - "@aws-sdk/client-sts": ^3.713.0 - checksum: 10c0/e5fc30be28b884cc0c58b62abcdf3291dc8709bd157a5e7fcd5666340d2b955957966293ad876dbd7bb96f9c66f903cb7ae05c85ef6806031c794240478ca2dd + "@aws-sdk/client-sts": ^3.714.0 + checksum: 10c0/57bf38a93cef4ea3f04cc63923bc7fb4ff8cc58cb50c3d149f2cf602c231307aa822b7fae1a872511f438209a692b54e11ba54d0900acdfd194eb9f90ca8aa38 languageName: node linkType: hard @@ -1905,23 +1905,23 @@ __metadata: languageName: node linkType: hard -"@aws-sdk/credential-provider-node@npm:3.713.0": - version: 3.713.0 - resolution: "@aws-sdk/credential-provider-node@npm:3.713.0" +"@aws-sdk/credential-provider-node@npm:3.714.0": + version: 3.714.0 + resolution: "@aws-sdk/credential-provider-node@npm:3.714.0" dependencies: - "@aws-sdk/credential-provider-env": "npm:3.713.0" - "@aws-sdk/credential-provider-http": "npm:3.713.0" - "@aws-sdk/credential-provider-ini": "npm:3.713.0" - "@aws-sdk/credential-provider-process": "npm:3.713.0" - "@aws-sdk/credential-provider-sso": "npm:3.713.0" - "@aws-sdk/credential-provider-web-identity": "npm:3.713.0" - "@aws-sdk/types": "npm:3.713.0" + "@aws-sdk/credential-provider-env": "npm:3.714.0" + "@aws-sdk/credential-provider-http": "npm:3.714.0" + "@aws-sdk/credential-provider-ini": "npm:3.714.0" + "@aws-sdk/credential-provider-process": "npm:3.714.0" + "@aws-sdk/credential-provider-sso": "npm:3.714.0" + "@aws-sdk/credential-provider-web-identity": "npm:3.714.0" + "@aws-sdk/types": "npm:3.714.0" "@smithy/credential-provider-imds": "npm:^3.2.8" "@smithy/property-provider": "npm:^3.1.11" "@smithy/shared-ini-file-loader": "npm:^3.1.12" "@smithy/types": "npm:^3.7.2" tslib: "npm:^2.6.2" - checksum: 10c0/66cb4c568d8c5e6973e3a01b0af1900e8ce1e716fe4f91aa9c7a92d4dfbcfefcf8415e445405011c0d7bd7457c72d357d5b83b1e053bcda0f762dd84796d7bbe + checksum: 10c0/d0dbf11dab53a54fa78b000690d306d2a4d86e8d010c44571d2027a30353ab3a2dc3b2916db5e2e26c788174f6318a96a6a79e1dbdf5bfde5f4d04b0b111eb8d languageName: node linkType: hard @@ -1939,17 +1939,17 @@ __metadata: languageName: node linkType: hard -"@aws-sdk/credential-provider-process@npm:3.713.0": - version: 3.713.0 - resolution: "@aws-sdk/credential-provider-process@npm:3.713.0" +"@aws-sdk/credential-provider-process@npm:3.714.0": + version: 3.714.0 + resolution: "@aws-sdk/credential-provider-process@npm:3.714.0" dependencies: - "@aws-sdk/core": "npm:3.713.0" - "@aws-sdk/types": "npm:3.713.0" + "@aws-sdk/core": "npm:3.714.0" + "@aws-sdk/types": "npm:3.714.0" "@smithy/property-provider": "npm:^3.1.11" "@smithy/shared-ini-file-loader": "npm:^3.1.12" "@smithy/types": "npm:^3.7.2" tslib: "npm:^2.6.2" - checksum: 10c0/8eec7002ea48a70893826c5b226a74a624fa8527db015fc47e4c879cadd4e974f17268e581b0a8eb5cc48b8ce72562ce8b89413576cae5dee0a92432112723f0 + checksum: 10c0/7a7e54a69e5ba10437d64b37db1fa466498da789d82e5eb24afa897d0b88b5ee0c117825c535a4cbaacb87818f7814e57ab2a83f47ba22ec12e9ee1bc39504d6 languageName: node linkType: hard @@ -1969,19 +1969,19 @@ __metadata: languageName: node linkType: hard -"@aws-sdk/credential-provider-sso@npm:3.713.0": - version: 3.713.0 - resolution: "@aws-sdk/credential-provider-sso@npm:3.713.0" +"@aws-sdk/credential-provider-sso@npm:3.714.0": + version: 3.714.0 + resolution: "@aws-sdk/credential-provider-sso@npm:3.714.0" dependencies: - "@aws-sdk/client-sso": "npm:3.713.0" - "@aws-sdk/core": "npm:3.713.0" - "@aws-sdk/token-providers": "npm:3.713.0" - "@aws-sdk/types": "npm:3.713.0" + "@aws-sdk/client-sso": "npm:3.714.0" + "@aws-sdk/core": "npm:3.714.0" + "@aws-sdk/token-providers": "npm:3.714.0" + "@aws-sdk/types": "npm:3.714.0" "@smithy/property-provider": "npm:^3.1.11" "@smithy/shared-ini-file-loader": "npm:^3.1.12" "@smithy/types": "npm:^3.7.2" tslib: "npm:^2.6.2" - checksum: 10c0/f2e13aaabe2cb2051cb9a28f42bcb8f2729f92bb35911db0a48dd06c876e53a438564a3e166c1937d754c5db9f8492b18bd788c2887a35b310aa2fadd6361805 + checksum: 10c0/38ac8af50a9384cb0ad2745d62d8fe6a2f77fb2967dfe24b47860caeca4017420a67155679a096e08aaadeb666ff72419aac158549d82e4d2c11525b5c69fb23 languageName: node linkType: hard @@ -2000,18 +2000,18 @@ __metadata: languageName: node linkType: hard -"@aws-sdk/credential-provider-web-identity@npm:3.713.0": - version: 3.713.0 - resolution: "@aws-sdk/credential-provider-web-identity@npm:3.713.0" +"@aws-sdk/credential-provider-web-identity@npm:3.714.0": + version: 3.714.0 + resolution: "@aws-sdk/credential-provider-web-identity@npm:3.714.0" dependencies: - "@aws-sdk/core": "npm:3.713.0" - "@aws-sdk/types": "npm:3.713.0" + "@aws-sdk/core": "npm:3.714.0" + "@aws-sdk/types": "npm:3.714.0" "@smithy/property-provider": "npm:^3.1.11" "@smithy/types": "npm:^3.7.2" tslib: "npm:^2.6.2" peerDependencies: - "@aws-sdk/client-sts": ^3.713.0 - checksum: 10c0/adba5e6d57a757364c8fcc3bc1b637169d3e3386875caa33cfcff5380f4f10bae5a4818661210c37ace5d077112456145ce7e028ed20851931c6880530f4e5f5 + "@aws-sdk/client-sts": ^3.714.0 + checksum: 10c0/7b66f7fd1005779877482de03c8b38de2d08480794971bb6ad6825e49bdeae9beed665c89395d0c8109fb6f984601500a255f88caca3133ba24e73a703e0d5b5 languageName: node linkType: hard @@ -2040,42 +2040,42 @@ __metadata: languageName: node linkType: hard -"@aws-sdk/middleware-bucket-endpoint@npm:3.713.0": - version: 3.713.0 - resolution: "@aws-sdk/middleware-bucket-endpoint@npm:3.713.0" +"@aws-sdk/middleware-bucket-endpoint@npm:3.714.0": + version: 3.714.0 + resolution: "@aws-sdk/middleware-bucket-endpoint@npm:3.714.0" dependencies: - "@aws-sdk/types": "npm:3.713.0" + "@aws-sdk/types": "npm:3.714.0" "@aws-sdk/util-arn-parser": "npm:3.693.0" "@smithy/node-config-provider": "npm:^3.1.12" "@smithy/protocol-http": "npm:^4.1.8" "@smithy/types": "npm:^3.7.2" "@smithy/util-config-provider": "npm:^3.0.0" tslib: "npm:^2.6.2" - checksum: 10c0/4f7d440c8c2bbcc6bc357cde2df490896b3e35e869f71de0eb50f9375793ce9587176a2883945795034bd417d1208cf413031ca0656781b168af80741e3227b3 + checksum: 10c0/41b1bb79e34cd445e783affe896dc01ecdf71b13b68b2354a24c18f9383d2f4ab76cbae516bb5d3413a0aaa094bb783556aed04bc5a7cc4c06c09eecd2c88d73 languageName: node linkType: hard -"@aws-sdk/middleware-expect-continue@npm:3.713.0": - version: 3.713.0 - resolution: "@aws-sdk/middleware-expect-continue@npm:3.713.0" +"@aws-sdk/middleware-expect-continue@npm:3.714.0": + version: 3.714.0 + resolution: "@aws-sdk/middleware-expect-continue@npm:3.714.0" dependencies: - "@aws-sdk/types": "npm:3.713.0" + "@aws-sdk/types": "npm:3.714.0" "@smithy/protocol-http": "npm:^4.1.8" "@smithy/types": "npm:^3.7.2" tslib: "npm:^2.6.2" - checksum: 10c0/be4a216e1b37793376d63f5ef05e3a876990d789b441227d3b3d921ca102092f3daa36d09fb80df583df547585e961b67e4e468d653c53c9fa7c4e601030325e + checksum: 10c0/91652133b747c5fb84fca22176e38f982dc79e124cfa99310a07126bb9870f1abd5856dde0c708c776b25708c55d6cc1146bedcab87307e041ecf24538347738 languageName: node linkType: hard -"@aws-sdk/middleware-flexible-checksums@npm:3.713.0": - version: 3.713.0 - resolution: "@aws-sdk/middleware-flexible-checksums@npm:3.713.0" +"@aws-sdk/middleware-flexible-checksums@npm:3.714.0": + version: 3.714.0 + resolution: "@aws-sdk/middleware-flexible-checksums@npm:3.714.0" dependencies: "@aws-crypto/crc32": "npm:5.2.0" "@aws-crypto/crc32c": "npm:5.2.0" "@aws-crypto/util": "npm:5.2.0" - "@aws-sdk/core": "npm:3.713.0" - "@aws-sdk/types": "npm:3.713.0" + "@aws-sdk/core": "npm:3.714.0" + "@aws-sdk/types": "npm:3.714.0" "@smithy/is-array-buffer": "npm:^3.0.0" "@smithy/node-config-provider": "npm:^3.1.12" "@smithy/protocol-http": "npm:^4.1.8" @@ -2084,7 +2084,7 @@ __metadata: "@smithy/util-stream": "npm:^3.3.2" "@smithy/util-utf8": "npm:^3.0.0" tslib: "npm:^2.6.2" - checksum: 10c0/8090aa78d3750668b44d005581a8a4008ddb0eb4798897e57da8d868ffefa2b51627422bd9c93b3c122affd4b4f923f5372780399c5f17a57b04c5c4bba65c5b + checksum: 10c0/1450c46745f0e5ef08f52c85c19aeb95a6eed480634d768cf74c6116597d54d46f8fd750cf287cff85694b283d49b1393939f85b7ee74617ae0216d5ccdf6c6c languageName: node linkType: hard @@ -2100,26 +2100,26 @@ __metadata: languageName: node linkType: hard -"@aws-sdk/middleware-host-header@npm:3.713.0": - version: 3.713.0 - resolution: "@aws-sdk/middleware-host-header@npm:3.713.0" +"@aws-sdk/middleware-host-header@npm:3.714.0": + version: 3.714.0 + resolution: "@aws-sdk/middleware-host-header@npm:3.714.0" dependencies: - "@aws-sdk/types": "npm:3.713.0" + "@aws-sdk/types": "npm:3.714.0" "@smithy/protocol-http": "npm:^4.1.8" "@smithy/types": "npm:^3.7.2" tslib: "npm:^2.6.2" - checksum: 10c0/35971ee649d66f0b0c102426b6096a86e88a79f18aa9764bb3d43dd3d1fb9e657ca5ac2afa1fe78448016cce1ab6737bcd1a3f56be6ebe160ed38e2dff448796 + checksum: 10c0/c817ca326e9986fa135cfb94abc000477278fdac01d78e0d7d59cf2f02be89afe6e4c9aeb2c575f49dc29d08ed6593f0df634bd23a61f183a4cb09c50d76a1b9 languageName: node linkType: hard -"@aws-sdk/middleware-location-constraint@npm:3.713.0": - version: 3.713.0 - resolution: "@aws-sdk/middleware-location-constraint@npm:3.713.0" +"@aws-sdk/middleware-location-constraint@npm:3.714.0": + version: 3.714.0 + resolution: "@aws-sdk/middleware-location-constraint@npm:3.714.0" dependencies: - "@aws-sdk/types": "npm:3.713.0" + "@aws-sdk/types": "npm:3.714.0" "@smithy/types": "npm:^3.7.2" tslib: "npm:^2.6.2" - checksum: 10c0/6e75dfee701bfbdcbd4315c7b1cede91749cea788c1339b2626899ab2d56427587cb4cc95c551b40ed66f4b9b5d0bc39ff6c949185459f89b35d96c421f58f1d + checksum: 10c0/6766c16359561e147d4408df76c56a26ee53c34ba58a6e20c15b654045dd0a7005da98061e0de5520f3fa059fb24f751d1521cbf5a7a2d2ba41585c54f13b45d languageName: node linkType: hard @@ -2134,14 +2134,14 @@ __metadata: languageName: node linkType: hard -"@aws-sdk/middleware-logger@npm:3.713.0": - version: 3.713.0 - resolution: "@aws-sdk/middleware-logger@npm:3.713.0" +"@aws-sdk/middleware-logger@npm:3.714.0": + version: 3.714.0 + resolution: "@aws-sdk/middleware-logger@npm:3.714.0" dependencies: - "@aws-sdk/types": "npm:3.713.0" + "@aws-sdk/types": "npm:3.714.0" "@smithy/types": "npm:^3.7.2" tslib: "npm:^2.6.2" - checksum: 10c0/55741d982cd594f33c0877ebf7649dc37f94ad2a3d4ade1c693f0e113582be09fb167cfeb10a82bcf5acedc2e3bd3d024532518657a42f211d3608df2d658413 + checksum: 10c0/c4ae1cdf3e8569fcab51f3a61cf8ee053e94a5b0efb0b3149178c18e44eb37b2be7f35a7e351fd9cfe21b8178f5a60d53012dc93779529b3d41a0f158a6d4ae4 languageName: node linkType: hard @@ -2157,24 +2157,24 @@ __metadata: languageName: node linkType: hard -"@aws-sdk/middleware-recursion-detection@npm:3.713.0": - version: 3.713.0 - resolution: "@aws-sdk/middleware-recursion-detection@npm:3.713.0" +"@aws-sdk/middleware-recursion-detection@npm:3.714.0": + version: 3.714.0 + resolution: "@aws-sdk/middleware-recursion-detection@npm:3.714.0" dependencies: - "@aws-sdk/types": "npm:3.713.0" + "@aws-sdk/types": "npm:3.714.0" "@smithy/protocol-http": "npm:^4.1.8" "@smithy/types": "npm:^3.7.2" tslib: "npm:^2.6.2" - checksum: 10c0/260380d1cc84327b6d47a59743cc254bf4ca6e639c71e7d03a8d2c2e5be3967aff534b0e151aec0bda02a95c5a108aeaff62d4b88943fca3f7b73d507fe04ff5 + checksum: 10c0/0a423e6fd930b98a6237849ef2d1d5c50217fb1a78a48e6e6eb73b077588ad295f3e64edc4836702dd8053bb1eac73d5007ff1dfc097f1b66b793cbd98f390cc languageName: node linkType: hard -"@aws-sdk/middleware-sdk-s3@npm:3.713.0": - version: 3.713.0 - resolution: "@aws-sdk/middleware-sdk-s3@npm:3.713.0" +"@aws-sdk/middleware-sdk-s3@npm:3.714.0": + version: 3.714.0 + resolution: "@aws-sdk/middleware-sdk-s3@npm:3.714.0" dependencies: - "@aws-sdk/core": "npm:3.713.0" - "@aws-sdk/types": "npm:3.713.0" + "@aws-sdk/core": "npm:3.714.0" + "@aws-sdk/types": "npm:3.714.0" "@aws-sdk/util-arn-parser": "npm:3.693.0" "@smithy/core": "npm:^2.5.5" "@smithy/node-config-provider": "npm:^3.1.12" @@ -2187,18 +2187,18 @@ __metadata: "@smithy/util-stream": "npm:^3.3.2" "@smithy/util-utf8": "npm:^3.0.0" tslib: "npm:^2.6.2" - checksum: 10c0/7f2e7359ff94ab2373cafb7868a0ee8bd6161ab800b29cb2ec89c32b286b499fe84e0de4a7275a23db1dd7b01577426191765bd13f9c3fbd38acc41d28731dda + checksum: 10c0/d7d779aedcbd5c9d4776ff09762d862e2a66f13f8856f19855da973d6debaafcd0b8d1a5c1b2ae615298ff6f76bc78679c48d66a4ecf0deea7d584f6e6a0616a languageName: node linkType: hard -"@aws-sdk/middleware-ssec@npm:3.713.0": - version: 3.713.0 - resolution: "@aws-sdk/middleware-ssec@npm:3.713.0" +"@aws-sdk/middleware-ssec@npm:3.714.0": + version: 3.714.0 + resolution: "@aws-sdk/middleware-ssec@npm:3.714.0" dependencies: - "@aws-sdk/types": "npm:3.713.0" + "@aws-sdk/types": "npm:3.714.0" "@smithy/types": "npm:^3.7.2" tslib: "npm:^2.6.2" - checksum: 10c0/ccfc76cfbf8d9fa0e44272e1afba62bef60d44b098cdc3dd7248a1c692a411c905491d7f1cec51206064d71f3a56f294acdbc9cbba36aac01a9010170850e9f5 + checksum: 10c0/9ad944a94549c9a4a068ea6d46df2ab830a91c49936260fe4347ec5a01d6efc7649979eee021ebad84a73802b75c83bb142392f7a1b7b99f5e40ed1e579b564f languageName: node linkType: hard @@ -2217,18 +2217,18 @@ __metadata: languageName: node linkType: hard -"@aws-sdk/middleware-user-agent@npm:3.713.0": - version: 3.713.0 - resolution: "@aws-sdk/middleware-user-agent@npm:3.713.0" +"@aws-sdk/middleware-user-agent@npm:3.714.0": + version: 3.714.0 + resolution: "@aws-sdk/middleware-user-agent@npm:3.714.0" dependencies: - "@aws-sdk/core": "npm:3.713.0" - "@aws-sdk/types": "npm:3.713.0" - "@aws-sdk/util-endpoints": "npm:3.713.0" + "@aws-sdk/core": "npm:3.714.0" + "@aws-sdk/types": "npm:3.714.0" + "@aws-sdk/util-endpoints": "npm:3.714.0" "@smithy/core": "npm:^2.5.5" "@smithy/protocol-http": "npm:^4.1.8" "@smithy/types": "npm:^3.7.2" tslib: "npm:^2.6.2" - checksum: 10c0/5b7b7195b52d5c0577eb0f482b0c177d49d243e672909b2d6daeff07d521e8a9ff13e3ddb16da2e321ce4582ca2624683c0443b99752ee242b9bb5d22b70d049 + checksum: 10c0/98379fe4cc5cc95ececb5ed892c4a310da1a80b6e75e8abb28c482838b1f9442c93d2d813542eaea04fb244e1b589b0100ccfebe5d711b463a3324695f245a04 languageName: node linkType: hard @@ -2256,64 +2256,64 @@ __metadata: languageName: node linkType: hard -"@aws-sdk/region-config-resolver@npm:3.713.0": - version: 3.713.0 - resolution: "@aws-sdk/region-config-resolver@npm:3.713.0" +"@aws-sdk/region-config-resolver@npm:3.714.0": + version: 3.714.0 + resolution: "@aws-sdk/region-config-resolver@npm:3.714.0" dependencies: - "@aws-sdk/types": "npm:3.713.0" + "@aws-sdk/types": "npm:3.714.0" "@smithy/node-config-provider": "npm:^3.1.12" "@smithy/types": "npm:^3.7.2" "@smithy/util-config-provider": "npm:^3.0.0" "@smithy/util-middleware": "npm:^3.0.11" tslib: "npm:^2.6.2" - checksum: 10c0/3ac503ed36b0af1dcbccaa42923ab0b1f1dbb99748eb0404537d684da880f9c1234abcce4594cdef9551d6ca4dc99d721274b1b84ff812f912018db36ce33974 + checksum: 10c0/160e001b060ed2743c74856991207ac47cec1d7e96885d90468548c8ee7113e1de65143a1f417d8fa27f6c57679b89b56d1444ff87c05333d31f3379b55838b3 languageName: node linkType: hard -"@aws-sdk/s3-presigned-post@npm:3.713.0": - version: 3.713.0 - resolution: "@aws-sdk/s3-presigned-post@npm:3.713.0" +"@aws-sdk/s3-presigned-post@npm:3.714.0": + version: 3.714.0 + resolution: "@aws-sdk/s3-presigned-post@npm:3.714.0" dependencies: - "@aws-sdk/client-s3": "npm:3.713.0" - "@aws-sdk/types": "npm:3.713.0" - "@aws-sdk/util-format-url": "npm:3.713.0" + "@aws-sdk/client-s3": "npm:3.714.0" + "@aws-sdk/types": "npm:3.714.0" + "@aws-sdk/util-format-url": "npm:3.714.0" "@smithy/middleware-endpoint": "npm:^3.2.5" "@smithy/signature-v4": "npm:^4.2.4" "@smithy/types": "npm:^3.7.2" "@smithy/util-hex-encoding": "npm:^3.0.0" "@smithy/util-utf8": "npm:^3.0.0" tslib: "npm:^2.6.2" - checksum: 10c0/0230822865035e6d5b4373d07b17802152294b194eba64f60364c06c38723af08c986514523ab784d8c56607dffc18b0e08baca6637795b0aac9cfd186320fa3 + checksum: 10c0/ff4ccd6771257eb8fe886494127363603579e95c44fc41ae7358f3d7b0e1a3c67c0fd570ed0b1f8fdf9dc2c93caba1a2f5f188397c6eb6a2c76beb5a67d2443b languageName: node linkType: hard -"@aws-sdk/s3-request-presigner@npm:3.713.0": - version: 3.713.0 - resolution: "@aws-sdk/s3-request-presigner@npm:3.713.0" +"@aws-sdk/s3-request-presigner@npm:3.714.0": + version: 3.714.0 + resolution: "@aws-sdk/s3-request-presigner@npm:3.714.0" dependencies: - "@aws-sdk/signature-v4-multi-region": "npm:3.713.0" - "@aws-sdk/types": "npm:3.713.0" - "@aws-sdk/util-format-url": "npm:3.713.0" + "@aws-sdk/signature-v4-multi-region": "npm:3.714.0" + "@aws-sdk/types": "npm:3.714.0" + "@aws-sdk/util-format-url": "npm:3.714.0" "@smithy/middleware-endpoint": "npm:^3.2.5" "@smithy/protocol-http": "npm:^4.1.8" "@smithy/smithy-client": "npm:^3.5.0" "@smithy/types": "npm:^3.7.2" tslib: "npm:^2.6.2" - checksum: 10c0/a4320c480c5204c0929a6c97e9bdcf7f27803c5b8dd6e628f6b984f9ba6b39ecefccc97eec7d0859e665799fc5c422b3c5f64fae3e29b6de53b087a1a78676ab + checksum: 10c0/354fdda0a89abb8aa55ed68a742ff4ddde2c8894763fe8895b91637f157c4361a5aca9c0970a770a276eb74c426dcaaf3408b4a995f5c6b07b4adfce804449f2 languageName: node linkType: hard -"@aws-sdk/signature-v4-multi-region@npm:3.713.0": - version: 3.713.0 - resolution: "@aws-sdk/signature-v4-multi-region@npm:3.713.0" +"@aws-sdk/signature-v4-multi-region@npm:3.714.0": + version: 3.714.0 + resolution: "@aws-sdk/signature-v4-multi-region@npm:3.714.0" dependencies: - "@aws-sdk/middleware-sdk-s3": "npm:3.713.0" - "@aws-sdk/types": "npm:3.713.0" + "@aws-sdk/middleware-sdk-s3": "npm:3.714.0" + "@aws-sdk/types": "npm:3.714.0" "@smithy/protocol-http": "npm:^4.1.8" "@smithy/signature-v4": "npm:^4.2.4" "@smithy/types": "npm:^3.7.2" tslib: "npm:^2.6.2" - checksum: 10c0/0ca8b8e7b846475b7642bae0a63f1ac2b45ea50cdb45ed6960fbbd9fc149a6babe0c31068962fb5535248a5ed29fce3dd8794805d35879f1182a64029d5a5099 + checksum: 10c0/1321d755799c1969218650129d634cbcabab8c02389a58162b777d6a91abaf87d3616f2e1a400ff42ae5f5f206da9555e6ea9edecbff0edc133733a4f4d34026 languageName: node linkType: hard @@ -2342,18 +2342,18 @@ __metadata: languageName: node linkType: hard -"@aws-sdk/token-providers@npm:3.713.0": - version: 3.713.0 - resolution: "@aws-sdk/token-providers@npm:3.713.0" +"@aws-sdk/token-providers@npm:3.714.0": + version: 3.714.0 + resolution: "@aws-sdk/token-providers@npm:3.714.0" dependencies: - "@aws-sdk/types": "npm:3.713.0" + "@aws-sdk/types": "npm:3.714.0" "@smithy/property-provider": "npm:^3.1.11" "@smithy/shared-ini-file-loader": "npm:^3.1.12" "@smithy/types": "npm:^3.7.2" tslib: "npm:^2.6.2" peerDependencies: - "@aws-sdk/client-sso-oidc": ^3.713.0 - checksum: 10c0/09c83c31ef0f96526586aeefcb2935cd004a2f366cf3b4b117db38de8651f9d4f6c09e05c95b5849510e22c49a70b4d63156ccb457dd7cc221a0b3082daab96e + "@aws-sdk/client-sso-oidc": ^3.714.0 + checksum: 10c0/5f3c83f8128a5bf0dfb6bbf78cb908d8b289ea5e1ead7d6dceb32f84a72eb910edddabb419a4c4f662a28a5e0f334dc6ca3be5f4e199f899d97a3b1fa25cbefd languageName: node linkType: hard @@ -2367,13 +2367,13 @@ __metadata: languageName: node linkType: hard -"@aws-sdk/types@npm:3.713.0, @aws-sdk/types@npm:^3.222.0": - version: 3.713.0 - resolution: "@aws-sdk/types@npm:3.713.0" +"@aws-sdk/types@npm:3.714.0, @aws-sdk/types@npm:^3.222.0": + version: 3.714.0 + resolution: "@aws-sdk/types@npm:3.714.0" dependencies: "@smithy/types": "npm:^3.7.2" tslib: "npm:^2.6.2" - checksum: 10c0/1e3f7b29a7a8af57a50539f014ceda9d2322d3ae89e83785ab19304065dd022b4ed28ed6502591c2c30bce36c393953e8e08e595028bc8c6b5c07332309c8efc + checksum: 10c0/fd1b47d0d85bef495a2d76e4ad8d56328638ba59fec9719c7f30aedbde1f058d269825e00fc78eebafda14b73a583445911599eba6e9d039e3059cc79dd074d4 languageName: node linkType: hard @@ -2398,27 +2398,27 @@ __metadata: languageName: node linkType: hard -"@aws-sdk/util-endpoints@npm:3.713.0": - version: 3.713.0 - resolution: "@aws-sdk/util-endpoints@npm:3.713.0" +"@aws-sdk/util-endpoints@npm:3.714.0": + version: 3.714.0 + resolution: "@aws-sdk/util-endpoints@npm:3.714.0" dependencies: - "@aws-sdk/types": "npm:3.713.0" + "@aws-sdk/types": "npm:3.714.0" "@smithy/types": "npm:^3.7.2" "@smithy/util-endpoints": "npm:^2.1.7" tslib: "npm:^2.6.2" - checksum: 10c0/efb08ee259ecddb3308dc5c80b5744275ca330d4f60872303b4c18448bd2b3c6e4842dcb5fd6848f08e81d18edcee3d4ed1c09631aa2e1c59d753d483ba7b041 + checksum: 10c0/2cccad1c18848e48a764def1aa46efac10900a9c083d6f8d8cf6d9495e66439e0dcb54c181242840bb3ea814ac4c1ef1f663c2b17d34e52035917435a473cd68 languageName: node linkType: hard -"@aws-sdk/util-format-url@npm:3.713.0": - version: 3.713.0 - resolution: "@aws-sdk/util-format-url@npm:3.713.0" +"@aws-sdk/util-format-url@npm:3.714.0": + version: 3.714.0 + resolution: "@aws-sdk/util-format-url@npm:3.714.0" dependencies: - "@aws-sdk/types": "npm:3.713.0" + "@aws-sdk/types": "npm:3.714.0" "@smithy/querystring-builder": "npm:^3.0.11" "@smithy/types": "npm:^3.7.2" tslib: "npm:^2.6.2" - checksum: 10c0/7a20c29fff592a60003354bceb83020b25d14a630f3ef5b55a48c6b356afc8daa58f8891c8da7e46284235dac5cdd96f4356e560c2ef879776804652930a8f12 + checksum: 10c0/adf0585353491bceb7a5e436cd9f1a124efd6e0ffadaeab1719700462fb7f7d8c799929379c71161266f03a64ee23a9c13938044fc2dd07a1471cf38bf83c81f languageName: node linkType: hard @@ -2443,15 +2443,15 @@ __metadata: languageName: node linkType: hard -"@aws-sdk/util-user-agent-browser@npm:3.713.0": - version: 3.713.0 - resolution: "@aws-sdk/util-user-agent-browser@npm:3.713.0" +"@aws-sdk/util-user-agent-browser@npm:3.714.0": + version: 3.714.0 + resolution: "@aws-sdk/util-user-agent-browser@npm:3.714.0" dependencies: - "@aws-sdk/types": "npm:3.713.0" + "@aws-sdk/types": "npm:3.714.0" "@smithy/types": "npm:^3.7.2" bowser: "npm:^2.11.0" tslib: "npm:^2.6.2" - checksum: 10c0/b39158ec4716d3be25db436668b657f63e2d728743f3b2390bb70663690c25be928094c3fdf42b12983d76f79b988654d07b65010ef9d598e98d7a8343659f98 + checksum: 10c0/6b8813e28c7a73316d0a3b3259b3a6ecc403390f475f8e223a81469e24583712c07cb36a026e5109c82cf00c237974025cf320e2b35f4256339732e99cbcc092 languageName: node linkType: hard @@ -2473,12 +2473,12 @@ __metadata: languageName: node linkType: hard -"@aws-sdk/util-user-agent-node@npm:3.713.0": - version: 3.713.0 - resolution: "@aws-sdk/util-user-agent-node@npm:3.713.0" +"@aws-sdk/util-user-agent-node@npm:3.714.0": + version: 3.714.0 + resolution: "@aws-sdk/util-user-agent-node@npm:3.714.0" dependencies: - "@aws-sdk/middleware-user-agent": "npm:3.713.0" - "@aws-sdk/types": "npm:3.713.0" + "@aws-sdk/middleware-user-agent": "npm:3.714.0" + "@aws-sdk/types": "npm:3.714.0" "@smithy/node-config-provider": "npm:^3.1.12" "@smithy/types": "npm:^3.7.2" tslib: "npm:^2.6.2" @@ -2487,7 +2487,7 @@ __metadata: peerDependenciesMeta: aws-crt: optional: true - checksum: 10c0/e392c461c87a9da2bb688d3d1758cd7cac505417e00401d7d24804d4ce8b6f5b8fd6894e5fb9191e6cc194ce1bb564b6b0d52e6b8a8facce815b0924ce0d0028 + checksum: 10c0/a1deaa432ddaa5f3477495516fd1698de279d60073aa4adc5b38d907d61699021494c90a8fb92c4d72b9c35b152e107cec028814d7b4956fc9f4f1dbdf4e5bec languageName: node linkType: hard @@ -9078,8 +9078,8 @@ __metadata: version: 0.0.0-use.local resolution: "@local/hash-backend-utils@workspace:libs/@local/hash-backend-utils" dependencies: - "@aws-sdk/client-s3": "npm:3.713.0" - "@aws-sdk/s3-request-presigner": "npm:3.713.0" + "@aws-sdk/client-s3": "npm:3.714.0" + "@aws-sdk/s3-request-presigner": "npm:3.714.0" "@blockprotocol/core": "npm:0.1.3" "@blockprotocol/graph": "npm:0.4.0-canary.0" "@blockprotocol/type-system": "npm:0.1.2-canary.0" From 2ed02c23941e00987f1bd156f886fbf86cb1a0db Mon Sep 17 00:00:00 2001 From: Ciaran Morinan <37743469+CiaranMn@users.noreply.github.com> Date: Wed, 18 Dec 2024 15:08:23 +0000 Subject: [PATCH 042/159] H-3819: Upgrade to Node 22 (#5944) --- apps/hash-ai-worker-ts/docker/Dockerfile | 6 +++--- .../get-entity-summaries-from-text.optimize.ai.test.ts | 2 +- apps/hash-frontend/package.json | 3 --- apps/hash-graph/docker/Dockerfile | 2 +- apps/hash-integration-worker/docker/Dockerfile | 6 +++--- apps/hashdotdesign/vercel-build.sh | 3 +++ apps/hashdotdev/package.json | 3 --- apps/hashdotdev/tsconfig.json | 2 +- infra/docker/api/prod/Dockerfile | 6 +++--- infra/docker/frontend/prod/Dockerfile | 6 +++--- infra/docker/realtime/prod/Dockerfile | 4 ++-- infra/docker/search-loader/prod/Dockerfile | 4 ++-- libs/@blockprotocol/graph/package.json | 3 --- libs/@blockprotocol/graph/tsconfig.json | 2 +- libs/@blockprotocol/type-system/typescript/tsconfig.json | 2 +- libs/@local/harpc/client/typescript/tsconfig.json | 1 - libs/@local/hash-isomorphic-utils/tsconfig.json | 2 +- libs/@local/tsconfig/legacy-base-tsconfig-to-refactor.json | 4 ++-- package.json | 5 ++++- 19 files changed, 31 insertions(+), 35 deletions(-) diff --git a/apps/hash-ai-worker-ts/docker/Dockerfile b/apps/hash-ai-worker-ts/docker/Dockerfile index e0937af8425..b82cf439cd4 100644 --- a/apps/hash-ai-worker-ts/docker/Dockerfile +++ b/apps/hash-ai-worker-ts/docker/Dockerfile @@ -1,4 +1,4 @@ -FROM node:20.13-alpine AS base +FROM node:22.12-alpine AS base WORKDIR /app @@ -17,7 +17,7 @@ RUN turbo prune --scope='@apps/hash-ai-worker-ts' --docker && \ cp -R .cargo Cargo.toml Cargo.lock /app/out/full/ -FROM node:20.13-slim AS rust +FROM node:22.12-slim AS rust WORKDIR /usr/local/ @@ -52,7 +52,7 @@ COPY --from=base /app/out/full/ . RUN yarn turbo build --filter '@apps/hash-ai-worker-ts' --env-mode=loose && rm -rf target/ -FROM node:20.13-slim AS runner +FROM node:22.12-slim AS runner COPY --from=installer /usr/local/src /usr/local/src WORKDIR /usr/local/src/apps/hash-ai-worker-ts diff --git a/apps/hash-ai-worker-ts/src/activities/flow-activities/shared/infer-summaries-then-claims-from-text/get-entity-summaries-from-text.optimize.ai.test.ts b/apps/hash-ai-worker-ts/src/activities/flow-activities/shared/infer-summaries-then-claims-from-text/get-entity-summaries-from-text.optimize.ai.test.ts index 0f10e63d5be..88050e558e5 100644 --- a/apps/hash-ai-worker-ts/src/activities/flow-activities/shared/infer-summaries-then-claims-from-text/get-entity-summaries-from-text.optimize.ai.test.ts +++ b/apps/hash-ai-worker-ts/src/activities/flow-activities/shared/infer-summaries-then-claims-from-text/get-entity-summaries-from-text.optimize.ai.test.ts @@ -1,6 +1,6 @@ /** * @file - * This file is set to 'esnext' because we want to use the Set methods available only in Node 22. + * This file is set to 'esnext' because we want to use the Set methods which are part of ES2025. * The only TSConfig 'lib' option that supports this is 'esnext', which is unsafe to set for the whole package * as it may include new APIs which are not yet supported by Node 22. * So we set it here for this file only. diff --git a/apps/hash-frontend/package.json b/apps/hash-frontend/package.json index d6df91dbdbf..86d2cb29ebf 100644 --- a/apps/hash-frontend/package.json +++ b/apps/hash-frontend/package.json @@ -155,8 +155,5 @@ "typescript": "5.7.2", "wait-on": "8.0.1", "webpack": "5.97.1" - }, - "engines": { - "node": ">= v20" } } diff --git a/apps/hash-graph/docker/Dockerfile b/apps/hash-graph/docker/Dockerfile index 24bd4d01640..01fc3ab7d78 100644 --- a/apps/hash-graph/docker/Dockerfile +++ b/apps/hash-graph/docker/Dockerfile @@ -20,7 +20,7 @@ RUN turbo prune --scope='@apps/hash-graph' --docker && \ cp -R .cargo Cargo.toml Cargo.lock /app/out/full/ -FROM node:20.13-alpine AS rust +FROM node:22.12-alpine AS rust WORKDIR /usr/local/ diff --git a/apps/hash-integration-worker/docker/Dockerfile b/apps/hash-integration-worker/docker/Dockerfile index 228a00ec80b..6d9eff596b2 100644 --- a/apps/hash-integration-worker/docker/Dockerfile +++ b/apps/hash-integration-worker/docker/Dockerfile @@ -1,4 +1,4 @@ -FROM node:20.13-alpine AS base +FROM node:22.12-alpine AS base WORKDIR /app @@ -17,7 +17,7 @@ RUN turbo prune --scope='@apps/hash-integration-worker' --docker && \ cp -R .cargo Cargo.toml Cargo.lock /app/out/full/ -FROM node:20.13-slim AS rust +FROM node:22.12-slim AS rust WORKDIR /usr/local/ @@ -52,7 +52,7 @@ COPY --from=base /app/out/full/ . RUN yarn turbo build --filter '@apps/hash-integration-worker' --env-mode=loose && rm -rf target/ -FROM node:20.13-slim AS runner +FROM node:22.12-slim AS runner COPY --from=installer /usr/local/src /usr/local/src WORKDIR /usr/local/src/apps/hash-integration-worker diff --git a/apps/hashdotdesign/vercel-build.sh b/apps/hashdotdesign/vercel-build.sh index 90758de6991..fdc92a489a1 100755 --- a/apps/hashdotdesign/vercel-build.sh +++ b/apps/hashdotdesign/vercel-build.sh @@ -1,5 +1,8 @@ #!/usr/bin/env bash +# shellcheck disable=SC1090 +source ~/.bashrc + set -euo pipefail echo "Changing dir to root" diff --git a/apps/hashdotdev/package.json b/apps/hashdotdev/package.json index c72434ec52a..be466f93d36 100644 --- a/apps/hashdotdev/package.json +++ b/apps/hashdotdev/package.json @@ -84,8 +84,5 @@ "execa": "7.2.0", "tsx": "4.19.2", "typescript": "5.7.2" - }, - "engines": { - "node": ">= v20" } } diff --git a/apps/hashdotdev/tsconfig.json b/apps/hashdotdev/tsconfig.json index bb1718c2a45..b2110aef93a 100644 --- a/apps/hashdotdev/tsconfig.json +++ b/apps/hashdotdev/tsconfig.json @@ -4,7 +4,7 @@ "allowSyntheticDefaultImports": true, "incremental": true, "isolatedModules": true, - "lib": ["DOM", "DOM.Iterable", "ES2023"], + "lib": ["DOM", "DOM.Iterable", "ES2024"], "paths": {}, "sourceMap": true, "target": "ES2021", diff --git a/infra/docker/api/prod/Dockerfile b/infra/docker/api/prod/Dockerfile index 87a4bc535d5..d6861667aac 100644 --- a/infra/docker/api/prod/Dockerfile +++ b/infra/docker/api/prod/Dockerfile @@ -1,4 +1,4 @@ -FROM node:20.13-alpine AS base +FROM node:22.12-alpine AS base WORKDIR /app @@ -17,7 +17,7 @@ RUN turbo prune --scope='@apps/hash-api' --docker && \ cp -R .cargo Cargo.toml Cargo.lock /app/out/full/ -FROM node:20.13-slim AS rust +FROM node:22.12-slim AS rust WORKDIR /usr/local/ @@ -52,7 +52,7 @@ COPY --from=base /app/out/full/ . RUN yarn turbo build --filter '@apps/hash-api' --env-mode=loose && rm -rf target/ -FROM node:20.13-slim AS runner +FROM node:22.12-slim AS runner COPY --from=installer /usr/local/src /usr/local/src WORKDIR /usr/local/src/apps/hash-api diff --git a/infra/docker/frontend/prod/Dockerfile b/infra/docker/frontend/prod/Dockerfile index c8d3cd88de9..af85d3e2533 100644 --- a/infra/docker/frontend/prod/Dockerfile +++ b/infra/docker/frontend/prod/Dockerfile @@ -1,4 +1,4 @@ -FROM node:20.13-alpine AS base +FROM node:22.12-alpine AS base WORKDIR /app @@ -17,7 +17,7 @@ RUN turbo prune --scope='@apps/hash-frontend' --docker && \ cp -R .cargo Cargo.toml Cargo.lock /app/out/full/ -FROM node:20.13-slim AS rust +FROM node:22.12-slim AS rust WORKDIR /usr/local/ @@ -57,7 +57,7 @@ ENV FRONTEND_URL=${FRONTEND_URL} RUN yarn turbo build --filter '@apps/hash-frontend' && rm -rf target/ -FROM node:20.13-slim AS runner +FROM node:22.12-slim AS runner COPY --from=installer /usr/local/src /usr/local/src WORKDIR /usr/local/src/apps/hash-frontend diff --git a/infra/docker/realtime/prod/Dockerfile b/infra/docker/realtime/prod/Dockerfile index acae3d4d459..009c53a02a2 100644 --- a/infra/docker/realtime/prod/Dockerfile +++ b/infra/docker/realtime/prod/Dockerfile @@ -1,4 +1,4 @@ -FROM node:20.13-alpine AS builder +FROM node:22.12-alpine AS builder WORKDIR /app @@ -21,7 +21,7 @@ COPY apps/hash-realtime apps/hash-realtime ######################################################################################### -FROM node:20.13-alpine +FROM node:22.12-alpine # Run as a non-root user RUN addgroup -S appgroup && adduser -S appuser -G appgroup diff --git a/infra/docker/search-loader/prod/Dockerfile b/infra/docker/search-loader/prod/Dockerfile index 62c8a56b276..c82ae41dbd9 100644 --- a/infra/docker/search-loader/prod/Dockerfile +++ b/infra/docker/search-loader/prod/Dockerfile @@ -1,4 +1,4 @@ -FROM node:20.13-alpine AS builder +FROM node:22.12-alpine AS builder WORKDIR /app @@ -31,7 +31,7 @@ COPY libs/@local/tsconfig libs/@local/tsconfig ######################################################################################### -FROM node:20.13-alpine +FROM node:22.12-alpine # Run as a non-root user RUN addgroup -S appgroup && adduser -S appuser -G appgroup diff --git a/libs/@blockprotocol/graph/package.json b/libs/@blockprotocol/graph/package.json index 9a6279bc424..7e3cdffd7cf 100644 --- a/libs/@blockprotocol/graph/package.json +++ b/libs/@blockprotocol/graph/package.json @@ -86,8 +86,5 @@ }, "peerDependencies": { "react": "^18.0.0" - }, - "engines": { - "node": ">= v20" } } diff --git a/libs/@blockprotocol/graph/tsconfig.json b/libs/@blockprotocol/graph/tsconfig.json index ae679cd7b6a..a710cba20dc 100644 --- a/libs/@blockprotocol/graph/tsconfig.json +++ b/libs/@blockprotocol/graph/tsconfig.json @@ -1,7 +1,7 @@ { "extends": "@local/tsconfig/legacy-base-tsconfig-to-refactor.json", "compilerOptions": { - "lib": ["dom", "dom.iterable", "ES2023"], + "lib": ["dom", "dom.iterable", "ES2024"], "module": "NodeNext", "moduleResolution": "NodeNext" }, diff --git a/libs/@blockprotocol/type-system/typescript/tsconfig.json b/libs/@blockprotocol/type-system/typescript/tsconfig.json index 9fc31a8f747..8c139fb7375 100644 --- a/libs/@blockprotocol/type-system/typescript/tsconfig.json +++ b/libs/@blockprotocol/type-system/typescript/tsconfig.json @@ -7,7 +7,7 @@ * @todo ideally we wouldn't specify 'dom' as this library is supposed to be usable across environments, * but we're using WebAssembly DOM types in the constructor input */ - "lib": ["dom", "ES2023"], + "lib": ["dom", "ES2024"], "module": "NodeNext", "moduleResolution": "NodeNext" } diff --git a/libs/@local/harpc/client/typescript/tsconfig.json b/libs/@local/harpc/client/typescript/tsconfig.json index 7fff5ad2cd1..2995475d9ee 100644 --- a/libs/@local/harpc/client/typescript/tsconfig.json +++ b/libs/@local/harpc/client/typescript/tsconfig.json @@ -1,7 +1,6 @@ { "extends": "@local/tsconfig/legacy-base-tsconfig-to-refactor.json", "compilerOptions": { - "lib": ["ES2023", "ESNext"], "module": "NodeNext", "moduleResolution": "NodeNext", "types": ["vitest/importMeta"] diff --git a/libs/@local/hash-isomorphic-utils/tsconfig.json b/libs/@local/hash-isomorphic-utils/tsconfig.json index 377694acc12..2c1bd455f26 100644 --- a/libs/@local/hash-isomorphic-utils/tsconfig.json +++ b/libs/@local/hash-isomorphic-utils/tsconfig.json @@ -13,6 +13,6 @@ * @todo ideally we wouldn't specify 'dom' as this library is supposed to be usable across environments, * but we have some functions which reference DOM APIs – these should be moved out */ - "lib": ["dom", "ES2023"] + "lib": ["dom", "ES2024"] } } diff --git a/libs/@local/tsconfig/legacy-base-tsconfig-to-refactor.json b/libs/@local/tsconfig/legacy-base-tsconfig-to-refactor.json index decdf82abc6..cbfe08d45c5 100644 --- a/libs/@local/tsconfig/legacy-base-tsconfig-to-refactor.json +++ b/libs/@local/tsconfig/legacy-base-tsconfig-to-refactor.json @@ -5,7 +5,7 @@ "checkJs": true, "esModuleInterop": true, "forceConsistentCasingInFileNames": true, - "lib": ["ES2023"], + "lib": ["es2024"], "module": "esnext", "moduleResolution": "node", "noFallthroughCasesInSwitch": true, @@ -13,7 +13,7 @@ "resolveJsonModule": true, "skipLibCheck": true, "strict": true, - "target": "ES2022", + "target": "es2024", "baseUrl": ".", "paths": { "@blockprotocol/graph": ["../../@blockprotocol/graph/src/main.ts"], diff --git a/package.json b/package.json index f0595b57d84..b0aabda4499 100644 --- a/package.json +++ b/package.json @@ -112,5 +112,8 @@ "prettier-plugin-packagejson": "2.5.6", "turbo": "2.3.3" }, - "packageManager": "yarn@4.5.3+sha512.3003a14012e2987072d244c720506549c1aab73ee728208f1b2580a9fd67b92d61ba6b08fe93f6dce68fd771e3af1e59a0afa28dd242dd0940d73b95fedd4e90" + "packageManager": "yarn@4.5.3+sha512.3003a14012e2987072d244c720506549c1aab73ee728208f1b2580a9fd67b92d61ba6b08fe93f6dce68fd771e3af1e59a0afa28dd242dd0940d73b95fedd4e90", + "engines": { + "node": ">= v22" + } } From 60e2a5ab5e79eb1c83be0087f32fbdcb1dd66878 Mon Sep 17 00:00:00 2001 From: "hash-worker[bot]" <180894564+hash-worker[bot]@users.noreply.github.com> Date: Wed, 18 Dec 2024 16:14:26 +0000 Subject: [PATCH 043/159] Update npm package `json-schema-to-typescript` to v15 (#5046) Co-authored-by: hash-worker[bot] <180894564+hash-worker[bot]@users.noreply.github.com> Co-authored-by: Bilal Mahmoud --- libs/@blockprotocol/graph/package.json | 3 +- .../compile/compile-schemas-to-typescript.ts | 3 +- yarn.lock | 39 +++++++++++++++++-- 3 files changed, 39 insertions(+), 6 deletions(-) diff --git a/libs/@blockprotocol/graph/package.json b/libs/@blockprotocol/graph/package.json index 7e3cdffd7cf..67d8de4fe04 100644 --- a/libs/@blockprotocol/graph/package.json +++ b/libs/@blockprotocol/graph/package.json @@ -69,12 +69,13 @@ "@blockprotocol/type-system": "0.1.2-canary.0", "ajv": "8.17.1", "ajv-formats": "3.0.1", - "json-schema-to-typescript": "11.0.5", + "json-schema-to-typescript": "15.0.3", "lit": "2.8.0", "lodash.isequal": "4.5.0", "typescript": "5.7.2" }, "devDependencies": { + "@apidevtools/json-schema-ref-parser": "11.7.3", "@local/eslint": "0.0.0-private", "@local/tsconfig": "0.0.0-private", "@types/lodash.isequal": "4.5.8", diff --git a/libs/@blockprotocol/graph/src/codegen/compile/compile-schemas-to-typescript.ts b/libs/@blockprotocol/graph/src/codegen/compile/compile-schemas-to-typescript.ts index 46cdbe59d77..8789cf60b35 100644 --- a/libs/@blockprotocol/graph/src/codegen/compile/compile-schemas-to-typescript.ts +++ b/libs/@blockprotocol/graph/src/codegen/compile/compile-schemas-to-typescript.ts @@ -1,3 +1,4 @@ +import type { HTTPResolverOptions } from "@apidevtools/json-schema-ref-parser"; import type { DataType, EntityType, @@ -49,7 +50,7 @@ const compileIndividualSchemaToTypescript = async ( const: redundantTypePlaceholder, }; }, - }, + } as HTTPResolverOptions, }, }, }); diff --git a/yarn.lock b/yarn.lock index 81eb3008437..8517ec0f78c 100644 --- a/yarn.lock +++ b/yarn.lock @@ -75,6 +75,17 @@ __metadata: languageName: node linkType: hard +"@apidevtools/json-schema-ref-parser@npm:11.7.3, @apidevtools/json-schema-ref-parser@npm:^11.5.5": + version: 11.7.3 + resolution: "@apidevtools/json-schema-ref-parser@npm:11.7.3" + dependencies: + "@jsdevtools/ono": "npm:^7.1.3" + "@types/json-schema": "npm:^7.0.15" + js-yaml: "npm:^4.1.0" + checksum: 10c0/326dcb3d4dfaf3f75ecab1ffae99d71123cc0a062a5996ac3d0ae66a1c6a852975bbdf606d2ef559766119e84aa6ca72b155f90529458d9ce22ab9d6c513404c + languageName: node + linkType: hard + "@apollo/client@npm:3.10.5": version: 3.10.5 resolution: "@apollo/client@npm:3.10.5" @@ -4506,6 +4517,7 @@ __metadata: version: 0.0.0-use.local resolution: "@blockprotocol/graph@workspace:libs/@blockprotocol/graph" dependencies: + "@apidevtools/json-schema-ref-parser": "npm:11.7.3" "@blockprotocol/core": "npm:0.1.3" "@blockprotocol/type-system": "npm:0.1.2-canary.0" "@local/eslint": "npm:0.0.0-private" @@ -4516,7 +4528,7 @@ __metadata: ajv: "npm:8.17.1" ajv-formats: "npm:3.0.1" eslint: "npm:9.17.0" - json-schema-to-typescript: "npm:11.0.5" + json-schema-to-typescript: "npm:15.0.3" lit: "npm:2.8.0" lodash.isequal: "npm:4.5.0" rimraf: "npm:6.0.1" @@ -17866,7 +17878,7 @@ __metadata: languageName: node linkType: hard -"@types/lodash@npm:*, @types/lodash@npm:4.17.13, @types/lodash@npm:^4.14.149, @types/lodash@npm:^4.14.167, @types/lodash@npm:^4.14.182, @types/lodash@npm:^4.14.202, @types/lodash@npm:^4.17.0, @types/lodash@npm:^4.17.13": +"@types/lodash@npm:*, @types/lodash@npm:4.17.13, @types/lodash@npm:^4.14.149, @types/lodash@npm:^4.14.167, @types/lodash@npm:^4.14.182, @types/lodash@npm:^4.14.202, @types/lodash@npm:^4.17.0, @types/lodash@npm:^4.17.13, @types/lodash@npm:^4.17.7": version: 4.17.13 resolution: "@types/lodash@npm:4.17.13" checksum: 10c0/c3d0b7efe7933ac0369b99f2f7bff9240d960680fdb74b41ed4bd1b3ca60cca1e31fe4046d9abbde778f941a41bc2a75eb629abf8659fa6c27b66efbbb0802a9 @@ -32406,7 +32418,26 @@ __metadata: languageName: node linkType: hard -"json-schema-to-typescript@npm:11.0.5, json-schema-to-typescript@npm:^11.0.2": +"json-schema-to-typescript@npm:15.0.3": + version: 15.0.3 + resolution: "json-schema-to-typescript@npm:15.0.3" + dependencies: + "@apidevtools/json-schema-ref-parser": "npm:^11.5.5" + "@types/json-schema": "npm:^7.0.15" + "@types/lodash": "npm:^4.17.7" + is-glob: "npm:^4.0.3" + js-yaml: "npm:^4.1.0" + lodash: "npm:^4.17.21" + minimist: "npm:^1.2.8" + prettier: "npm:^3.2.5" + tinyglobby: "npm:^0.2.9" + bin: + json2ts: dist/src/cli.js + checksum: 10c0/b972ceb85c9491a08964669ba878b2f12ba27ef14d4ac0444dac6c9479f91e635b1a6a3bf491a8b36cba6409edbdb2730a8f30db6106305e344f5bce0bf1a76d + languageName: node + linkType: hard + +"json-schema-to-typescript@npm:^11.0.2": version: 11.0.5 resolution: "json-schema-to-typescript@npm:11.0.5" dependencies: @@ -39091,7 +39122,7 @@ __metadata: languageName: node linkType: hard -"prettier@npm:*, prettier@npm:3.4.2": +"prettier@npm:*, prettier@npm:3.4.2, prettier@npm:^3.2.5": version: 3.4.2 resolution: "prettier@npm:3.4.2" bin: From 7b3511777b937c511c66bf4d236d28067f470c9c Mon Sep 17 00:00:00 2001 From: "hash-worker[bot]" <180894564+hash-worker[bot]@users.noreply.github.com> Date: Wed, 18 Dec 2024 16:28:27 +0000 Subject: [PATCH 044/159] Update npm package `lefthook` to v1.9.3 (#5952) Co-authored-by: hash-worker[bot] <180894564+hash-worker[bot]@users.noreply.github.com> --- package.json | 2 +- yarn.lock | 92 ++++++++++++++++++++++++++-------------------------- 2 files changed, 47 insertions(+), 47 deletions(-) diff --git a/package.json b/package.json index b0aabda4499..6a2a4c885e5 100644 --- a/package.json +++ b/package.json @@ -105,7 +105,7 @@ "@sentry/cli": "^2.39.1", "@taplo/cli": "0.7.0", "@yarnpkg/types": "^4.0.0", - "lefthook": "1.9.2", + "lefthook": "1.9.3", "markdownlint-cli": "0.43.0", "npm-run-all2": "7.0.2", "prettier": "3.4.2", diff --git a/yarn.lock b/yarn.lock index 8517ec0f78c..f7c6e0ba14b 100644 --- a/yarn.lock +++ b/yarn.lock @@ -29526,7 +29526,7 @@ __metadata: "@sentry/cli": "npm:^2.39.1" "@taplo/cli": "npm:0.7.0" "@yarnpkg/types": "npm:^4.0.0" - lefthook: "npm:1.9.2" + lefthook: "npm:1.9.3" markdownlint-cli: "npm:0.43.0" npm-run-all2: "npm:7.0.2" prettier: "npm:3.4.2" @@ -32901,90 +32901,90 @@ __metadata: languageName: node linkType: hard -"lefthook-darwin-arm64@npm:1.9.2": - version: 1.9.2 - resolution: "lefthook-darwin-arm64@npm:1.9.2" +"lefthook-darwin-arm64@npm:1.9.3": + version: 1.9.3 + resolution: "lefthook-darwin-arm64@npm:1.9.3" conditions: os=darwin & cpu=arm64 languageName: node linkType: hard -"lefthook-darwin-x64@npm:1.9.2": - version: 1.9.2 - resolution: "lefthook-darwin-x64@npm:1.9.2" +"lefthook-darwin-x64@npm:1.9.3": + version: 1.9.3 + resolution: "lefthook-darwin-x64@npm:1.9.3" conditions: os=darwin & cpu=x64 languageName: node linkType: hard -"lefthook-freebsd-arm64@npm:1.9.2": - version: 1.9.2 - resolution: "lefthook-freebsd-arm64@npm:1.9.2" +"lefthook-freebsd-arm64@npm:1.9.3": + version: 1.9.3 + resolution: "lefthook-freebsd-arm64@npm:1.9.3" conditions: os=freebsd & cpu=arm64 languageName: node linkType: hard -"lefthook-freebsd-x64@npm:1.9.2": - version: 1.9.2 - resolution: "lefthook-freebsd-x64@npm:1.9.2" +"lefthook-freebsd-x64@npm:1.9.3": + version: 1.9.3 + resolution: "lefthook-freebsd-x64@npm:1.9.3" conditions: os=freebsd & cpu=x64 languageName: node linkType: hard -"lefthook-linux-arm64@npm:1.9.2": - version: 1.9.2 - resolution: "lefthook-linux-arm64@npm:1.9.2" +"lefthook-linux-arm64@npm:1.9.3": + version: 1.9.3 + resolution: "lefthook-linux-arm64@npm:1.9.3" conditions: os=linux & cpu=arm64 languageName: node linkType: hard -"lefthook-linux-x64@npm:1.9.2": - version: 1.9.2 - resolution: "lefthook-linux-x64@npm:1.9.2" +"lefthook-linux-x64@npm:1.9.3": + version: 1.9.3 + resolution: "lefthook-linux-x64@npm:1.9.3" conditions: os=linux & cpu=x64 languageName: node linkType: hard -"lefthook-openbsd-arm64@npm:1.9.2": - version: 1.9.2 - resolution: "lefthook-openbsd-arm64@npm:1.9.2" +"lefthook-openbsd-arm64@npm:1.9.3": + version: 1.9.3 + resolution: "lefthook-openbsd-arm64@npm:1.9.3" conditions: os=openbsd & cpu=arm64 languageName: node linkType: hard -"lefthook-openbsd-x64@npm:1.9.2": - version: 1.9.2 - resolution: "lefthook-openbsd-x64@npm:1.9.2" +"lefthook-openbsd-x64@npm:1.9.3": + version: 1.9.3 + resolution: "lefthook-openbsd-x64@npm:1.9.3" conditions: os=openbsd & cpu=x64 languageName: node linkType: hard -"lefthook-windows-arm64@npm:1.9.2": - version: 1.9.2 - resolution: "lefthook-windows-arm64@npm:1.9.2" +"lefthook-windows-arm64@npm:1.9.3": + version: 1.9.3 + resolution: "lefthook-windows-arm64@npm:1.9.3" conditions: os=win32 & cpu=arm64 languageName: node linkType: hard -"lefthook-windows-x64@npm:1.9.2": - version: 1.9.2 - resolution: "lefthook-windows-x64@npm:1.9.2" +"lefthook-windows-x64@npm:1.9.3": + version: 1.9.3 + resolution: "lefthook-windows-x64@npm:1.9.3" conditions: os=win32 & cpu=x64 languageName: node linkType: hard -"lefthook@npm:1.9.2": - version: 1.9.2 - resolution: "lefthook@npm:1.9.2" - dependencies: - lefthook-darwin-arm64: "npm:1.9.2" - lefthook-darwin-x64: "npm:1.9.2" - lefthook-freebsd-arm64: "npm:1.9.2" - lefthook-freebsd-x64: "npm:1.9.2" - lefthook-linux-arm64: "npm:1.9.2" - lefthook-linux-x64: "npm:1.9.2" - lefthook-openbsd-arm64: "npm:1.9.2" - lefthook-openbsd-x64: "npm:1.9.2" - lefthook-windows-arm64: "npm:1.9.2" - lefthook-windows-x64: "npm:1.9.2" +"lefthook@npm:1.9.3": + version: 1.9.3 + resolution: "lefthook@npm:1.9.3" + dependencies: + lefthook-darwin-arm64: "npm:1.9.3" + lefthook-darwin-x64: "npm:1.9.3" + lefthook-freebsd-arm64: "npm:1.9.3" + lefthook-freebsd-x64: "npm:1.9.3" + lefthook-linux-arm64: "npm:1.9.3" + lefthook-linux-x64: "npm:1.9.3" + lefthook-openbsd-arm64: "npm:1.9.3" + lefthook-openbsd-x64: "npm:1.9.3" + lefthook-windows-arm64: "npm:1.9.3" + lefthook-windows-x64: "npm:1.9.3" dependenciesMeta: lefthook-darwin-arm64: optional: true @@ -33008,7 +33008,7 @@ __metadata: optional: true bin: lefthook: bin/index.js - checksum: 10c0/ff28ac4989f7dd7ab722543e6af77262ffd6edb64b9ac53cbd467220e11e3e78626b016bb1f645b5fdb181ff5311aac49719dc3d0100616a26ee6db0fe2cc81f + checksum: 10c0/cc2afaca7732a12957efd678ef295cba3d099cfc4a32800b15862dc1094e0b4ad597fb9886f4590075c3da71a3129f0bccb386eead9914ac56732ef20b6fd9ea languageName: node linkType: hard From ba7904899f4e9d758ae26d2d796ebd1f68d28103 Mon Sep 17 00:00:00 2001 From: "hash-worker[bot]" <180894564+hash-worker[bot]@users.noreply.github.com> Date: Wed, 18 Dec 2024 17:08:33 +0000 Subject: [PATCH 045/159] Update `opentelemetry` npm packages (#5953) Co-authored-by: hash-worker[bot] <180894564+hash-worker[bot]@users.noreply.github.com> Co-authored-by: vilkinsons <6226576+vilkinsons@users.noreply.github.com> --- apps/hash-api/package.json | 18 +- package.json | 12 +- tests/hash-backend-load/package.json | 8 +- yarn.lock | 471 ++++++++++++++------------- 4 files changed, 263 insertions(+), 246 deletions(-) diff --git a/apps/hash-api/package.json b/apps/hash-api/package.json index a971af0f070..1a68637f776 100644 --- a/apps/hash-api/package.json +++ b/apps/hash-api/package.json @@ -43,15 +43,15 @@ "@local/status": "0.0.0-private", "@mailchimp/mailchimp_marketing": "3.0.80", "@opentelemetry/api": "1.9.0", - "@opentelemetry/core": "1.29.0", - "@opentelemetry/exporter-trace-otlp-grpc": "0.56.0", - "@opentelemetry/instrumentation": "0.56.0", - "@opentelemetry/instrumentation-express": "0.46.0", - "@opentelemetry/instrumentation-graphql": "0.46.0", - "@opentelemetry/instrumentation-http": "0.56.0", - "@opentelemetry/resources": "1.29.0", - "@opentelemetry/sdk-trace-base": "1.29.0", - "@opentelemetry/sdk-trace-node": "1.29.0", + "@opentelemetry/core": "1.30.0", + "@opentelemetry/exporter-trace-otlp-grpc": "0.57.0", + "@opentelemetry/instrumentation": "0.57.0", + "@opentelemetry/instrumentation-express": "0.47.0", + "@opentelemetry/instrumentation-graphql": "0.47.0", + "@opentelemetry/instrumentation-http": "0.57.0", + "@opentelemetry/resources": "1.30.0", + "@opentelemetry/sdk-trace-base": "1.30.0", + "@opentelemetry/sdk-trace-node": "1.30.0", "@ory/client": "1.1.41", "@ory/hydra-client": "2.2.1", "@ory/kratos-client": "1.0.0", diff --git a/package.json b/package.json index 6a2a4c885e5..67d7e8a6894 100644 --- a/package.json +++ b/package.json @@ -78,12 +78,12 @@ "@changesets/get-dependents-graph@npm:^1.3.5": "patch:@changesets/get-dependents-graph@npm%3A1.3.6#~/.yarn/patches/@changesets-get-dependents-graph-npm-1.3.6-ddd5f64f78.patch", "@changesets/get-dependents-graph@npm:^1.3.6": "patch:@changesets/get-dependents-graph@npm%3A1.3.6#~/.yarn/patches/@changesets-get-dependents-graph-npm-1.3.6-ddd5f64f78.patch", "@changesets/git@npm:^2.0.0": "patch:@changesets/git@npm%3A2.0.0#~/.yarn/patches/@changesets-git-npm-2.0.0-4220e871d3.patch", - "@opentelemetry/exporter-metrics-otlp-grpc": "0.56.0", - "@opentelemetry/exporter-metrics-otlp-http": "0.56.0", - "@opentelemetry/exporter-metrics-otlp-proto": "0.56.0", - "@opentelemetry/exporter-trace-otlp-grpc": "0.56.0", - "@opentelemetry/exporter-trace-otlp-http": "0.56.0", - "@opentelemetry/exporter-trace-otlp-proto": "0.56.0", + "@opentelemetry/exporter-metrics-otlp-grpc": "0.57.0", + "@opentelemetry/exporter-metrics-otlp-http": "0.57.0", + "@opentelemetry/exporter-metrics-otlp-proto": "0.57.0", + "@opentelemetry/exporter-trace-otlp-grpc": "0.57.0", + "@opentelemetry/exporter-trace-otlp-http": "0.57.0", + "@opentelemetry/exporter-trace-otlp-proto": "0.57.0", "@tldraw/editor@npm:2.0.0-alpha.12": "patch:@tldraw/editor@npm%3A2.0.0-alpha.12#~/.yarn/patches/@tldraw-editor-npm-2.0.0-alpha.12-ba59bf001c.patch", "@tldraw/tlschema@npm:2.0.0-alpha.12": "patch:@tldraw/tlschema@npm%3A2.0.0-alpha.12#~/.yarn/patches/@tldraw-tlschema-npm-2.0.0-alpha.12-13bf88407b.patch", "@types/express": "4.17.21", diff --git a/tests/hash-backend-load/package.json b/tests/hash-backend-load/package.json index 796545c144c..89489a4b2f0 100644 --- a/tests/hash-backend-load/package.json +++ b/tests/hash-backend-load/package.json @@ -37,10 +37,10 @@ "@local/hash-isomorphic-utils": "0.0.0-private", "@local/hash-subgraph": "0.0.0-private", "@opentelemetry/api": "1.9.0", - "@opentelemetry/exporter-trace-otlp-grpc": "0.56.0", - "@opentelemetry/resources": "1.29.0", - "@opentelemetry/sdk-node": "0.56.0", - "@opentelemetry/sdk-trace-node": "1.29.0", + "@opentelemetry/exporter-trace-otlp-grpc": "0.57.0", + "@opentelemetry/resources": "1.30.0", + "@opentelemetry/sdk-node": "0.57.0", + "@opentelemetry/sdk-trace-node": "1.30.0", "@opentelemetry/semantic-conventions": "1.28.0", "@ory/client": "1.1.41", "artillery": "2.0.20", diff --git a/yarn.lock b/yarn.lock index f7c6e0ba14b..65b100ba6d3 100644 --- a/yarn.lock +++ b/yarn.lock @@ -387,15 +387,15 @@ __metadata: "@local/tsconfig": "npm:0.0.0-private" "@mailchimp/mailchimp_marketing": "npm:3.0.80" "@opentelemetry/api": "npm:1.9.0" - "@opentelemetry/core": "npm:1.29.0" - "@opentelemetry/exporter-trace-otlp-grpc": "npm:0.56.0" - "@opentelemetry/instrumentation": "npm:0.56.0" - "@opentelemetry/instrumentation-express": "npm:0.46.0" - "@opentelemetry/instrumentation-graphql": "npm:0.46.0" - "@opentelemetry/instrumentation-http": "npm:0.56.0" - "@opentelemetry/resources": "npm:1.29.0" - "@opentelemetry/sdk-trace-base": "npm:1.29.0" - "@opentelemetry/sdk-trace-node": "npm:1.29.0" + "@opentelemetry/core": "npm:1.30.0" + "@opentelemetry/exporter-trace-otlp-grpc": "npm:0.57.0" + "@opentelemetry/instrumentation": "npm:0.57.0" + "@opentelemetry/instrumentation-express": "npm:0.47.0" + "@opentelemetry/instrumentation-graphql": "npm:0.47.0" + "@opentelemetry/instrumentation-http": "npm:0.57.0" + "@opentelemetry/resources": "npm:1.30.0" + "@opentelemetry/sdk-trace-base": "npm:1.30.0" + "@opentelemetry/sdk-trace-node": "npm:1.30.0" "@ory/client": "npm:1.1.41" "@ory/hydra-client": "npm:2.2.1" "@ory/kratos-client": "npm:1.0.0" @@ -10383,12 +10383,12 @@ __metadata: languageName: node linkType: hard -"@opentelemetry/api-logs@npm:0.56.0": - version: 0.56.0 - resolution: "@opentelemetry/api-logs@npm:0.56.0" +"@opentelemetry/api-logs@npm:0.57.0": + version: 0.57.0 + resolution: "@opentelemetry/api-logs@npm:0.57.0" dependencies: "@opentelemetry/api": "npm:^1.3.0" - checksum: 10c0/af78b5534fd8f93edc23811349c88acf9e7cc2c7d94f58a2b58f70016f97aaa80878096c46283fdb53fb7375df83f1a048ac8d5f52b3dc1c98a2184c3a5d50ff + checksum: 10c0/4aa333a1cd942d0905b4ceae369fabfd9785fc6879f38a9835ab09dd9c03f72eac06250d55c96f7ce83c088a8e8bcfc200f38b5e3313a0e9096add44b68bc92b languageName: node linkType: hard @@ -10399,226 +10399,239 @@ __metadata: languageName: node linkType: hard -"@opentelemetry/context-async-hooks@npm:1.29.0, @opentelemetry/context-async-hooks@npm:^1.17.1": - version: 1.29.0 - resolution: "@opentelemetry/context-async-hooks@npm:1.29.0" +"@opentelemetry/context-async-hooks@npm:1.30.0, @opentelemetry/context-async-hooks@npm:^1.17.1": + version: 1.30.0 + resolution: "@opentelemetry/context-async-hooks@npm:1.30.0" peerDependencies: "@opentelemetry/api": ">=1.0.0 <1.10.0" - checksum: 10c0/f7b5c6b4cad60021a0f7815016fda1b4b8d364348ecfa7e04fe07dfe9af90caaf4065fa5f9169a65f28b71aaf961672eed3849c42cd6484a9051dec0e5c9de5c + checksum: 10c0/46fef8f3af37227c16cf4e3d9264bfc7cfbe7357cb4266fa10ef32aa3256da6782110bea997d7a6b6815afb540da0a937fb5ecbaaed248c0234f8872bf25e8df languageName: node linkType: hard -"@opentelemetry/core@npm:1.29.0, @opentelemetry/core@npm:^1.8.0": - version: 1.29.0 - resolution: "@opentelemetry/core@npm:1.29.0" +"@opentelemetry/core@npm:1.30.0, @opentelemetry/core@npm:^1.8.0": + version: 1.30.0 + resolution: "@opentelemetry/core@npm:1.30.0" dependencies: "@opentelemetry/semantic-conventions": "npm:1.28.0" peerDependencies: "@opentelemetry/api": ">=1.0.0 <1.10.0" - checksum: 10c0/393fa276262ecc0e7bd7db5f507a2118df0725afab0cea1cb071b8d0ec879c08d9d163a83bb13f77a6bd0ad0cb66094856eb19caf225da32d3b1767156105d26 + checksum: 10c0/52d17b5ddb06ab4241b977ff89b81f69f140edb5c2a78b2188d95fa7bdfdd1aa2dcafb1e2830ab77d557876682ab8f08727ba8f165ea3c39fbb6bf3b86ef33c8 languageName: node linkType: hard -"@opentelemetry/exporter-logs-otlp-grpc@npm:0.56.0": - version: 0.56.0 - resolution: "@opentelemetry/exporter-logs-otlp-grpc@npm:0.56.0" +"@opentelemetry/exporter-logs-otlp-grpc@npm:0.57.0": + version: 0.57.0 + resolution: "@opentelemetry/exporter-logs-otlp-grpc@npm:0.57.0" dependencies: "@grpc/grpc-js": "npm:^1.7.1" - "@opentelemetry/core": "npm:1.29.0" - "@opentelemetry/otlp-grpc-exporter-base": "npm:0.56.0" - "@opentelemetry/otlp-transformer": "npm:0.56.0" - "@opentelemetry/sdk-logs": "npm:0.56.0" + "@opentelemetry/core": "npm:1.30.0" + "@opentelemetry/otlp-grpc-exporter-base": "npm:0.57.0" + "@opentelemetry/otlp-transformer": "npm:0.57.0" + "@opentelemetry/sdk-logs": "npm:0.57.0" peerDependencies: "@opentelemetry/api": ^1.3.0 - checksum: 10c0/464bc15c6f1e237d29719ce884cbbc5f8708b4c274bc9e1998dfb4b0920aa67f6152fa19c31b510c14a5e4d9f226fc36bd7f324957b9e61c40cf39681c5ce796 + checksum: 10c0/8ffd5e931afe5d370a0948e0523a812eadf65f577c26502890418eb2fd7ca28a1989fc8df01749c7f4a0bce6c760381c4e0ee17c23ddecfd38432101ce75ce13 languageName: node linkType: hard -"@opentelemetry/exporter-logs-otlp-http@npm:0.56.0": - version: 0.56.0 - resolution: "@opentelemetry/exporter-logs-otlp-http@npm:0.56.0" +"@opentelemetry/exporter-logs-otlp-http@npm:0.57.0": + version: 0.57.0 + resolution: "@opentelemetry/exporter-logs-otlp-http@npm:0.57.0" dependencies: - "@opentelemetry/api-logs": "npm:0.56.0" - "@opentelemetry/core": "npm:1.29.0" - "@opentelemetry/otlp-exporter-base": "npm:0.56.0" - "@opentelemetry/otlp-transformer": "npm:0.56.0" - "@opentelemetry/sdk-logs": "npm:0.56.0" + "@opentelemetry/api-logs": "npm:0.57.0" + "@opentelemetry/core": "npm:1.30.0" + "@opentelemetry/otlp-exporter-base": "npm:0.57.0" + "@opentelemetry/otlp-transformer": "npm:0.57.0" + "@opentelemetry/sdk-logs": "npm:0.57.0" peerDependencies: "@opentelemetry/api": ^1.3.0 - checksum: 10c0/cfb7b90b6534f54632949139935a43d374e49ca70e05a84fc5fa157b5f5ced5357fbe8908221b56cb5e477a34fc57457774531b70023bb4002168bbff9dbb1ab + checksum: 10c0/f2edde4efaa79043e4cc21dfe79e1d646325eaf86cc120becf94eea0d3df8cb3926d339ae6c46ae32878024a262b51f1172f5dbc6a4feebf0f2d3927d51b2b61 languageName: node linkType: hard -"@opentelemetry/exporter-logs-otlp-proto@npm:0.56.0": - version: 0.56.0 - resolution: "@opentelemetry/exporter-logs-otlp-proto@npm:0.56.0" +"@opentelemetry/exporter-logs-otlp-proto@npm:0.57.0": + version: 0.57.0 + resolution: "@opentelemetry/exporter-logs-otlp-proto@npm:0.57.0" dependencies: - "@opentelemetry/api-logs": "npm:0.56.0" - "@opentelemetry/core": "npm:1.29.0" - "@opentelemetry/otlp-exporter-base": "npm:0.56.0" - "@opentelemetry/otlp-transformer": "npm:0.56.0" - "@opentelemetry/resources": "npm:1.29.0" - "@opentelemetry/sdk-logs": "npm:0.56.0" - "@opentelemetry/sdk-trace-base": "npm:1.29.0" + "@opentelemetry/api-logs": "npm:0.57.0" + "@opentelemetry/core": "npm:1.30.0" + "@opentelemetry/otlp-exporter-base": "npm:0.57.0" + "@opentelemetry/otlp-transformer": "npm:0.57.0" + "@opentelemetry/resources": "npm:1.30.0" + "@opentelemetry/sdk-logs": "npm:0.57.0" + "@opentelemetry/sdk-trace-base": "npm:1.30.0" peerDependencies: "@opentelemetry/api": ^1.3.0 - checksum: 10c0/4f1f18318f12186bebc7aa4c896c8f4286c772a7f6035d6f905296c9ccfdd5bb1379c6b6492d7d29e675e4f05090de3d1a3b9c93359909c4c5a76e1254972af5 + checksum: 10c0/eae148057c9c79dc6317b926712cb8502ed813ff79a36be62ca53368876c913f9bf87449cde5eded25d4482e2e5427e3e63288fde82422f2fee019860f2f7adc languageName: node linkType: hard -"@opentelemetry/exporter-metrics-otlp-grpc@npm:0.56.0": - version: 0.56.0 - resolution: "@opentelemetry/exporter-metrics-otlp-grpc@npm:0.56.0" +"@opentelemetry/exporter-metrics-otlp-grpc@npm:0.57.0": + version: 0.57.0 + resolution: "@opentelemetry/exporter-metrics-otlp-grpc@npm:0.57.0" dependencies: "@grpc/grpc-js": "npm:^1.7.1" - "@opentelemetry/core": "npm:1.29.0" - "@opentelemetry/exporter-metrics-otlp-http": "npm:0.56.0" - "@opentelemetry/otlp-exporter-base": "npm:0.56.0" - "@opentelemetry/otlp-grpc-exporter-base": "npm:0.56.0" - "@opentelemetry/otlp-transformer": "npm:0.56.0" - "@opentelemetry/resources": "npm:1.29.0" - "@opentelemetry/sdk-metrics": "npm:1.29.0" + "@opentelemetry/core": "npm:1.30.0" + "@opentelemetry/exporter-metrics-otlp-http": "npm:0.57.0" + "@opentelemetry/otlp-exporter-base": "npm:0.57.0" + "@opentelemetry/otlp-grpc-exporter-base": "npm:0.57.0" + "@opentelemetry/otlp-transformer": "npm:0.57.0" + "@opentelemetry/resources": "npm:1.30.0" + "@opentelemetry/sdk-metrics": "npm:1.30.0" + peerDependencies: + "@opentelemetry/api": ^1.3.0 + checksum: 10c0/efd821580cb3dc3253cea4f1ec00ddefdff72270764eae4c9cfa15560b19e78bf06cf3994f2c871e2dde9416d38e36086e903f436bf62cca125319bd17bd224b + languageName: node + linkType: hard + +"@opentelemetry/exporter-metrics-otlp-http@npm:0.57.0": + version: 0.57.0 + resolution: "@opentelemetry/exporter-metrics-otlp-http@npm:0.57.0" + dependencies: + "@opentelemetry/core": "npm:1.30.0" + "@opentelemetry/otlp-exporter-base": "npm:0.57.0" + "@opentelemetry/otlp-transformer": "npm:0.57.0" + "@opentelemetry/resources": "npm:1.30.0" + "@opentelemetry/sdk-metrics": "npm:1.30.0" peerDependencies: "@opentelemetry/api": ^1.3.0 - checksum: 10c0/220e50022dc9ade1135493cce83515b331ee7ad421f80d2c0f91743fada52cc5428d3323cdfc4f360b7aa65421482d3b41141f63646faa0a0177731d4b2c2dff + checksum: 10c0/91d22cb1e60ae28d4f7121df1c29e31ac904d5d77d7d09818020f3a02dc1a3066d3e45a3b1705c03b32c360ac8b8724bce2205ac7d7e8c4c919fdd448c400de3 languageName: node linkType: hard -"@opentelemetry/exporter-metrics-otlp-http@npm:0.56.0": - version: 0.56.0 - resolution: "@opentelemetry/exporter-metrics-otlp-http@npm:0.56.0" +"@opentelemetry/exporter-metrics-otlp-proto@npm:0.57.0": + version: 0.57.0 + resolution: "@opentelemetry/exporter-metrics-otlp-proto@npm:0.57.0" dependencies: - "@opentelemetry/core": "npm:1.29.0" - "@opentelemetry/otlp-exporter-base": "npm:0.56.0" - "@opentelemetry/otlp-transformer": "npm:0.56.0" - "@opentelemetry/resources": "npm:1.29.0" - "@opentelemetry/sdk-metrics": "npm:1.29.0" + "@opentelemetry/core": "npm:1.30.0" + "@opentelemetry/exporter-metrics-otlp-http": "npm:0.57.0" + "@opentelemetry/otlp-exporter-base": "npm:0.57.0" + "@opentelemetry/otlp-transformer": "npm:0.57.0" + "@opentelemetry/resources": "npm:1.30.0" + "@opentelemetry/sdk-metrics": "npm:1.30.0" peerDependencies: "@opentelemetry/api": ^1.3.0 - checksum: 10c0/a93e79c5e7e4279c774353fa611a42400600540acda93538d342d98aad786c8ed210d92acb644f467f60737091ffd7c05941d9ed4b633cfb4b19582cdcb900a8 + checksum: 10c0/c9f2b3eeea31ba55c9e642676db00faf47442f80c6cad7656cd14f3fb817052e47f9ca4415cc37a313d9b50bcf4e576520798a8535eb7b2f71a2d69e6fb5262e languageName: node linkType: hard -"@opentelemetry/exporter-metrics-otlp-proto@npm:0.56.0": - version: 0.56.0 - resolution: "@opentelemetry/exporter-metrics-otlp-proto@npm:0.56.0" +"@opentelemetry/exporter-prometheus@npm:0.57.0": + version: 0.57.0 + resolution: "@opentelemetry/exporter-prometheus@npm:0.57.0" dependencies: - "@opentelemetry/core": "npm:1.29.0" - "@opentelemetry/exporter-metrics-otlp-http": "npm:0.56.0" - "@opentelemetry/otlp-exporter-base": "npm:0.56.0" - "@opentelemetry/otlp-transformer": "npm:0.56.0" - "@opentelemetry/resources": "npm:1.29.0" - "@opentelemetry/sdk-metrics": "npm:1.29.0" + "@opentelemetry/core": "npm:1.30.0" + "@opentelemetry/resources": "npm:1.30.0" + "@opentelemetry/sdk-metrics": "npm:1.30.0" peerDependencies: "@opentelemetry/api": ^1.3.0 - checksum: 10c0/c873df00daf48733aa5f2d6cba30a1edd5866cf08e4bfacea64b4f1d75633087cb5082729c42b73c6f40d38180f558b4309b4b81004b6d5137e487f51540523d + checksum: 10c0/25c4d86993d77d0f829195734ac49629fd54fcde7926b12a4a0035760d96deca51d97f298f41a3c83be137d5461bd306de78e83f757c2bc770650a8314f64a7c languageName: node linkType: hard -"@opentelemetry/exporter-trace-otlp-grpc@npm:0.56.0": - version: 0.56.0 - resolution: "@opentelemetry/exporter-trace-otlp-grpc@npm:0.56.0" +"@opentelemetry/exporter-trace-otlp-grpc@npm:0.57.0": + version: 0.57.0 + resolution: "@opentelemetry/exporter-trace-otlp-grpc@npm:0.57.0" dependencies: "@grpc/grpc-js": "npm:^1.7.1" - "@opentelemetry/core": "npm:1.29.0" - "@opentelemetry/otlp-grpc-exporter-base": "npm:0.56.0" - "@opentelemetry/otlp-transformer": "npm:0.56.0" - "@opentelemetry/resources": "npm:1.29.0" - "@opentelemetry/sdk-trace-base": "npm:1.29.0" + "@opentelemetry/core": "npm:1.30.0" + "@opentelemetry/otlp-grpc-exporter-base": "npm:0.57.0" + "@opentelemetry/otlp-transformer": "npm:0.57.0" + "@opentelemetry/resources": "npm:1.30.0" + "@opentelemetry/sdk-trace-base": "npm:1.30.0" peerDependencies: "@opentelemetry/api": ^1.3.0 - checksum: 10c0/4a9a1a454bec714dbe14dfe2a248d649e19882200c88de7c53404ff063aff11356ec0fefd099b439f27de71c4c14db532609a7f9ee3e55a285e0d451dcaf6497 + checksum: 10c0/1529c9620bdcdebecb50d57edaac7c2741486c6cebeb16e8f293b1066396ceb370ceedb3e47bd4953876720e29dfd430bd1653bdd771448beaa54cbd7751ff3d languageName: node linkType: hard -"@opentelemetry/exporter-trace-otlp-http@npm:0.56.0": - version: 0.56.0 - resolution: "@opentelemetry/exporter-trace-otlp-http@npm:0.56.0" +"@opentelemetry/exporter-trace-otlp-http@npm:0.57.0": + version: 0.57.0 + resolution: "@opentelemetry/exporter-trace-otlp-http@npm:0.57.0" dependencies: - "@opentelemetry/core": "npm:1.29.0" - "@opentelemetry/otlp-exporter-base": "npm:0.56.0" - "@opentelemetry/otlp-transformer": "npm:0.56.0" - "@opentelemetry/resources": "npm:1.29.0" - "@opentelemetry/sdk-trace-base": "npm:1.29.0" + "@opentelemetry/core": "npm:1.30.0" + "@opentelemetry/otlp-exporter-base": "npm:0.57.0" + "@opentelemetry/otlp-transformer": "npm:0.57.0" + "@opentelemetry/resources": "npm:1.30.0" + "@opentelemetry/sdk-trace-base": "npm:1.30.0" peerDependencies: "@opentelemetry/api": ^1.3.0 - checksum: 10c0/2e606f25312d435e48a3e221cb26ac791f789ba68fa441dae83c0f8dd4bda22964a5cf75d39b548ae482a641f552332948010f782dfc6fe1641157a8b4ef02b0 + checksum: 10c0/426f21b8a82bbdfbbc7540d7cb88cfa46553d124d529e44a3612693a2abc6c42be33740f50ed5e1888783849e9f87d38c014a6ee1fe880d0dd80f40bf6058d35 languageName: node linkType: hard -"@opentelemetry/exporter-trace-otlp-proto@npm:0.56.0": - version: 0.56.0 - resolution: "@opentelemetry/exporter-trace-otlp-proto@npm:0.56.0" +"@opentelemetry/exporter-trace-otlp-proto@npm:0.57.0": + version: 0.57.0 + resolution: "@opentelemetry/exporter-trace-otlp-proto@npm:0.57.0" dependencies: - "@opentelemetry/core": "npm:1.29.0" - "@opentelemetry/otlp-exporter-base": "npm:0.56.0" - "@opentelemetry/otlp-transformer": "npm:0.56.0" - "@opentelemetry/resources": "npm:1.29.0" - "@opentelemetry/sdk-trace-base": "npm:1.29.0" + "@opentelemetry/core": "npm:1.30.0" + "@opentelemetry/otlp-exporter-base": "npm:0.57.0" + "@opentelemetry/otlp-transformer": "npm:0.57.0" + "@opentelemetry/resources": "npm:1.30.0" + "@opentelemetry/sdk-trace-base": "npm:1.30.0" peerDependencies: "@opentelemetry/api": ^1.3.0 - checksum: 10c0/aeda673934a2958fbed3da7ee0725ae61d97398ff7d9fb6f0b19ee8e520cae01c73918a423136ced6f92dc0159ba805453c3005c89571f0b1c7db7b07d67e190 + checksum: 10c0/679695d75f876becea1ea697e7eee89b8e5d42041b73ee60ec490bc072b5915ae33771e9b984a72a43b1f135a5abea33cc40a37575fd5753959c9858b80e6d82 languageName: node linkType: hard -"@opentelemetry/exporter-zipkin@npm:1.29.0, @opentelemetry/exporter-zipkin@npm:^1.15.2": - version: 1.29.0 - resolution: "@opentelemetry/exporter-zipkin@npm:1.29.0" +"@opentelemetry/exporter-zipkin@npm:1.30.0, @opentelemetry/exporter-zipkin@npm:^1.15.2": + version: 1.30.0 + resolution: "@opentelemetry/exporter-zipkin@npm:1.30.0" dependencies: - "@opentelemetry/core": "npm:1.29.0" - "@opentelemetry/resources": "npm:1.29.0" - "@opentelemetry/sdk-trace-base": "npm:1.29.0" + "@opentelemetry/core": "npm:1.30.0" + "@opentelemetry/resources": "npm:1.30.0" + "@opentelemetry/sdk-trace-base": "npm:1.30.0" "@opentelemetry/semantic-conventions": "npm:1.28.0" peerDependencies: "@opentelemetry/api": ^1.0.0 - checksum: 10c0/13815933699035aba7d90750cebbe02894be36680e945c33e92e2044da9be2315289c786bd98b606cae6bdc818ce4951a0661bd97c99648b6b4637e76a3c63d6 + checksum: 10c0/7c8e914c7f4a9c65f0ba9cbc8810ccd3b0f69e785270b04509f3f985f6f9a9abfd583970ce64fc6103fabb43c02917ac9c794ab666b7408f396da3cd741d3df7 languageName: node linkType: hard -"@opentelemetry/instrumentation-express@npm:0.46.0": - version: 0.46.0 - resolution: "@opentelemetry/instrumentation-express@npm:0.46.0" +"@opentelemetry/instrumentation-express@npm:0.47.0": + version: 0.47.0 + resolution: "@opentelemetry/instrumentation-express@npm:0.47.0" dependencies: "@opentelemetry/core": "npm:^1.8.0" - "@opentelemetry/instrumentation": "npm:^0.56.0" + "@opentelemetry/instrumentation": "npm:^0.57.0" "@opentelemetry/semantic-conventions": "npm:^1.27.0" peerDependencies: "@opentelemetry/api": ^1.3.0 - checksum: 10c0/a43820542a8bc6042e70e229f3658f85fdb2a9f9c207542b232380908065979b5eb6e67a3b7a32e962ac6b70a4a622f1d675d6fc3b88f59a66083ff995141c75 + checksum: 10c0/0383a6563c755f2891d632de5043322fbed5548fd2d000fd4ff8d112ca5e6db725df5e42e7ff2b4251e6719d27fb660865aef9d7c001e48177e58cb9b36d5199 languageName: node linkType: hard -"@opentelemetry/instrumentation-graphql@npm:0.46.0": - version: 0.46.0 - resolution: "@opentelemetry/instrumentation-graphql@npm:0.46.0" +"@opentelemetry/instrumentation-graphql@npm:0.47.0": + version: 0.47.0 + resolution: "@opentelemetry/instrumentation-graphql@npm:0.47.0" dependencies: - "@opentelemetry/instrumentation": "npm:^0.56.0" + "@opentelemetry/instrumentation": "npm:^0.57.0" peerDependencies: "@opentelemetry/api": ^1.3.0 - checksum: 10c0/d5b00b258a883bb0386905a298c8af6bfb3e67a24d53c1c994b396427e82cb075a86a25291477d08fca1a8ebc39d49bf85df3b4dbfc46b88c0fadf15d5de3794 + checksum: 10c0/19c15ed4c00240834b354970d9efc46b91677a31b1ca7e92202b5bae67c19bd5beb45bf529683c0fde5a9085fc72fa45af3305a359830ca6d02d1bd8d6ff772b languageName: node linkType: hard -"@opentelemetry/instrumentation-http@npm:0.56.0": - version: 0.56.0 - resolution: "@opentelemetry/instrumentation-http@npm:0.56.0" +"@opentelemetry/instrumentation-http@npm:0.57.0": + version: 0.57.0 + resolution: "@opentelemetry/instrumentation-http@npm:0.57.0" dependencies: - "@opentelemetry/core": "npm:1.29.0" - "@opentelemetry/instrumentation": "npm:0.56.0" + "@opentelemetry/core": "npm:1.30.0" + "@opentelemetry/instrumentation": "npm:0.57.0" "@opentelemetry/semantic-conventions": "npm:1.28.0" forwarded-parse: "npm:2.1.2" semver: "npm:^7.5.2" peerDependencies: "@opentelemetry/api": ^1.3.0 - checksum: 10c0/b225252476ad049f888b45e03c4b2ce3ccb68e0b226049090eefa4e20b3859abfb84daede4562f75d2c3820a1351400ee996cf89e2665a91209e920d711f2e49 + checksum: 10c0/74d8bc1f3ad657af668becee2805ed7bd268baee44baec829d9b1be7e513f153f318efe9e0ba8bb081edcb10411e4e5d9556a59b98682a1537f57fc9ec56e710 languageName: node linkType: hard -"@opentelemetry/instrumentation@npm:0.56.0, @opentelemetry/instrumentation@npm:^0.56.0": - version: 0.56.0 - resolution: "@opentelemetry/instrumentation@npm:0.56.0" +"@opentelemetry/instrumentation@npm:0.57.0, @opentelemetry/instrumentation@npm:^0.57.0": + version: 0.57.0 + resolution: "@opentelemetry/instrumentation@npm:0.57.0" dependencies: - "@opentelemetry/api-logs": "npm:0.56.0" + "@opentelemetry/api-logs": "npm:0.57.0" "@types/shimmer": "npm:^1.2.0" import-in-the-middle: "npm:^1.8.1" require-in-the-middle: "npm:^7.1.1" @@ -10626,164 +10639,168 @@ __metadata: shimmer: "npm:^1.2.1" peerDependencies: "@opentelemetry/api": ^1.3.0 - checksum: 10c0/31c79f2cfe832c42dd7892b248d474dc6fac134f3ff58faea746abf1b25a5127c4a8608296792bf8ed9c838a1eb0384bf2f51a5123f6569033e346733476e7c9 + checksum: 10c0/8bceabc6c47376760d46275f0adba711efa4015f46c9d502dc9b2c6fea10bcf8dab196e38080ce41829685075bcfad71de713ef71ddbfd542a92bf46f1f78dcd languageName: node linkType: hard -"@opentelemetry/otlp-exporter-base@npm:0.56.0": - version: 0.56.0 - resolution: "@opentelemetry/otlp-exporter-base@npm:0.56.0" +"@opentelemetry/otlp-exporter-base@npm:0.57.0": + version: 0.57.0 + resolution: "@opentelemetry/otlp-exporter-base@npm:0.57.0" dependencies: - "@opentelemetry/core": "npm:1.29.0" - "@opentelemetry/otlp-transformer": "npm:0.56.0" + "@opentelemetry/core": "npm:1.30.0" + "@opentelemetry/otlp-transformer": "npm:0.57.0" peerDependencies: "@opentelemetry/api": ^1.3.0 - checksum: 10c0/1c7062bf9edf2a012826341a41fe7bd03b03835a3dc5be5a43a85f5d5ad5d474a3f9241e12906cf9454df6e10f8039d97b21645afdc5f1fb3f55b371a1ed9bd6 + checksum: 10c0/b61f5d51975b25bc8ca89942eba934fed00e8125b62955d9421cb90e20549f65386e5ac93ca88ffeacd5005be66a2f263fbbe9ae5288e8b250dd1e286983b2b3 languageName: node linkType: hard -"@opentelemetry/otlp-grpc-exporter-base@npm:0.56.0": - version: 0.56.0 - resolution: "@opentelemetry/otlp-grpc-exporter-base@npm:0.56.0" +"@opentelemetry/otlp-grpc-exporter-base@npm:0.57.0": + version: 0.57.0 + resolution: "@opentelemetry/otlp-grpc-exporter-base@npm:0.57.0" dependencies: "@grpc/grpc-js": "npm:^1.7.1" - "@opentelemetry/core": "npm:1.29.0" - "@opentelemetry/otlp-exporter-base": "npm:0.56.0" - "@opentelemetry/otlp-transformer": "npm:0.56.0" + "@opentelemetry/core": "npm:1.30.0" + "@opentelemetry/otlp-exporter-base": "npm:0.57.0" + "@opentelemetry/otlp-transformer": "npm:0.57.0" peerDependencies: "@opentelemetry/api": ^1.3.0 - checksum: 10c0/b00ef6521ce4dfb080e10e4d2826626f5adecbe2ab18c21be46635f8b64b65dc54f2bcb8f3ea85828d9b90e8e5055f404c29f9df8c4947d6177382abe20eb907 + checksum: 10c0/a6f61647d26812034a07a1049b750c1ffe97006525f3e992c5dbbe25012ae5428e1152dea8f970ca054112e2b6f2c9f917f0a95e41aaf9a2b4b1407477176584 languageName: node linkType: hard -"@opentelemetry/otlp-transformer@npm:0.56.0": - version: 0.56.0 - resolution: "@opentelemetry/otlp-transformer@npm:0.56.0" +"@opentelemetry/otlp-transformer@npm:0.57.0": + version: 0.57.0 + resolution: "@opentelemetry/otlp-transformer@npm:0.57.0" dependencies: - "@opentelemetry/api-logs": "npm:0.56.0" - "@opentelemetry/core": "npm:1.29.0" - "@opentelemetry/resources": "npm:1.29.0" - "@opentelemetry/sdk-logs": "npm:0.56.0" - "@opentelemetry/sdk-metrics": "npm:1.29.0" - "@opentelemetry/sdk-trace-base": "npm:1.29.0" + "@opentelemetry/api-logs": "npm:0.57.0" + "@opentelemetry/core": "npm:1.30.0" + "@opentelemetry/resources": "npm:1.30.0" + "@opentelemetry/sdk-logs": "npm:0.57.0" + "@opentelemetry/sdk-metrics": "npm:1.30.0" + "@opentelemetry/sdk-trace-base": "npm:1.30.0" protobufjs: "npm:^7.3.0" peerDependencies: "@opentelemetry/api": ^1.3.0 - checksum: 10c0/898bae14a8f84a2f5a8d3a3b89966a5d3af1102b273dac748e404651ad113876b095faf1528055fce65de99dc33bc764cd650f21019ada0f85926f7606dc377e + checksum: 10c0/02e27b447f66774ea9fb98e643dde7ce5f1b1be1dc302690006af351cbfaf9e486f4e4ecc0521813c1d0334ac55ecdfdd499df06580a81033174802a75fa19e0 languageName: node linkType: hard -"@opentelemetry/propagator-b3@npm:1.29.0": - version: 1.29.0 - resolution: "@opentelemetry/propagator-b3@npm:1.29.0" +"@opentelemetry/propagator-b3@npm:1.30.0": + version: 1.30.0 + resolution: "@opentelemetry/propagator-b3@npm:1.30.0" dependencies: - "@opentelemetry/core": "npm:1.29.0" + "@opentelemetry/core": "npm:1.30.0" peerDependencies: "@opentelemetry/api": ">=1.0.0 <1.10.0" - checksum: 10c0/deb04f14906ec72f6eb8e2dffeb836450c35432732776fef40413e56c8738dd6c49c4d084be04fdedc45b3670dc0e94af2808780cf8921305d57c22cc0f24891 + checksum: 10c0/2378d9527247982ad09c08f51b90364913640a72519df3b65fbd694a666f4e13ce035b3a42d3651f5d707e85b3f48b7837e4aa50fbbfe3fcb8f6af47e0af5c34 languageName: node linkType: hard -"@opentelemetry/propagator-jaeger@npm:1.29.0": - version: 1.29.0 - resolution: "@opentelemetry/propagator-jaeger@npm:1.29.0" +"@opentelemetry/propagator-jaeger@npm:1.30.0": + version: 1.30.0 + resolution: "@opentelemetry/propagator-jaeger@npm:1.30.0" dependencies: - "@opentelemetry/core": "npm:1.29.0" + "@opentelemetry/core": "npm:1.30.0" peerDependencies: "@opentelemetry/api": ">=1.0.0 <1.10.0" - checksum: 10c0/9d91968ed88d4946d1b7a03cec774be8569ce9cc8a21f735c4c3f044baa4bb7c5732cfb3caf0c03266258dd9df7abaf329f7d79221827cdcd287b9824f0079df + checksum: 10c0/a2cd68d3ca08ba84b62427d363f7054a8d51922805376987d67bbf7d61513cde9665a4f5df262f46ed2affae0557d3bc13b0ec3aa68f84088f092f007849f781 languageName: node linkType: hard -"@opentelemetry/resources@npm:1.29.0, @opentelemetry/resources@npm:^1.15.2": - version: 1.29.0 - resolution: "@opentelemetry/resources@npm:1.29.0" +"@opentelemetry/resources@npm:1.30.0, @opentelemetry/resources@npm:^1.15.2": + version: 1.30.0 + resolution: "@opentelemetry/resources@npm:1.30.0" dependencies: - "@opentelemetry/core": "npm:1.29.0" + "@opentelemetry/core": "npm:1.30.0" "@opentelemetry/semantic-conventions": "npm:1.28.0" peerDependencies: "@opentelemetry/api": ">=1.0.0 <1.10.0" - checksum: 10c0/10a91597b2ae92eeeeee9645c8147056b930739023bde4f18190317f7e8a05acd9e440b29d04be3580f7af4ffe5ff629d970264278f86574c429685f4804a006 + checksum: 10c0/2b298193de85f8d7d05f9d71e5ea63189668f99248486246a4cfdc8667a5face205d650ef1ee6204a9f9c16d0b0e7704bb89a5d47537279c8e3378231ed35d1d languageName: node linkType: hard -"@opentelemetry/sdk-logs@npm:0.56.0": - version: 0.56.0 - resolution: "@opentelemetry/sdk-logs@npm:0.56.0" +"@opentelemetry/sdk-logs@npm:0.57.0": + version: 0.57.0 + resolution: "@opentelemetry/sdk-logs@npm:0.57.0" dependencies: - "@opentelemetry/api-logs": "npm:0.56.0" - "@opentelemetry/core": "npm:1.29.0" - "@opentelemetry/resources": "npm:1.29.0" + "@opentelemetry/api-logs": "npm:0.57.0" + "@opentelemetry/core": "npm:1.30.0" + "@opentelemetry/resources": "npm:1.30.0" peerDependencies: "@opentelemetry/api": ">=1.4.0 <1.10.0" - checksum: 10c0/abd5584c8d98a71bfefdca4b864f69714d0e638c5ad9fe4819744b938aea362c9602b884da1da24ae394bccbe044246463a208e775b3ac4718eadaff7fac295d + checksum: 10c0/8e7004492693d89a8cb50c885b2993218827a099b13f83f7c03cc49bb9766ff3040b576126b14c8053b6327464946f87d302184e7eef361783c62426d2420ce2 languageName: node linkType: hard -"@opentelemetry/sdk-metrics@npm:1.29.0, @opentelemetry/sdk-metrics@npm:^1.15.2": - version: 1.29.0 - resolution: "@opentelemetry/sdk-metrics@npm:1.29.0" +"@opentelemetry/sdk-metrics@npm:1.30.0, @opentelemetry/sdk-metrics@npm:^1.15.2": + version: 1.30.0 + resolution: "@opentelemetry/sdk-metrics@npm:1.30.0" dependencies: - "@opentelemetry/core": "npm:1.29.0" - "@opentelemetry/resources": "npm:1.29.0" + "@opentelemetry/core": "npm:1.30.0" + "@opentelemetry/resources": "npm:1.30.0" peerDependencies: "@opentelemetry/api": ">=1.3.0 <1.10.0" - checksum: 10c0/4fca3b43fc9e9d139e87e18abf91069ba09c110bd4aa093e97ae02cd9af2cc82560f38dd4e3a6c76b054e1f8cbe5801faada2d24d7673a0ab15bf69923d6202c - languageName: node - linkType: hard - -"@opentelemetry/sdk-node@npm:0.56.0": - version: 0.56.0 - resolution: "@opentelemetry/sdk-node@npm:0.56.0" - dependencies: - "@opentelemetry/api-logs": "npm:0.56.0" - "@opentelemetry/core": "npm:1.29.0" - "@opentelemetry/exporter-logs-otlp-grpc": "npm:0.56.0" - "@opentelemetry/exporter-logs-otlp-http": "npm:0.56.0" - "@opentelemetry/exporter-logs-otlp-proto": "npm:0.56.0" - "@opentelemetry/exporter-trace-otlp-grpc": "npm:0.56.0" - "@opentelemetry/exporter-trace-otlp-http": "npm:0.56.0" - "@opentelemetry/exporter-trace-otlp-proto": "npm:0.56.0" - "@opentelemetry/exporter-zipkin": "npm:1.29.0" - "@opentelemetry/instrumentation": "npm:0.56.0" - "@opentelemetry/resources": "npm:1.29.0" - "@opentelemetry/sdk-logs": "npm:0.56.0" - "@opentelemetry/sdk-metrics": "npm:1.29.0" - "@opentelemetry/sdk-trace-base": "npm:1.29.0" - "@opentelemetry/sdk-trace-node": "npm:1.29.0" + checksum: 10c0/447a0d11d1b702533ffdfdf643903559ec2e1162d82009a83d6ff0ff36e990c23a5b3a1ab27e38720a56b818e83c61e1dd0257357decf896253407aa8124e1a7 + languageName: node + linkType: hard + +"@opentelemetry/sdk-node@npm:0.57.0": + version: 0.57.0 + resolution: "@opentelemetry/sdk-node@npm:0.57.0" + dependencies: + "@opentelemetry/api-logs": "npm:0.57.0" + "@opentelemetry/core": "npm:1.30.0" + "@opentelemetry/exporter-logs-otlp-grpc": "npm:0.57.0" + "@opentelemetry/exporter-logs-otlp-http": "npm:0.57.0" + "@opentelemetry/exporter-logs-otlp-proto": "npm:0.57.0" + "@opentelemetry/exporter-metrics-otlp-grpc": "npm:0.57.0" + "@opentelemetry/exporter-metrics-otlp-http": "npm:0.57.0" + "@opentelemetry/exporter-metrics-otlp-proto": "npm:0.57.0" + "@opentelemetry/exporter-prometheus": "npm:0.57.0" + "@opentelemetry/exporter-trace-otlp-grpc": "npm:0.57.0" + "@opentelemetry/exporter-trace-otlp-http": "npm:0.57.0" + "@opentelemetry/exporter-trace-otlp-proto": "npm:0.57.0" + "@opentelemetry/exporter-zipkin": "npm:1.30.0" + "@opentelemetry/instrumentation": "npm:0.57.0" + "@opentelemetry/resources": "npm:1.30.0" + "@opentelemetry/sdk-logs": "npm:0.57.0" + "@opentelemetry/sdk-metrics": "npm:1.30.0" + "@opentelemetry/sdk-trace-base": "npm:1.30.0" + "@opentelemetry/sdk-trace-node": "npm:1.30.0" "@opentelemetry/semantic-conventions": "npm:1.28.0" peerDependencies: "@opentelemetry/api": ">=1.3.0 <1.10.0" - checksum: 10c0/fd2c468bdbe9d8dab21444335793f3a6778578791a1659f8e81383c53e12bc7fc7e7a7722040679dd55afba1ad7104f3e3b5df99457e9cabb0b721549617feb1 + checksum: 10c0/d0211e88e3a1cea29c22a951b6329f6b1d00f3d86de91ddfdd6d1b5e07e5c02cf5a35c5f56a26c5a39f9bf359e8f2d734ce708b55c372c9d9c8b4265ca7063a2 languageName: node linkType: hard -"@opentelemetry/sdk-trace-base@npm:1.29.0, @opentelemetry/sdk-trace-base@npm:^1.15.2": - version: 1.29.0 - resolution: "@opentelemetry/sdk-trace-base@npm:1.29.0" +"@opentelemetry/sdk-trace-base@npm:1.30.0, @opentelemetry/sdk-trace-base@npm:^1.15.2": + version: 1.30.0 + resolution: "@opentelemetry/sdk-trace-base@npm:1.30.0" dependencies: - "@opentelemetry/core": "npm:1.29.0" - "@opentelemetry/resources": "npm:1.29.0" + "@opentelemetry/core": "npm:1.30.0" + "@opentelemetry/resources": "npm:1.30.0" "@opentelemetry/semantic-conventions": "npm:1.28.0" peerDependencies: "@opentelemetry/api": ">=1.0.0 <1.10.0" - checksum: 10c0/870f29d3d72f4d6cbcaada328b544aa111527d72f0818f89bc5661b0427a37618db939cc65e834c8c73bad744665f9ac6dc0ec48276b113b5d4a0913c2b8fece + checksum: 10c0/3d8dcb0ec4e70405593421ea4df8b9a5e7faceea16cb900f30747eaeaa1f96059d40312ff2171208bb627deab6a6f32024681128cfba45af2671c6cfba528af1 languageName: node linkType: hard -"@opentelemetry/sdk-trace-node@npm:1.29.0": - version: 1.29.0 - resolution: "@opentelemetry/sdk-trace-node@npm:1.29.0" +"@opentelemetry/sdk-trace-node@npm:1.30.0": + version: 1.30.0 + resolution: "@opentelemetry/sdk-trace-node@npm:1.30.0" dependencies: - "@opentelemetry/context-async-hooks": "npm:1.29.0" - "@opentelemetry/core": "npm:1.29.0" - "@opentelemetry/propagator-b3": "npm:1.29.0" - "@opentelemetry/propagator-jaeger": "npm:1.29.0" - "@opentelemetry/sdk-trace-base": "npm:1.29.0" + "@opentelemetry/context-async-hooks": "npm:1.30.0" + "@opentelemetry/core": "npm:1.30.0" + "@opentelemetry/propagator-b3": "npm:1.30.0" + "@opentelemetry/propagator-jaeger": "npm:1.30.0" + "@opentelemetry/sdk-trace-base": "npm:1.30.0" semver: "npm:^7.5.2" peerDependencies: "@opentelemetry/api": ">=1.0.0 <1.10.0" - checksum: 10c0/0201340e451fc3a3969df8c5d405706d6b454c28ddb76bb99fce20b58a53f47fee94bb7134ff1591ddf322a48c7641aeb11e58bebcdf82e933ceb85a54157d46 + checksum: 10c0/284b314c8c5b6da6e7e2b6c6814d6ef7cdfeeb3bce211bc1c38dc1e4b092f811727040265a75b5f6b67c287429cbd23661210b253429370918cb111bef1b57ac languageName: node linkType: hard @@ -16578,10 +16595,10 @@ __metadata: "@local/hash-subgraph": "npm:0.0.0-private" "@local/tsconfig": "npm:0.0.0-private" "@opentelemetry/api": "npm:1.9.0" - "@opentelemetry/exporter-trace-otlp-grpc": "npm:0.56.0" - "@opentelemetry/resources": "npm:1.29.0" - "@opentelemetry/sdk-node": "npm:0.56.0" - "@opentelemetry/sdk-trace-node": "npm:1.29.0" + "@opentelemetry/exporter-trace-otlp-grpc": "npm:0.57.0" + "@opentelemetry/resources": "npm:1.30.0" + "@opentelemetry/sdk-node": "npm:0.57.0" + "@opentelemetry/sdk-trace-node": "npm:1.30.0" "@opentelemetry/semantic-conventions": "npm:1.28.0" "@ory/client": "npm:1.1.41" "@rollup/plugin-commonjs": "npm:28.0.2" From b8f219f3620d0f2575d33ea232ad0b5e2ecf1cac Mon Sep 17 00:00:00 2001 From: "hash-worker[bot]" <180894564+hash-worker[bot]@users.noreply.github.com> Date: Wed, 18 Dec 2024 17:18:12 +0000 Subject: [PATCH 046/159] Update npm package `globals` to v15.14.0 (#5954) Co-authored-by: hash-worker[bot] <180894564+hash-worker[bot]@users.noreply.github.com> Co-authored-by: vilkinsons <6226576+vilkinsons@users.noreply.github.com> --- libs/@local/eslint/package.json | 2 +- yarn.lock | 10 +++++----- 2 files changed, 6 insertions(+), 6 deletions(-) diff --git a/libs/@local/eslint/package.json b/libs/@local/eslint/package.json index 513e5163726..d8d692abfe2 100644 --- a/libs/@local/eslint/package.json +++ b/libs/@local/eslint/package.json @@ -37,7 +37,7 @@ "eslint-plugin-react-hooks": "5.1.0", "eslint-plugin-storybook": "0.11.1", "eslint-unicorn": "55.0.0", - "globals": "15.13.0" + "globals": "15.14.0" }, "devDependencies": { "@local/tsconfig": "0.0.0-private", diff --git a/yarn.lock b/yarn.lock index 65b100ba6d3..adcb9f37195 100644 --- a/yarn.lock +++ b/yarn.lock @@ -9047,7 +9047,7 @@ __metadata: eslint-plugin-react-hooks: "npm:5.1.0" eslint-plugin-storybook: "npm:0.11.1" eslint-unicorn: "npm:55.0.0" - globals: "npm:15.13.0" + globals: "npm:15.14.0" rimraf: "npm:6.0.1" typescript: "npm:5.7.2" languageName: unknown @@ -28911,10 +28911,10 @@ __metadata: languageName: node linkType: hard -"globals@npm:15.13.0, globals@npm:^15.0.0, globals@npm:^15.11.0, globals@npm:^15.7.0": - version: 15.13.0 - resolution: "globals@npm:15.13.0" - checksum: 10c0/640365115ca5f81d91e6a7667f4935021705e61a1a5a76a6ec5c3a5cdf6e53f165af7f9db59b7deb65cf2e1f83d03ac8d6660d0b14c569c831a9b6483eeef585 +"globals@npm:15.14.0, globals@npm:^15.0.0, globals@npm:^15.11.0, globals@npm:^15.7.0": + version: 15.14.0 + resolution: "globals@npm:15.14.0" + checksum: 10c0/039deb8648bd373b7940c15df9f96ab7508fe92b31bbd39cbd1c1a740bd26db12457aa3e5d211553b234f30e9b1db2fee3683012f543a01a6942c9062857facb languageName: node linkType: hard From 40138b2569c5cb34326360d7774ba10bcde8194c Mon Sep 17 00:00:00 2001 From: Bilal Mahmoud Date: Wed, 18 Dec 2024 18:56:23 +0100 Subject: [PATCH 047/159] H-3777: Replace `markdownlint-cli` with `markdownlint-cli2` (#5955) --- .github/renovate.json | 3 +- .gitignore | 1 - .lefthook.yml | 2 +- .markdownlint-cli2.jsonc | 25 ++++++ .markdownlint.json | 19 ----- .markdownlintignore | 167 --------------------------------------- package.json | 6 +- yarn.lock | 116 ++++++++++----------------- 8 files changed, 73 insertions(+), 266 deletions(-) create mode 100644 .markdownlint-cli2.jsonc delete mode 100644 .markdownlint.json delete mode 100644 .markdownlintignore diff --git a/.github/renovate.json b/.github/renovate.json index 8f8b83e75c5..adbd17f69f8 100644 --- a/.github/renovate.json +++ b/.github/renovate.json @@ -75,8 +75,7 @@ "/^vite-/", "/vitest$/", "/lint-staged/", - "/lockfile-lint/", - "/markdownlint-cli/", + "/markdownlint-cli2/", "/^prettier/", "/prettier$/", "/rimraf/", diff --git a/.gitignore b/.gitignore index 40f69a44799..4c9d2ab525d 100644 --- a/.gitignore +++ b/.gitignore @@ -1,7 +1,6 @@ ######################### ## Keep in sync with ## - .prettierignore -## - .markdownlintignore ## - .dockerignore ######################### diff --git a/.lefthook.yml b/.lefthook.yml index 9e648abee37..233c7b116ec 100644 --- a/.lefthook.yml +++ b/.lefthook.yml @@ -9,7 +9,7 @@ pre-commit: markdownlint: tags: frontend style glob: "*.md" - run: yarn run markdownlint --fix {staged_files} || true + run: yarn run markdownlint-cli2 --fix --no-globs {staged_files} || true stage_fixed: true prettier: tags: frontend style diff --git a/.markdownlint-cli2.jsonc b/.markdownlint-cli2.jsonc new file mode 100644 index 00000000000..79cd75b4bb7 --- /dev/null +++ b/.markdownlint-cli2.jsonc @@ -0,0 +1,25 @@ +{ + "$schema": "https://raw.githubusercontent.com/DavidAnson/markdownlint-cli2/v0.16.0/schema/markdownlint-cli2-config-schema.json", + "config": { + "default": true, + "first-line-heading": false, + "line-length": false, + "list-marker-space": { + "ol_multi": 1, + "ol_single": 1, + "ul_multi": 1, + "ul_single": 1, + }, + "no-alt-text": false, + "no-bare-urls": false, + "no-duplicate-heading": { "siblings_only": true }, + "no-emphasis-as-heading": false, + "no-inline-html": false, + "no-trailing-punctuation": false, + "ol-prefix": { "style": "one" }, + "single-title": false, + }, + "gitignore": true, + "globs": ["*.md", "**/*.md"], + "ignores": ["**/LICENSE*.md"], +} diff --git a/.markdownlint.json b/.markdownlint.json deleted file mode 100644 index 0f1107a4ec7..00000000000 --- a/.markdownlint.json +++ /dev/null @@ -1,19 +0,0 @@ -{ - "default": true, - "first-line-heading": false, - "line-length": false, - "list-marker-space": { - "ol_multi": 1, - "ol_single": 1, - "ul_multi": 1, - "ul_single": 1 - }, - "no-alt-text": false, - "no-bare-urls": false, - "no-duplicate-heading": { "siblings_only": true }, - "no-emphasis-as-heading": false, - "no-inline-html": false, - "no-trailing-punctuation": false, - "ol-prefix": { "style": "one" }, - "single-title": false -} diff --git a/.markdownlintignore b/.markdownlintignore deleted file mode 100644 index 2c8fc0beb25..00000000000 --- a/.markdownlintignore +++ /dev/null @@ -1,167 +0,0 @@ -######################################### -## Files uniquely ignored by Markdownlint -######################################### - -# Ignore all files (but still allow sub-folder scanning) -* -!*/ - -# Allow certain file types -!*.md -!*.mdx - -######################## -## Same as in .gitignore -######################## - -# Logs -**/logs -**/*.log -**/npm-debug.log* -**/yarn-debug.log* -**/yarn-error.log* - -# Runtime data -pids -*.pid -*.seed -*.pid.lock - -# Directory for instrumented libs generated by jscoverage/JSCover -**/lib-cov - -# Coverage directory used by tools like istanbul -**/coverage -**/coverage.* -**/.coverage -**/.coverage.* - -# nyc test coverage -.nyc_output - -# Grunt intermediate storage (http://gruntjs.com/creating-plugins#storing-task-files) -.grunt - -# Bower dependency directory (https://bower.io/) -bower_components - -# node-waf configuration -.lock-wscript - -# Tests -**/playwright-report/ -**/test-results/ - -# Compiled binary addons (https://nodejs.org/api/addons.html) -**/build/Release - -# Dependency directories -**/node_modules/ -**/jspm_packages/ - -# TypeScript v1 declaration files -typings/ - -# Optional npm cache directory -**/.npm - -# Optional eslint cache -**/.eslintcache - -# Optional REPL history -.node_repl_history - -# Output of 'npm pack' -*.tgz - -# Yarn -.pnp.* -.yarn/* -!.yarn/patches -!.yarn/plugins -!.yarn/releases -!.yarn/sdks -!.yarn/versions - -# local environment variable files -blocks/**/.env -.env.local -.env.*.local - -# macOS directory file -**/.DS_Store - -# next.js build output -**/.next - -# build files -**/dist -**/build -**/target - -# vscode config -**/.vscode/settings.json - -# intellij IDEs config -**/.idea/ - -# fleet IDEs config -**/.fleet/ - -# Python virtual environment -**/venv -**/.venv - -# Python compiled files and package metadata -**/__pycache__ -*.egg-info -**/*.pyc -**/*.pyo -**/*.pyd -**/.Python -**/pip-log.txt -**/pip-delete-this-directory.txt -**/.mypy_cache -**/.pytest_cache -**/.hypothesis -**/wheels - -# generated files -*.gen.* -*.tsbuildinfo -blocks/**/generated - -# Sentry -.sentryclirc - -# Application data -/var -seed-users.json - -# Block Protocol -.blockprotocolrc - -# Terraform -**/.terraform -*.tfstate -*.tfstate.* -*.secrets.tfvars -*.pem - -# Storybook -**/storybook-static - -# SARIF files -*.sarif - -######################### -## Shared between linters -######################### - -# Keep license files as is -LICENSE.md -LICENSE-*.md - -# Turborepo -.turbo/ -out/ diff --git a/package.json b/package.json index 67d7e8a6894..01405ee0a78 100644 --- a/package.json +++ b/package.json @@ -39,7 +39,7 @@ "fix:constraints": "yarn constraints --fix", "fix:eslint": "turbo --continue fix:eslint --", "fix:taplo": "taplo fmt", - "fix:markdownlint": "markdownlint --dot --fix .", + "fix:markdownlint": "markdownlint-cli2 --fix", "fix:prettier": "prettier --write --ignore-unknown .", "fix:yarn-deduplicate": "yarn dedupe --strategy highest", "lint": "npm-run-all --continue-on-error \"lint:*\"", @@ -47,7 +47,7 @@ "lint:constraints": "yarn constraints", "lint:eslint": "turbo --continue lint:eslint --", "lint:license-in-workspaces": "yarn workspace @local/repo-chores exe scripts/check-license-in-workspaces.ts", - "lint:markdownlint": "markdownlint --dot .", + "lint:markdownlint": "markdownlint-cli2", "lint:prettier": "prettier --check --ignore-unknown .", "lint:taplo": "taplo fmt --check", "lint:tsc": "turbo --continue lint:tsc --", @@ -106,7 +106,7 @@ "@taplo/cli": "0.7.0", "@yarnpkg/types": "^4.0.0", "lefthook": "1.9.3", - "markdownlint-cli": "0.43.0", + "markdownlint-cli2": "0.16.0", "npm-run-all2": "7.0.2", "prettier": "3.4.2", "prettier-plugin-packagejson": "2.5.6", diff --git a/yarn.lock b/yarn.lock index adcb9f37195..0f9b1096c08 100644 --- a/yarn.lock +++ b/yarn.lock @@ -22897,7 +22897,7 @@ __metadata: languageName: node linkType: hard -"commander@npm:^12.0.0, commander@npm:^12.1.0, commander@npm:~12.1.0": +"commander@npm:^12.0.0, commander@npm:^12.1.0": version: 12.1.0 resolution: "commander@npm:12.1.0" checksum: 10c0/6e1996680c083b3b897bfc1cfe1c58dfbcd9842fd43e1aaf8a795fbc237f65efcc860a3ef457b318e73f29a4f4a28f6403c3d653d021d960e4632dd45bde54a9 @@ -28868,7 +28868,7 @@ __metadata: languageName: node linkType: hard -"glob@npm:^11.0.0, glob@npm:~11.0.0": +"glob@npm:^11.0.0": version: 11.0.0 resolution: "glob@npm:11.0.0" dependencies: @@ -28965,6 +28965,20 @@ __metadata: languageName: node linkType: hard +"globby@npm:14.0.2, globby@npm:^14.0.2": + version: 14.0.2 + resolution: "globby@npm:14.0.2" + dependencies: + "@sindresorhus/merge-streams": "npm:^2.1.0" + fast-glob: "npm:^3.3.2" + ignore: "npm:^5.2.4" + path-type: "npm:^5.0.0" + slash: "npm:^5.1.0" + unicorn-magic: "npm:^0.1.0" + checksum: 10c0/3f771cd683b8794db1e7ebc8b6b888d43496d93a82aad4e9d974620f578581210b6c5a6e75ea29573ed16a1345222fab6e9b877a8d1ed56eeb147e09f69c6f78 + languageName: node + linkType: hard + "globby@npm:^12.0.2": version: 12.2.0 resolution: "globby@npm:12.2.0" @@ -28992,20 +29006,6 @@ __metadata: languageName: node linkType: hard -"globby@npm:^14.0.2": - version: 14.0.2 - resolution: "globby@npm:14.0.2" - dependencies: - "@sindresorhus/merge-streams": "npm:^2.1.0" - fast-glob: "npm:^3.3.2" - ignore: "npm:^5.2.4" - path-type: "npm:^5.0.0" - slash: "npm:^5.1.0" - unicorn-magic: "npm:^0.1.0" - checksum: 10c0/3f771cd683b8794db1e7ebc8b6b888d43496d93a82aad4e9d974620f578581210b6c5a6e75ea29573ed16a1345222fab6e9b877a8d1ed56eeb147e09f69c6f78 - languageName: node - linkType: hard - "globby@npm:^6.1.0": version: 6.1.0 resolution: "globby@npm:6.1.0" @@ -29544,7 +29544,7 @@ __metadata: "@taplo/cli": "npm:0.7.0" "@yarnpkg/types": "npm:^4.0.0" lefthook: "npm:1.9.3" - markdownlint-cli: "npm:0.43.0" + markdownlint-cli2: "npm:0.16.0" npm-run-all2: "npm:7.0.2" prettier: "npm:3.4.2" prettier-plugin-packagejson: "npm:2.5.6" @@ -30387,13 +30387,6 @@ __metadata: languageName: node linkType: hard -"ignore@npm:~6.0.2": - version: 6.0.2 - resolution: "ignore@npm:6.0.2" - checksum: 10c0/9a38feac1861906a78ba0f03e8ef3cd6b0526dce2a1a84e1009324b557763afeb9c3ebcc04666b21f7bbf71adda45e76781bb9e2eaa0903d45dcaded634454f5 - languageName: node - linkType: hard - "image-size@npm:1.0.2": version: 1.0.2 resolution: "image-size@npm:1.0.2" @@ -30546,7 +30539,7 @@ __metadata: languageName: node linkType: hard -"ini@npm:^4.1.3, ini@npm:~4.1.0": +"ini@npm:^4.1.3": version: 4.1.3 resolution: "ini@npm:4.1.3" checksum: 10c0/0d27eff094d5f3899dd7c00d0c04ea733ca03a8eb6f9406ce15daac1a81de022cb417d6eaff7e4342451ffa663389c565ffc68d6825eaf686bf003280b945764 @@ -32564,7 +32557,7 @@ __metadata: languageName: node linkType: hard -"jsonc-parser@npm:~3.3.1": +"jsonc-parser@npm:3.3.1": version: 3.3.1 resolution: "jsonc-parser@npm:3.3.1" checksum: 10c0/269c3ae0a0e4f907a914bf334306c384aabb9929bd8c99f909275ebd5c2d3bc70b9bcd119ad794f339dec9f24b6a4ee9cd5a8ab2e6435e730ad4075388fc2ab6 @@ -32652,13 +32645,6 @@ __metadata: languageName: node linkType: hard -"jsonpointer@npm:5.0.1": - version: 5.0.1 - resolution: "jsonpointer@npm:5.0.1" - checksum: 10c0/89929e58b400fcb96928c0504fcf4fc3f919d81e9543ceb055df125538470ee25290bb4984251e172e6ef8fcc55761eb998c118da763a82051ad89d4cb073fe7 - languageName: node - linkType: hard - "jsonschema@npm:1.4.1": version: 1.4.1 resolution: "jsonschema@npm:1.4.1" @@ -34066,23 +34052,28 @@ __metadata: languageName: node linkType: hard -"markdownlint-cli@npm:0.43.0": - version: 0.43.0 - resolution: "markdownlint-cli@npm:0.43.0" +"markdownlint-cli2-formatter-default@npm:0.0.5": + version: 0.0.5 + resolution: "markdownlint-cli2-formatter-default@npm:0.0.5" + peerDependencies: + markdownlint-cli2: ">=0.0.4" + checksum: 10c0/7041a5833846d895054cf273c8e75efc13a03bbc88679cd48ea77240318232e883846037e984358a3ad3825fbb602d83492417ed6e36051bc5b603c4bedb3622 + languageName: node + linkType: hard + +"markdownlint-cli2@npm:0.16.0": + version: 0.16.0 + resolution: "markdownlint-cli2@npm:0.16.0" dependencies: - commander: "npm:~12.1.0" - glob: "npm:~11.0.0" - ignore: "npm:~6.0.2" - js-yaml: "npm:^4.1.0" - jsonc-parser: "npm:~3.3.1" - jsonpointer: "npm:5.0.1" - markdownlint: "npm:~0.36.1" - minimatch: "npm:~10.0.1" - run-con: "npm:~1.3.2" - smol-toml: "npm:~1.3.1" + globby: "npm:14.0.2" + js-yaml: "npm:4.1.0" + jsonc-parser: "npm:3.3.1" + markdownlint: "npm:0.36.1" + markdownlint-cli2-formatter-default: "npm:0.0.5" + micromatch: "npm:4.0.8" bin: - markdownlint: markdownlint.js - checksum: 10c0/55c7fab5f3558a73840228eb92c8ef56873c160a0fcf92d350db7c9ee62fc732c70590a68efed9d93cd99551d559b5330065dc91c0764c1e38d01233c5b9d64a + markdownlint-cli2: markdownlint-cli2.js + checksum: 10c0/485fcddcba6e82bfd276cebb509bfa421d2a97e678a1db13b06af6e66bd3f5d518cde7f66bf138842ad984f00cd4ebe4f637bd6a351911d5d260707bb8f5b316 languageName: node linkType: hard @@ -34093,7 +34084,7 @@ __metadata: languageName: node linkType: hard -"markdownlint@npm:~0.36.1": +"markdownlint@npm:0.36.1": version: 0.36.1 resolution: "markdownlint@npm:0.36.1" dependencies: @@ -35565,7 +35556,7 @@ __metadata: languageName: node linkType: hard -"micromatch@npm:^4.0.0, micromatch@npm:^4.0.2, micromatch@npm:^4.0.4, micromatch@npm:^4.0.5, micromatch@npm:^4.0.8": +"micromatch@npm:4.0.8, micromatch@npm:^4.0.0, micromatch@npm:^4.0.2, micromatch@npm:^4.0.4, micromatch@npm:^4.0.5, micromatch@npm:^4.0.8": version: 4.0.8 resolution: "micromatch@npm:4.0.8" dependencies: @@ -35728,7 +35719,7 @@ __metadata: languageName: node linkType: hard -"minimatch@npm:^10.0.0, minimatch@npm:^10.0.1, minimatch@npm:~10.0.1": +"minimatch@npm:^10.0.0, minimatch@npm:^10.0.1": version: 10.0.1 resolution: "minimatch@npm:10.0.1" dependencies: @@ -42030,20 +42021,6 @@ __metadata: languageName: node linkType: hard -"run-con@npm:~1.3.2": - version: 1.3.2 - resolution: "run-con@npm:1.3.2" - dependencies: - deep-extend: "npm:^0.6.0" - ini: "npm:~4.1.0" - minimist: "npm:^1.2.8" - strip-json-comments: "npm:~3.1.1" - bin: - run-con: cli.js - checksum: 10c0/b0bdd3083cf9f188e72df8905a1a40a1478e2a7437b0312ab1b824e058129388b811705ee7874e9a707e5de0e8fb8eb790da3aa0a23375323feecd1da97d5cf6 - languageName: node - linkType: hard - "run-parallel@npm:^1.1.9": version: 1.2.0 resolution: "run-parallel@npm:1.2.0" @@ -43176,13 +43153,6 @@ __metadata: languageName: node linkType: hard -"smol-toml@npm:~1.3.1": - version: 1.3.1 - resolution: "smol-toml@npm:1.3.1" - checksum: 10c0/bac5bf4f2655fd561fe41f9426d70ab68b486631beff97a7f127f5d2f811b5e247d50a06583be03d35a625dcb05b7984b94a61a81c68ea2810ac7a9bf4edc64d - languageName: node - linkType: hard - "snake-case@npm:^3.0.4": version: 3.0.4 resolution: "snake-case@npm:3.0.4" @@ -44103,7 +44073,7 @@ __metadata: languageName: node linkType: hard -"strip-json-comments@npm:^3.0.1, strip-json-comments@npm:^3.1.1, strip-json-comments@npm:~3.1.1": +"strip-json-comments@npm:^3.0.1, strip-json-comments@npm:^3.1.1": version: 3.1.1 resolution: "strip-json-comments@npm:3.1.1" checksum: 10c0/9681a6257b925a7fa0f285851c0e613cc934a50661fa7bb41ca9cbbff89686bb4a0ee366e6ecedc4daafd01e83eee0720111ab294366fe7c185e935475ebcecd From 8de9549ee1808cb9cd3e9f15e0793d42b47de442 Mon Sep 17 00:00:00 2001 From: "hash-worker[bot]" <180894564+hash-worker[bot]@users.noreply.github.com> Date: Wed, 18 Dec 2024 18:06:09 +0000 Subject: [PATCH 048/159] Update npm package `llamaindex` to v0.8.29 (#5154) Co-authored-by: hash-worker[bot] <180894564+hash-worker[bot]@users.noreply.github.com> Co-authored-by: Bilal Mahmoud Co-authored-by: Ciaran Morinan <37743469+CiaranMn@users.noreply.github.com> --- apps/hash-ai-worker-ts/package.json | 2 +- .../llama-index/index-pdf-file.ts | 83 +- .../llama-index/simple-storage-context.ts | 116 +- yarn.lock | 1097 ++++++++++++----- 4 files changed, 869 insertions(+), 429 deletions(-) diff --git a/apps/hash-ai-worker-ts/package.json b/apps/hash-ai-worker-ts/package.json index 49fe45b59fa..b434f80cef5 100644 --- a/apps/hash-ai-worker-ts/package.json +++ b/apps/hash-ai-worker-ts/package.json @@ -73,7 +73,7 @@ "googleapis": "133.0.0", "is-docker": "3.0.0", "jsdom": "24.1.3", - "llamaindex": "0.2.10", + "llamaindex": "0.8.30", "lodash.debounce": "4.0.8", "lodash.isequal": "4.5.0", "lodash.ismatch": "4.4.0", diff --git a/apps/hash-ai-worker-ts/src/activities/flow-activities/research-entities-action/link-follower-agent/llama-index/index-pdf-file.ts b/apps/hash-ai-worker-ts/src/activities/flow-activities/research-entities-action/link-follower-agent/llama-index/index-pdf-file.ts index 8290971b076..d877fc27f80 100644 --- a/apps/hash-ai-worker-ts/src/activities/flow-activities/research-entities-action/link-follower-agent/llama-index/index-pdf-file.ts +++ b/apps/hash-ai-worker-ts/src/activities/flow-activities/research-entities-action/link-follower-agent/llama-index/index-pdf-file.ts @@ -1,26 +1,27 @@ import { createWriteStream } from "node:fs"; -import { mkdir, rm, unlink } from "node:fs/promises"; +import fs from "node:fs/promises"; import { Readable } from "node:stream"; -import { finished } from "node:stream/promises"; +import stream from "node:stream/promises"; import type { ReadableStream } from "node:stream/web"; -import { - PDFReader, - SimpleDocumentStore, - SimpleIndexStore, - SimpleVectorStore, - VectorStoreIndex, -} from "llamaindex"; +import { PDFReader, VectorStoreIndex } from "llamaindex"; import md5 from "md5"; import { logger } from "../../../../shared/activity-logger.js"; -import type { SimpleStorageContext } from "./simple-storage-context.js"; import { - generateSimpleStorageContextFilePaths, - persistSimpleStorageContext, - retrieveSimpleStorageContext, + createStorageContext, + persistStorageContext, } from "./simple-storage-context.js"; +const fileExists = async (path: string) => { + try { + await fs.access(path, fs.constants.F_OK); + return true; + } catch { + return false; + } +}; + export const indexPdfFile = async (params: { fileUrl: string; }): Promise<{ vectorStoreIndex: VectorStoreIndex }> => { @@ -28,36 +29,39 @@ export const indexPdfFile = async (params: { const hashedUrl = md5(fileUrl); - const { simpleStorageContext } = await retrieveSimpleStorageContext({ + const storageContext = await createStorageContext({ hash: hashedUrl, }); - if (!simpleStorageContext) { - logger.info("No existing storage context found. Creating new one..."); + const filePath = `${storageContext.directory}/file.pdf`; + const exists = await fileExists(filePath); - const response = await fetch(fileUrl); + let vectorStoreIndex; - if (!response.ok || !response.body) { - throw new Error(`Failed to fetch ${fileUrl}: ${response.statusText}`); - } + if (exists) { + logger.info("Retrieved existing storage context"); - const { directoryPath } = generateSimpleStorageContextFilePaths({ - hash: hashedUrl, + vectorStoreIndex = await VectorStoreIndex.init({ + storageContext, }); + } else { + logger.info("File has not been indexed yet. Downloading..."); - await mkdir(directoryPath, { recursive: true }); + const response = await fetch(fileUrl); - const filePath = `${directoryPath}/file.pdf`; + if (!response.ok || !response.body) { + throw new Error(`Failed to fetch ${fileUrl}: ${response.statusText}`); + } try { const fileStream = createWriteStream(filePath); - await finished( + await stream.finished( Readable.fromWeb(response.body as ReadableStream).pipe( fileStream, ), ); } catch (error) { - await unlink(filePath); + await fs.unlink(filePath); throw new Error( `Failed to write file to file system: ${(error as Error).message}`, ); @@ -69,45 +73,26 @@ export const indexPdfFile = async (params: { logger.info(`Loaded PDF File as ${documents.length} documents`); - const storageContext: SimpleStorageContext = { - vectorStore: new SimpleVectorStore(), - docStore: new SimpleDocumentStore(), - indexStore: new SimpleIndexStore(), - }; - - const vectorStoreIndex = await VectorStoreIndex.fromDocuments(documents, { + vectorStoreIndex = await VectorStoreIndex.fromDocuments(documents, { storageContext, }); - logger.info( - `Indexed PDF File successfully as ${documents.length} documents`, - ); - if (process.env.NODE_ENV === "development") { /** * In development, cache the storage context for faster iteration * when testing the same PDF file. */ - await persistSimpleStorageContext({ - hash: hashedUrl, - simpleStorageContext: storageContext, + await persistStorageContext({ + storageContext, }); } else { /** * In production, remove the PDF file from disk once it's been * indexed in the simple vector store. */ - await rm(filePath); + await fs.rm(filePath); } - - return { vectorStoreIndex }; } - logger.info("Retrieved existing storage context"); - - const vectorStoreIndex = await VectorStoreIndex.init({ - storageContext: simpleStorageContext, - }); - return { vectorStoreIndex }; }; diff --git a/apps/hash-ai-worker-ts/src/activities/flow-activities/research-entities-action/link-follower-agent/llama-index/simple-storage-context.ts b/apps/hash-ai-worker-ts/src/activities/flow-activities/research-entities-action/link-follower-agent/llama-index/simple-storage-context.ts index c6df2347809..4e8b660c652 100644 --- a/apps/hash-ai-worker-ts/src/activities/flow-activities/research-entities-action/link-follower-agent/llama-index/simple-storage-context.ts +++ b/apps/hash-ai-worker-ts/src/activities/flow-activities/research-entities-action/link-follower-agent/llama-index/simple-storage-context.ts @@ -1,98 +1,68 @@ -import { access, mkdir } from "node:fs/promises"; +import fs from "node:fs/promises"; import path from "node:path"; import { fileURLToPath } from "node:url"; -import type { Subtype } from "@local/advanced-types/subtype"; -import type { StorageContext } from "llamaindex"; -import { - SimpleDocumentStore, - SimpleIndexStore, - SimpleVectorStore, -} from "llamaindex"; +import { type StorageContext, storageContextFromDefaults } from "llamaindex"; -export type SimpleStorageContext = Subtype< - StorageContext, - { - docStore: SimpleDocumentStore; - indexStore: SimpleIndexStore; - vectorStore: SimpleVectorStore; - } ->; +import { logger } from "../../../../shared/activity-logger.js"; const __filename = fileURLToPath(import.meta.url); const __dirname = path.dirname(__filename); const baseFilePath = path.join(__dirname, "/var/tmp_files"); -export const generateSimpleStorageContextFilePaths = (params: { - hash: string; -}) => { - const { hash } = params; - - const directoryPath = `${baseFilePath}/storage/${hash}`; +export interface Storage extends StorageContext { + directory: string; +} - return { - directoryPath, - vectorStorePath: `${directoryPath}/vector-store.json`, - docStorePath: `${directoryPath}/doc-store.json`, - indexStorePath: `${directoryPath}/index-store.json`, - }; +const directory = ({ hash }: { hash: string }) => { + return `${baseFilePath}/storage/${hash}`; }; -export const retrieveSimpleStorageContext = async (params: { - hash: string; -}): Promise<{ simpleStorageContext: SimpleStorageContext | undefined }> => { - const { hash } = params; - - const { directoryPath, vectorStorePath, docStorePath, indexStorePath } = - generateSimpleStorageContextFilePaths({ hash }); +export const createStorageContext = async ({ hash }: { hash: string }) => { + const directoryPath = directory({ hash }); try { - // Check directory exists - await access(directoryPath); - - await Promise.all([ - access(vectorStorePath), - // access(docStorePath), - access(indexStorePath), - ]); + await fs.mkdir(directoryPath, { recursive: true }); + } catch (error: unknown) { + if ((error as NodeJS.ErrnoException).code !== "EEXIST") { + logger.info( + `Unable to create directory ${directoryPath}: ${(error as Error).message}`, + ); + } + } - const simpleStorageContext: SimpleStorageContext = { - vectorStore: await SimpleVectorStore.fromPersistPath(vectorStorePath), - docStore: await SimpleDocumentStore.fromPersistPath(docStorePath), - indexStore: await SimpleIndexStore.fromPersistPath(indexStorePath), - }; + const context = await storageContextFromDefaults({ + persistDir: directoryPath, + storeImages: false, + }); - return { simpleStorageContext }; - } catch (error) { - // eslint-disable-next-line no-console - console.error( - `Failed to retrieve storage context: ${(error as Error).message}`, - ); - return { simpleStorageContext: undefined }; - } + return { ...context, directory: directoryPath }; }; -export const persistSimpleStorageContext = async (params: { - hash: string; - simpleStorageContext: SimpleStorageContext; -}) => { - const { hash, simpleStorageContext } = params; +const ensurePromise = (value: T | Promise): Promise => + value instanceof Promise ? value : Promise.resolve(value); - const { vectorStore, docStore, indexStore } = simpleStorageContext; +export const persistStorageContext = ({ + storageContext: { vectorStores, docStore, indexStore }, +}: { + storageContext: StorageContext; +}) => { + const promises: Promise[] = []; - const { directoryPath, vectorStorePath, docStorePath, indexStorePath } = - generateSimpleStorageContextFilePaths({ hash }); + const pushPersist = (store: object | undefined) => { + if (store && "persist" in store) { + const persist = store.persist as () => Promise | void; + promises.push(ensurePromise(persist())); + } + }; - try { - await access(directoryPath); - } catch { - // If the directory does not exist, create it recursively - await mkdir(directoryPath, { recursive: true }); + for (const store of Object.values(vectorStores)) { + pushPersist(store); } - - await vectorStore.persist(vectorStorePath); /** @todo: figure out why this doesn't get created */ - await docStore.persist(docStorePath); - await indexStore.persist(indexStorePath); + pushPersist(docStore); + pushPersist(indexStore); + + return Promise.all(promises); }; diff --git a/yarn.lock b/yarn.lock index 0f9b1096c08..8a0480dfa99 100644 --- a/yarn.lock +++ b/yarn.lock @@ -59,22 +59,6 @@ __metadata: languageName: node linkType: hard -"@anthropic-ai/sdk@npm:^0.20.6": - version: 0.20.9 - resolution: "@anthropic-ai/sdk@npm:0.20.9" - dependencies: - "@types/node": "npm:^18.11.18" - "@types/node-fetch": "npm:^2.6.4" - abort-controller: "npm:^3.0.0" - agentkeepalive: "npm:^4.2.1" - form-data-encoder: "npm:1.7.2" - formdata-node: "npm:^4.3.2" - node-fetch: "npm:^2.6.7" - web-streams-polyfill: "npm:^3.2.1" - checksum: 10c0/5a26f4e2506c2408c30b4a83cc6fcf670aa68c1e99676fa1086e5747c752840467f502cbbef247fcc1e316c5074de805a53ff53e239551cc0419f4c91a43fbf2 - languageName: node - linkType: hard - "@apidevtools/json-schema-ref-parser@npm:11.7.3, @apidevtools/json-schema-ref-parser@npm:^11.5.5": version: 11.7.3 resolution: "@apidevtools/json-schema-ref-parser@npm:11.7.3" @@ -330,7 +314,7 @@ __metadata: googleapis: "npm:133.0.0" is-docker: "npm:3.0.0" jsdom: "npm:24.1.3" - llamaindex: "npm:0.2.10" + llamaindex: "npm:0.8.30" lodash.debounce: "npm:4.0.8" lodash.isequal: "npm:4.5.0" lodash.ismatch: "npm:4.4.0" @@ -1502,7 +1486,7 @@ __metadata: languageName: node linkType: hard -"@aws-sdk/client-sso-oidc@npm:3.714.0": +"@aws-sdk/client-sso-oidc@npm:3.714.0, @aws-sdk/client-sso-oidc@npm:^3.693.0": version: 3.714.0 resolution: "@aws-sdk/client-sso-oidc@npm:3.714.0" dependencies: @@ -2554,7 +2538,7 @@ __metadata: languageName: node linkType: hard -"@azure/core-auth@npm:^1.3.0, @azure/core-auth@npm:^1.4.0, @azure/core-auth@npm:^1.8.0, @azure/core-auth@npm:^1.9.0": +"@azure/core-auth@npm:^1.3.0, @azure/core-auth@npm:^1.4.0, @azure/core-auth@npm:^1.7.1, @azure/core-auth@npm:^1.8.0, @azure/core-auth@npm:^1.9.0": version: 1.9.0 resolution: "@azure/core-auth@npm:1.9.0" dependencies: @@ -2612,7 +2596,7 @@ __metadata: languageName: node linkType: hard -"@azure/core-rest-pipeline@npm:^1.10.1, @azure/core-rest-pipeline@npm:^1.17.0, @azure/core-rest-pipeline@npm:^1.3.0, @azure/core-rest-pipeline@npm:^1.8.0, @azure/core-rest-pipeline@npm:^1.9.1": +"@azure/core-rest-pipeline@npm:^1.10.1, @azure/core-rest-pipeline@npm:^1.15.1, @azure/core-rest-pipeline@npm:^1.17.0, @azure/core-rest-pipeline@npm:^1.3.0, @azure/core-rest-pipeline@npm:^1.8.0, @azure/core-rest-pipeline@npm:^1.9.1": version: 1.18.1 resolution: "@azure/core-rest-pipeline@npm:1.18.1" dependencies: @@ -2628,7 +2612,7 @@ __metadata: languageName: node linkType: hard -"@azure/core-tracing@npm:^1.0.0, @azure/core-tracing@npm:^1.0.1, @azure/core-tracing@npm:^1.1.2": +"@azure/core-tracing@npm:^1.0.0, @azure/core-tracing@npm:^1.0.1, @azure/core-tracing@npm:^1.1.1, @azure/core-tracing@npm:^1.1.2": version: 1.2.0 resolution: "@azure/core-tracing@npm:1.2.0" dependencies: @@ -2637,7 +2621,7 @@ __metadata: languageName: node linkType: hard -"@azure/core-util@npm:^1.11.0, @azure/core-util@npm:^1.2.0, @azure/core-util@npm:^1.6.1": +"@azure/core-util@npm:^1.11.0, @azure/core-util@npm:^1.2.0, @azure/core-util@npm:^1.6.1, @azure/core-util@npm:^1.8.1": version: 1.11.0 resolution: "@azure/core-util@npm:1.11.0" dependencies: @@ -2657,7 +2641,25 @@ __metadata: languageName: node linkType: hard -"@azure/identity@npm:^4.2.0": +"@azure/cosmos@npm:^4.1.1": + version: 4.2.0 + resolution: "@azure/cosmos@npm:4.2.0" + dependencies: + "@azure/abort-controller": "npm:^2.0.0" + "@azure/core-auth": "npm:^1.7.1" + "@azure/core-rest-pipeline": "npm:^1.15.1" + "@azure/core-tracing": "npm:^1.1.1" + "@azure/core-util": "npm:^1.8.1" + fast-json-stable-stringify: "npm:^2.1.0" + jsbi: "npm:^4.3.0" + priorityqueuejs: "npm:^2.0.0" + semaphore: "npm:^1.1.0" + tslib: "npm:^2.6.2" + checksum: 10c0/0210538b0204fe9b27db356e1049f47e8d2a52bc99f9eca1905940161d6b05b67475ab00d304fd45b108a28240094e0016297a5ea5d0cf8d800c2c7f688ead65 + languageName: node + linkType: hard + +"@azure/identity@npm:^4.2.0, @azure/identity@npm:^4.4.1": version: 4.5.0 resolution: "@azure/identity@npm:4.5.0" dependencies: @@ -5668,7 +5670,7 @@ __metadata: languageName: node linkType: hard -"@datastax/astra-db-ts@npm:^1.0.1": +"@datastax/astra-db-ts@npm:^1.4.1": version: 1.5.0 resolution: "@datastax/astra-db-ts@npm:1.5.0" dependencies: @@ -5690,6 +5692,37 @@ __metadata: languageName: node linkType: hard +"@discordjs/collection@npm:^2.1.1": + version: 2.1.1 + resolution: "@discordjs/collection@npm:2.1.1" + checksum: 10c0/7bbb007271a046c981957b4a0543f6ca7e4c294a2d40987437ff06db5e92dbf35b8dc61719db2a7bc99557a58275742aa34be9f50487870a6e80acfc4fe45fa1 + languageName: node + linkType: hard + +"@discordjs/rest@npm:^2.3.0": + version: 2.4.0 + resolution: "@discordjs/rest@npm:2.4.0" + dependencies: + "@discordjs/collection": "npm:^2.1.1" + "@discordjs/util": "npm:^1.1.1" + "@sapphire/async-queue": "npm:^1.5.3" + "@sapphire/snowflake": "npm:^3.5.3" + "@vladfrangu/async_event_emitter": "npm:^2.4.6" + discord-api-types: "npm:0.37.97" + magic-bytes.js: "npm:^1.10.0" + tslib: "npm:^2.6.3" + undici: "npm:6.19.8" + checksum: 10c0/2de35ff6c0ad734685e329fc29df52823faf6e9eb68045b780f5b657555c699da7e9e0ffdf2ab1ee7ef902d7a8901993b6ea6e0f3c85938570a2b74e15207c0a + languageName: node + linkType: hard + +"@discordjs/util@npm:^1.1.1": + version: 1.1.1 + resolution: "@discordjs/util@npm:1.1.1" + checksum: 10c0/a374648aae0dd98345996f41891add0523388297a6f6b99c7a37c83de4d832d91a464195502126967fac0f071e5ecb80f776ee42a887fffa9c5c0f4612381b98 + languageName: node + linkType: hard + "@discoveryjs/json-ext@npm:0.5.7, @discoveryjs/json-ext@npm:^0.5.0, @discoveryjs/json-ext@npm:^0.5.3": version: 0.5.7 resolution: "@discoveryjs/json-ext@npm:0.5.7" @@ -5697,6 +5730,13 @@ __metadata: languageName: node linkType: hard +"@discoveryjs/json-ext@npm:^0.6.1": + version: 0.6.3 + resolution: "@discoveryjs/json-ext@npm:0.6.3" + checksum: 10c0/778a9f9d5c3696da3c1f9fa4186613db95a1090abbfb6c2601430645c0d0158cd5e4ba4f32c05904e2dd2747d57710f6aab22bd2f8aa3c4e8feab9b247c65d85 + languageName: node + linkType: hard + "@dnd-kit/accessibility@npm:^3.1.1": version: 3.1.1 resolution: "@dnd-kit/accessibility@npm:3.1.1" @@ -6896,6 +6936,15 @@ __metadata: languageName: node linkType: hard +"@google-cloud/vertexai@npm:1.9.0": + version: 1.9.0 + resolution: "@google-cloud/vertexai@npm:1.9.0" + dependencies: + google-auth-library: "npm:^9.1.0" + checksum: 10c0/6568fa105a180b4d27be31be92e6c71b9f8d018bb432631d63e0bb37cc299811895dbf237b9c560a1558de4f87b18882bdbb8e976ce43bf75bf80d998f395d76 + languageName: node + linkType: hard + "@google-cloud/vertexai@npm:1.9.2": version: 1.9.2 resolution: "@google-cloud/vertexai@npm:1.9.2" @@ -6905,6 +6954,13 @@ __metadata: languageName: node linkType: hard +"@google/generative-ai@npm:0.21.0": + version: 0.21.0 + resolution: "@google/generative-ai@npm:0.21.0" + checksum: 10c0/cff5946c5964f2380e5097d82bd563d79be27a1a5ac604aaaad3f9ba3382992e4f0a371bd255baabfba4e5bdf296d8ce1410cbd65424afa98e64b2590fe49f3b + languageName: node + linkType: hard + "@graphql-codegen/add@npm:^5.0.3": version: 5.0.3 resolution: "@graphql-codegen/add@npm:5.0.3" @@ -7791,13 +7847,13 @@ __metadata: languageName: node linkType: hard -"@grpc/grpc-js@npm:^1.10.6, @grpc/grpc-js@npm:^1.10.7, @grpc/grpc-js@npm:^1.12.1, @grpc/grpc-js@npm:^1.12.2, @grpc/grpc-js@npm:^1.7.1": - version: 1.12.2 - resolution: "@grpc/grpc-js@npm:1.12.2" +"@grpc/grpc-js@npm:^1.10.7, @grpc/grpc-js@npm:^1.10.8, @grpc/grpc-js@npm:^1.12.1, @grpc/grpc-js@npm:^1.12.2, @grpc/grpc-js@npm:^1.7.1": + version: 1.12.4 + resolution: "@grpc/grpc-js@npm:1.12.4" dependencies: "@grpc/proto-loader": "npm:^0.7.13" "@js-sdsl/ordered-map": "npm:^4.4.2" - checksum: 10c0/0370bdec80a5d73f0929c4b7a882af3b0ca85ed1fda361ce3986b705eb2aa9be59bba39a18b99cc05080d5c0819b319a56796dfde248375971ba64efd55fc9d6 + checksum: 10c0/008a3bbf65a754e4d5a3bf373e0866e4fd91628001e0329c60dfb9ecdf200cd26e9a1dc25ed45be59776990027674904c9cb2e6bbf5dbb14081b5c748b15b770 languageName: node linkType: hard @@ -7970,10 +8026,45 @@ __metadata: languageName: unknown linkType: soft -"@huggingface/jinja@npm:^0.2.2": - version: 0.2.2 - resolution: "@huggingface/jinja@npm:0.2.2" - checksum: 10c0/b6c1933e2dd8f9fbbdd79cf57a23cecba7a63b6fba72eb978ca11386b10d846183a0e4d245921fe969cbc1398518bfcde284979ebecc3b6859ec73a6a25176d6 +"@huggingface/inference@npm:^2.8.1": + version: 2.8.1 + resolution: "@huggingface/inference@npm:2.8.1" + dependencies: + "@huggingface/tasks": "npm:^0.12.9" + checksum: 10c0/7521705c35842045351b9aa8b74293040384a6d84c2c4c49508bf9960a76a32f0130e58537868c798ab46cb5966eac8b7ea7fd6e219c82d2bc926bd2d9f98a1d + languageName: node + linkType: hard + +"@huggingface/jinja@npm:^0.1.0": + version: 0.1.3 + resolution: "@huggingface/jinja@npm:0.1.3" + checksum: 10c0/97ae17fd84e7c190c04003eef67acb711b1aef6a1c8e6b6eafb824383f81c95e0bc3134f6a367b2bac74d032a2c8dfe7c69fe4b650b14f98deac1a373fe9d715 + languageName: node + linkType: hard + +"@huggingface/jinja@npm:^0.3.2": + version: 0.3.2 + resolution: "@huggingface/jinja@npm:0.3.2" + checksum: 10c0/507dbd04ad99a819e44d1d8dab18294b13c1f8d3c4ce42c559b636168b065ece602198eddaeb4e5c86e9358658d2cb8ab4e679fa439399c6bfd5a2f272188d60 + languageName: node + linkType: hard + +"@huggingface/tasks@npm:^0.12.9": + version: 0.12.30 + resolution: "@huggingface/tasks@npm:0.12.30" + checksum: 10c0/29180e64a034caa233b3b1618405fb45b3684df11347ba948774e199b525f8f9e2572bd3eeb57505173b17c4c903ee55cec6ce66b41f1ecbab21f4df1bb6057c + languageName: node + linkType: hard + +"@huggingface/transformers@npm:^3.0.2": + version: 3.2.0 + resolution: "@huggingface/transformers@npm:3.2.0" + dependencies: + "@huggingface/jinja": "npm:^0.3.2" + onnxruntime-node: "npm:1.20.1" + onnxruntime-web: "npm:1.21.0-dev.20241205-d27fecd3d3" + sharp: "npm:^0.33.5" + checksum: 10c0/cce5eeeab0891227321acd19a50530c0c85d09d7aece992556287a9224b04b3d12051d82bd0cc0480dc802382bf06e9c71f3c6b553d736ad3d638a48a5c5d8f9 languageName: node linkType: hard @@ -8396,6 +8487,15 @@ __metadata: languageName: node linkType: hard +"@isaacs/fs-minipass@npm:^4.0.0": + version: 4.0.1 + resolution: "@isaacs/fs-minipass@npm:4.0.1" + dependencies: + minipass: "npm:^7.0.4" + checksum: 10c0/c25b6dc1598790d5b55c0947a9b7d111cfa92594db5296c3b907e2f533c033666f692a3939eadac17b1c7c40d362d0b0635dc874cbfe3e70db7c2b07cc97a5d2 + languageName: node + linkType: hard + "@isaacs/ts-node-temp-fork-for-pr-2009@npm:^10.9.7": version: 10.9.7 resolution: "@isaacs/ts-node-temp-fork-for-pr-2009@npm:10.9.7" @@ -8977,35 +9077,204 @@ __metadata: languageName: node linkType: hard -"@llamaindex/cloud@npm:0.0.5": - version: 0.0.5 - resolution: "@llamaindex/cloud@npm:0.0.5" +"@llamaindex/anthropic@npm:0.0.28": + version: 0.0.28 + resolution: "@llamaindex/anthropic@npm:0.0.28" dependencies: - "@types/qs": "npm:^6.9.12" - form-data: "npm:^4.0.0" - js-base64: "npm:^3.7.7" - qs: "npm:^6.12.0" + "@anthropic-ai/sdk": "npm:0.32.1" + "@llamaindex/core": "npm:0.4.19" + "@llamaindex/env": "npm:0.1.25" + remeda: "npm:^2.17.3" + checksum: 10c0/733f01d8e4b0eb27448e97f2429117bfefce238f574da95321440c43bebe24d905edab98dd67b6349bc3281eb9956e3287ea3e42771bf7cb00d0f8d03aad7320 + languageName: node + linkType: hard + +"@llamaindex/clip@npm:0.0.28": + version: 0.0.28 + resolution: "@llamaindex/clip@npm:0.0.28" + dependencies: + "@huggingface/transformers": "npm:^3.0.2" + "@llamaindex/core": "npm:0.4.19" + "@llamaindex/env": "npm:0.1.25" + "@llamaindex/openai": "npm:0.1.44" peerDependencies: - node-fetch: ^3.3.2 - peerDependenciesMeta: - node-fetch: - optional: true - checksum: 10c0/592d485f6ba583b30c03f975a9f6d5213819165c8e0c1e7b733f510ac0ce1c339eecfe4b1e763741ab4f72b25969b1298649637b61a32d02522c8bf49be9ba1e + "@huggingface/transformers": ^3.0.2 + checksum: 10c0/e5fcafb61813b7801534ffcca4467088740f7e251f1e0565e7f985e7b5afdb95f37f1b8a26766a5742f66df7376fc10c9e9dd124c8bfe1b59b9ea0616075bbe2 languageName: node linkType: hard -"@llamaindex/env@npm:0.0.7": - version: 0.0.7 - resolution: "@llamaindex/env@npm:0.0.7" +"@llamaindex/cloud@npm:2.0.20": + version: 2.0.20 + resolution: "@llamaindex/cloud@npm:2.0.20" + peerDependencies: + "@llamaindex/core": 0.4.19 + "@llamaindex/env": 0.1.25 + checksum: 10c0/8288feba87f38cc13f2f35b410e2e8537868ebb90e46b332afa64d66d6433a3d56632d9ad256779ea6758238db986a2254e769acc2b8628f37890c92f5f33435 + languageName: node + linkType: hard + +"@llamaindex/core@npm:0.4.19": + version: 0.4.19 + resolution: "@llamaindex/core@npm:0.4.19" dependencies: - "@types/lodash": "npm:^4.14.202" - "@types/node": "npm:^20.11.20" - lodash: "npm:^4.17.21" + "@llamaindex/env": "npm:0.1.25" + "@types/node": "npm:^22.9.0" + magic-bytes.js: "npm:^1.10.0" + zod: "npm:^3.23.8" + zod-to-json-schema: "npm:^3.23.3" + checksum: 10c0/f571a418111ccf5c6307c374ac9dc132afe62cf9135658bf1f62417a93a434967cf868b678715ae5739ead77a7652a4a002357e25a2d8f471b64ac84353b1eaf + languageName: node + linkType: hard + +"@llamaindex/deepinfra@npm:0.0.28": + version: 0.0.28 + resolution: "@llamaindex/deepinfra@npm:0.0.28" + dependencies: + "@llamaindex/core": "npm:0.4.19" + "@llamaindex/env": "npm:0.1.25" + "@llamaindex/openai": "npm:0.1.44" + checksum: 10c0/28e1becbfe26ff455ae0d1c33b19dec086d1ea1762d973bfa6e56dc2e84568d9c2580d44074b0a34e9cf8cdf4156deeecc636dbd2adc9e43e7dc57f67295e52a + languageName: node + linkType: hard + +"@llamaindex/env@npm:0.1.25": + version: 0.1.25 + resolution: "@llamaindex/env@npm:0.1.25" peerDependencies: "@aws-crypto/sha256-js": ^5.2.0 + "@huggingface/transformers": ^3.0.2 + gpt-tokenizer: ^2.5.0 + js-tiktoken: ^1.0.12 pathe: ^1.1.2 - readable-stream: ^4.5.2 - checksum: 10c0/2d7e04db304c51c112553ffd27a6e2d159602cd9326009f03daf346ff528255705b342a3aecc54bbec542917c54173e2c9141c6bfe761cde4fa6c2687d1a3759 + peerDependenciesMeta: + "@aws-crypto/sha256-js": + optional: true + "@huggingface/transformers": + optional: true + js-tiktoken: + optional: true + pathe: + optional: true + tiktoken: + optional: true + checksum: 10c0/20f34443ade555b0301e8437ba790bb61273f31c6d88d80a318a57fb0868a38a56e3d6d3e19fb1d9cf630b6cc90aab9a55ed71e449a1253b711c4d655e4219ba + languageName: node + linkType: hard + +"@llamaindex/groq@npm:0.0.43": + version: 0.0.43 + resolution: "@llamaindex/groq@npm:0.0.43" + dependencies: + "@llamaindex/env": "npm:0.1.25" + "@llamaindex/openai": "npm:0.1.44" + groq-sdk: "npm:0.8.0" + checksum: 10c0/b3c58b69cecb02e8748c8f8cdf19684dcab3e6a9d96bb3762dd1a3cdd61163ddda05858a1d62635d42e9b98bcccad9d354aa7d8abd08dbc37f89b172e1c1f993 + languageName: node + linkType: hard + +"@llamaindex/huggingface@npm:0.0.28": + version: 0.0.28 + resolution: "@llamaindex/huggingface@npm:0.0.28" + dependencies: + "@huggingface/inference": "npm:^2.8.1" + "@huggingface/transformers": "npm:^3.0.2" + "@llamaindex/core": "npm:0.4.19" + "@llamaindex/env": "npm:0.1.25" + "@llamaindex/openai": "npm:0.1.44" + peerDependencies: + "@huggingface/transformers": ^3.0.2 + checksum: 10c0/5d9045764c1e84a6ddf707594806444fb4f112f9079baee8cc740e3c2682ad1900f8d765b10b806397f8432e25d29e1c647769e22384045454aa180c720b9425 + languageName: node + linkType: hard + +"@llamaindex/node-parser@npm:0.0.20": + version: 0.0.20 + resolution: "@llamaindex/node-parser@npm:0.0.20" + dependencies: + html-to-text: "npm:^9.0.5" + peerDependencies: + "@llamaindex/core": 0.4.19 + "@llamaindex/env": 0.1.25 + tree-sitter: ^0.22.0 + web-tree-sitter: ^0.24.3 + checksum: 10c0/fb7b52f198ff7cc7104a7876060a8a8a4a751bd16301f66bbb8048daee7a2be4302b91ecca1981578198b5766dcf35d3b8d8f5e7466bf501787667b5d10bd6fc + languageName: node + linkType: hard + +"@llamaindex/ollama@npm:0.0.35": + version: 0.0.35 + resolution: "@llamaindex/ollama@npm:0.0.35" + dependencies: + "@llamaindex/core": "npm:0.4.19" + "@llamaindex/env": "npm:0.1.25" + ollama: "npm:^0.5.10" + remeda: "npm:^2.17.3" + checksum: 10c0/b6a58b3c76941dddee97ce99e376fe5dd61fef272e397236da9b6519700c453b51608b9f2ef78641c5902e17d916910745e2ca34f207b14f01c113eff53a33f4 + languageName: node + linkType: hard + +"@llamaindex/openai@npm:0.1.44": + version: 0.1.44 + resolution: "@llamaindex/openai@npm:0.1.44" + dependencies: + "@llamaindex/core": "npm:0.4.19" + "@llamaindex/env": "npm:0.1.25" + openai: "npm:^4.73.1" + checksum: 10c0/bf2ccd9f018f0e80e80e113877dacbafbc4457693d111bbf815b313f7f9405e073d8539ac23cca0ea4fc966365910ce5d2e60ce8b2aa2c75adf35358d60385c1 + languageName: node + linkType: hard + +"@llamaindex/portkey-ai@npm:0.0.28": + version: 0.0.28 + resolution: "@llamaindex/portkey-ai@npm:0.0.28" + dependencies: + "@llamaindex/core": "npm:0.4.19" + "@llamaindex/env": "npm:0.1.25" + portkey-ai: "npm:0.1.16" + remeda: "npm:^2.17.3" + checksum: 10c0/a3e1c4173d977da3956b73bfbb29f4222baab5edc5c069f64e20cf59ab9e86c852071c4ce73188b3cbce97b3cfb648d6bcfd68ea62a137682fdcd81d9c84c530 + languageName: node + linkType: hard + +"@llamaindex/readers@npm:1.0.21": + version: 1.0.21 + resolution: "@llamaindex/readers@npm:1.0.21" + dependencies: + "@azure/cosmos": "npm:^4.1.1" + "@discordjs/rest": "npm:^2.3.0" + "@discoveryjs/json-ext": "npm:^0.6.1" + assemblyai: "npm:^4.8.0" + csv-parse: "npm:^5.5.6" + discord-api-types: "npm:^0.37.105" + mammoth: "npm:^1.7.2" + mongodb: "npm:^6.7.0" + notion-md-crawler: "npm:^1.0.0" + papaparse: "npm:^5.4.1" + unpdf: "npm:^0.12.1" + peerDependencies: + "@llamaindex/core": 0.4.19 + "@llamaindex/env": 0.1.25 + checksum: 10c0/685ac24c29f909b5704a697b5586f32fb73ced566660c3767877df7aa1efca84e7ce022a5aa77337fd4f4e487239269f3fe05b5fa8efe194eb29bd035cd16b66 + languageName: node + linkType: hard + +"@llamaindex/replicate@npm:0.0.28": + version: 0.0.28 + resolution: "@llamaindex/replicate@npm:0.0.28" + dependencies: + "@llamaindex/core": "npm:0.4.19" + "@llamaindex/env": "npm:0.1.25" + replicate: "npm:^1.0.1" + checksum: 10c0/aa5fbffa14e925b45f5dc450d3aa237388c801785c024e79f1aba65e10c392583d3faad28b7a3b5f98add063c8dfdafb5038cfabe7c1b647cab00a080aeb6f06 + languageName: node + linkType: hard + +"@llamaindex/vllm@npm:0.0.14": + version: 0.0.14 + resolution: "@llamaindex/vllm@npm:0.0.14" + dependencies: + "@llamaindex/openai": "npm:0.1.44" + checksum: 10c0/06945cc1e848afee52d1d10224332e4346b2e8790de475aad0937d25630e0c0c06d8bce2003669a371cfd7f8f974c9da29e2e598229f5a4badef2731fbed0197 languageName: node linkType: hard @@ -9464,12 +9733,28 @@ __metadata: languageName: node linkType: hard -"@mistralai/mistralai@npm:^0.1.3": - version: 0.1.3 - resolution: "@mistralai/mistralai@npm:0.1.3" +"@mistralai/mistralai@npm:^1.3.4": + version: 1.3.5 + resolution: "@mistralai/mistralai@npm:1.3.5" + peerDependencies: + react: ^18 || ^19 + react-dom: ^18 || ^19 + zod: ">= 3" + checksum: 10c0/7602f03db6e9e0b828858e3f5f2f8065f36a6e07bd299f58bbd7bfbaef3a331ce8c2f3e0390fbce40f609624399612944584f17fc80c37705fd671c0a37511df + languageName: node + linkType: hard + +"@mixedbread-ai/sdk@npm:^2.2.11": + version: 2.2.11 + resolution: "@mixedbread-ai/sdk@npm:2.2.11" dependencies: - node-fetch: "npm:^2.6.7" - checksum: 10c0/96e870abcd94567eb02d61d6787662aa54c329d28361f7344ec2be45d09969e2e44613ab5d8b225096931d5dc6ca56b98f587b9b9e0379ff25461d2d91c99122 + form-data: "npm:4.0.0" + formdata-node: "npm:^6.0.3" + js-base64: "npm:3.7.2" + node-fetch: "npm:2.7.0" + qs: "npm:6.11.2" + url-join: "npm:4.0.1" + checksum: 10c0/a3950c4e783b1f1d06cc6fac5903b5cb2fe22913faa752b51d1dff5c2f658b3d5cfa82431d9c97545c9a1d6d483d31564b08fcda4f1897bca81667f7cae36966 languageName: node linkType: hard @@ -10160,7 +10445,7 @@ __metadata: languageName: node linkType: hard -"@notionhq/client@npm:^2.2.12, @notionhq/client@npm:^2.2.15": +"@notionhq/client@npm:^2.2.12": version: 2.2.15 resolution: "@notionhq/client@npm:2.2.15" dependencies: @@ -11009,15 +11294,12 @@ __metadata: languageName: node linkType: hard -"@pinecone-database/pinecone@npm:^2.2.0": - version: 2.2.2 - resolution: "@pinecone-database/pinecone@npm:2.2.2" +"@pinecone-database/pinecone@npm:^4.0.0": + version: 4.0.0 + resolution: "@pinecone-database/pinecone@npm:4.0.0" dependencies: - "@sinclair/typebox": "npm:^0.29.0" - ajv: "npm:^8.12.0" - cross-fetch: "npm:^3.1.5" encoding: "npm:^0.1.13" - checksum: 10c0/f8c38b1156592f10cc1cc14cf5c63082cb2a820c792a8c3af7d46cc7d77884f9147540079c33bb27790b674de57ac42afc125d5787228c29cbc5ca27447831eb + checksum: 10c0/8b2c7012cd34e7740a41d492d7b0632939c0b0095072f897daeb51982fdf843256c2efd0f2b75f7329ced564b7897d43a0b676bcd07b116c51ce82f00331a303 languageName: node linkType: hard @@ -11208,7 +11490,7 @@ __metadata: languageName: node linkType: hard -"@qdrant/js-client-rest@npm:^1.8.2": +"@qdrant/js-client-rest@npm:^1.11.0": version: 1.12.0 resolution: "@qdrant/js-client-rest@npm:1.12.0" dependencies: @@ -13380,6 +13662,20 @@ __metadata: languageName: unknown linkType: soft +"@sapphire/async-queue@npm:^1.5.3": + version: 1.5.5 + resolution: "@sapphire/async-queue@npm:1.5.5" + checksum: 10c0/4d61cbd90513e25f60ec611cd6c85b62a85b58c227c14050bcaeb4141a472fddb1da32dea5c4769cd213b97a5b83a076af333cbbe90efb97973d9fce47ef3ef0 + languageName: node + linkType: hard + +"@sapphire/snowflake@npm:^3.5.3": + version: 3.5.5 + resolution: "@sapphire/snowflake@npm:3.5.5" + checksum: 10c0/ca6be43c4d90e7c5843bb6aaed59df5cae796404b6948a0fd03caa841d1fded20b64ef84a9df93325b1c4a01165956a3a4b4cb5d7387efee1611fa09488c7068 + languageName: node + linkType: hard + "@selderee/plugin-htmlparser2@npm:^0.11.0": version: 0.11.0 resolution: "@selderee/plugin-htmlparser2@npm:0.11.0" @@ -13848,13 +14144,6 @@ __metadata: languageName: node linkType: hard -"@sinclair/typebox@npm:^0.29.0": - version: 0.29.6 - resolution: "@sinclair/typebox@npm:0.29.6" - checksum: 10c0/3f3ccacd0611e53912f55f957a9e9386a18e4ed908ce8dca05bdb51e858acd96070e54c4eac72b9921923251853e4e71f103dacf2ca4456f6c5a19c8f9bced5f - languageName: node - linkType: hard - "@sindresorhus/fnv1a@npm:^3.1.0": version: 3.1.0 resolution: "@sindresorhus/fnv1a@npm:3.1.0" @@ -17823,7 +18112,7 @@ __metadata: languageName: node linkType: hard -"@types/lodash-es@npm:4.17.12, @types/lodash-es@npm:^4.17.12": +"@types/lodash-es@npm:4.17.12": version: 4.17.12 resolution: "@types/lodash-es@npm:4.17.12" dependencies: @@ -17895,7 +18184,7 @@ __metadata: languageName: node linkType: hard -"@types/lodash@npm:*, @types/lodash@npm:4.17.13, @types/lodash@npm:^4.14.149, @types/lodash@npm:^4.14.167, @types/lodash@npm:^4.14.182, @types/lodash@npm:^4.14.202, @types/lodash@npm:^4.17.0, @types/lodash@npm:^4.17.13, @types/lodash@npm:^4.17.7": +"@types/lodash@npm:*, @types/lodash@npm:4.17.13, @types/lodash@npm:^4.14.149, @types/lodash@npm:^4.14.167, @types/lodash@npm:^4.14.182, @types/lodash@npm:^4.17.13, @types/lodash@npm:^4.17.7": version: 4.17.13 resolution: "@types/lodash@npm:4.17.13" checksum: 10c0/c3d0b7efe7933ac0369b99f2f7bff9240d960680fdb74b41ed4bd1b3ca60cca1e31fe4046d9abbde778f941a41bc2a75eb629abf8659fa6c27b66efbbb0802a9 @@ -18009,7 +18298,7 @@ __metadata: languageName: node linkType: hard -"@types/node@npm:*, @types/node@npm:22.10.2, @types/node@npm:>=13.7.0": +"@types/node@npm:*, @types/node@npm:22.10.2, @types/node@npm:>=13.7.0, @types/node@npm:^22.9.0": version: 22.10.2 resolution: "@types/node@npm:22.10.2" dependencies: @@ -18048,15 +18337,6 @@ __metadata: languageName: node linkType: hard -"@types/node@npm:^20.11.20, @types/node@npm:^20.12.7": - version: 20.17.8 - resolution: "@types/node@npm:20.17.8" - dependencies: - undici-types: "npm:~6.19.2" - checksum: 10c0/d68bbd9f8946a56d3f405e2dbfcc98d1d7a3cdbaa45d0a8fea2865e63ecdf3a2c9a0e992d9ea1658651909273026d341047e593596e133e842374371e04031c3 - languageName: node - linkType: hard - "@types/nodemailer@npm:6.4.17": version: 6.4.17 resolution: "@types/nodemailer@npm:6.4.17" @@ -18080,7 +18360,7 @@ __metadata: languageName: node linkType: hard -"@types/papaparse@npm:5.3.15, @types/papaparse@npm:^5.3.14": +"@types/papaparse@npm:5.3.15": version: 5.3.15 resolution: "@types/papaparse@npm:5.3.15" dependencies: @@ -18096,7 +18376,7 @@ __metadata: languageName: node linkType: hard -"@types/pg@npm:^8.11.5": +"@types/pg@npm:^8.11.8": version: 8.11.10 resolution: "@types/pg@npm:8.11.10" dependencies: @@ -18151,7 +18431,7 @@ __metadata: languageName: node linkType: hard -"@types/qs@npm:*, @types/qs@npm:^6.9.12, @types/qs@npm:^6.9.5": +"@types/qs@npm:*, @types/qs@npm:^6.9.5": version: 6.9.17 resolution: "@types/qs@npm:6.9.17" checksum: 10c0/a183fa0b3464267f8f421e2d66d960815080e8aab12b9aadab60479ba84183b1cdba8f4eff3c06f76675a8e42fe6a3b1313ea76c74f2885c3e25d32499c17d1b @@ -18930,6 +19210,13 @@ __metadata: languageName: node linkType: hard +"@upstash/vector@npm:^1.1.5": + version: 1.1.7 + resolution: "@upstash/vector@npm:1.1.7" + checksum: 10c0/ac6badf8b2e7e8a43649d9f0f591313406b63ee8e5b8d6511a662ddb31875ff9b1003b04eb87c7d818b2f251bde96ea03d53fee6678947e3855c7f5771237e7c + languageName: node + linkType: hard + "@use-gesture/core@npm:10.3.1": version: 10.3.1 resolution: "@use-gesture/core@npm:10.3.1" @@ -19066,6 +19353,13 @@ __metadata: languageName: node linkType: hard +"@vladfrangu/async_event_emitter@npm:^2.4.6": + version: 2.4.6 + resolution: "@vladfrangu/async_event_emitter@npm:2.4.6" + checksum: 10c0/1fe634878902da584493ecb8e81c855436c002b215dd7c25c21780930fc5621ebe8eb79d5b899a56af0d1ea9ea9171e35175221e4438e2f56c67ce64d4b8a373 + languageName: node + linkType: hard + "@vue/compiler-core@npm:3.5.13": version: 3.5.13 resolution: "@vue/compiler-core@npm:3.5.13" @@ -19451,21 +19745,6 @@ __metadata: languageName: node linkType: hard -"@xenova/transformers@npm:^2.17.1": - version: 2.17.2 - resolution: "@xenova/transformers@npm:2.17.2" - dependencies: - "@huggingface/jinja": "npm:^0.2.2" - onnxruntime-node: "npm:1.14.0" - onnxruntime-web: "npm:1.14.0" - sharp: "npm:^0.32.0" - dependenciesMeta: - onnxruntime-node: - optional: true - checksum: 10c0/4111856accd1e5ac6ff3a3571c99c6f82230dd268ef0ba82e6efad8a8531626a7b7b5440901af90c0baaaca38f47f0a8b528e563955e5c4301474227f844a2ee - languageName: node - linkType: hard - "@xmldom/xmldom@npm:^0.8.10, @xmldom/xmldom@npm:^0.8.6": version: 0.8.10 resolution: "@xmldom/xmldom@npm:0.8.10" @@ -19541,9 +19820,9 @@ __metadata: languageName: node linkType: hard -"@zilliz/milvus2-sdk-node@npm:^2.4.1": - version: 2.5.0 - resolution: "@zilliz/milvus2-sdk-node@npm:2.5.0" +"@zilliz/milvus2-sdk-node@npm:^2.4.6": + version: 2.5.1 + resolution: "@zilliz/milvus2-sdk-node@npm:2.5.1" dependencies: "@grpc/grpc-js": "npm:^1.12.1" "@grpc/proto-loader": "npm:^0.7.10" @@ -19553,7 +19832,7 @@ __metadata: lru-cache: "npm:^9.1.2" protobufjs: "npm:^7.2.6" winston: "npm:^3.9.0" - checksum: 10c0/155bf5a19207c3ce4ef6e4c33f34eaea3e7494635d6e4226968d5bfb0f22d8f15aa96c67f605bc289c409ec18c3ec395290bcbcf3250a0aa7d5cb9b2c5480375 + checksum: 10c0/f79a3ccf77c6d8a7c87072ae6c58c179ef1b987c8f578adebc2f30d5ae18e87ede9fb70c95e158c9afa1c659d0aafb0fd3124124ad6ea624ebf80a62383a7a21 languageName: node linkType: hard @@ -19578,6 +19857,13 @@ __metadata: languageName: node linkType: hard +"abort-controller-x@npm:^0.4.0, abort-controller-x@npm:^0.4.3": + version: 0.4.3 + resolution: "abort-controller-x@npm:0.4.3" + checksum: 10c0/8091b5c9279c304890e4e9cc90601947790846b7b2c149bb322a25e873eb3db060ef3da74a93b6fe40ccea41c3962fc4b175468a0ecdf4c4bb6421023ad9d71e + languageName: node + linkType: hard + "abort-controller@npm:^3.0.0": version: 3.0.0 resolution: "abort-controller@npm:3.0.0" @@ -19748,7 +20034,7 @@ __metadata: languageName: node linkType: hard -"ajv@npm:8.17.1, ajv@npm:^8.0.0, ajv@npm:^8.11.2, ajv@npm:^8.12.0, ajv@npm:^8.9.0": +"ajv@npm:8.17.1, ajv@npm:^8.0.0, ajv@npm:^8.11.2, ajv@npm:^8.17.1, ajv@npm:^8.9.0": version: 8.17.1 resolution: "ajv@npm:8.17.1" dependencies: @@ -20610,7 +20896,7 @@ __metadata: languageName: node linkType: hard -"assemblyai@npm:^4.4.1": +"assemblyai@npm:^4.8.0": version: 4.8.0 resolution: "assemblyai@npm:4.8.0" dependencies: @@ -21617,10 +21903,10 @@ __metadata: languageName: node linkType: hard -"bson@npm:^6.10.0": - version: 6.10.0 - resolution: "bson@npm:6.10.0" - checksum: 10c0/1447b08cc4910cc1d1b55642184fa13d06bc2b454280d09431082a8293b83854971821129d4925b22f5e2b49e08cdc1ac958a0193cfbad9efb2381ad3d86f242 +"bson@npm:^6.10.1": + version: 6.10.1 + resolution: "bson@npm:6.10.1" + checksum: 10c0/89f0ee7a45211648afa5a32d7f4d7ce436e20614b7c5d37c9fd6bc6e9464eec0ddeab8432a836d819bef1f4896256d874044603cf5f4b2123c00734842799601 languageName: node linkType: hard @@ -22309,9 +22595,31 @@ __metadata: languageName: node linkType: hard -"chromadb@npm:~1.7.3": - version: 1.7.3 - resolution: "chromadb@npm:1.7.3" +"chownr@npm:^3.0.0": + version: 3.0.0 + resolution: "chownr@npm:3.0.0" + checksum: 10c0/43925b87700f7e3893296c8e9c56cc58f926411cce3a6e5898136daaf08f08b9a8eb76d37d3267e707d0dcc17aed2e2ebdf5848c0c3ce95cf910a919935c1b10 + languageName: node + linkType: hard + +"chromadb-default-embed@npm:^2.13.2": + version: 2.13.2 + resolution: "chromadb-default-embed@npm:2.13.2" + dependencies: + "@huggingface/jinja": "npm:^0.1.0" + onnxruntime-node: "npm:1.14.0" + onnxruntime-web: "npm:1.14.0" + sharp: "npm:^0.32.0" + dependenciesMeta: + onnxruntime-node: + optional: true + checksum: 10c0/7f63c2ea85305668bce0d6f9165581d14444b4c64880afbf66b96fda9f7578ef413e8f67168be4fa37c0f4b67eb9b2800981c79de2045be0993caa86077b82c6 + languageName: node + linkType: hard + +"chromadb@npm:1.9.2": + version: 1.9.2 + resolution: "chromadb@npm:1.9.2" dependencies: cliui: "npm:^8.0.1" isomorphic-fetch: "npm:^3.0.0" @@ -22326,7 +22634,7 @@ __metadata: optional: true openai: optional: true - checksum: 10c0/e9b97360050c8d0a6f9930b448547debf2effc29e9a018729a9fe8f1cfb68cbe3fc81f743d4d9604970682622aea2c7199a7860cbe14223824bf8ecda3965cab + checksum: 10c0/32f4e66138cee0663998a73fee221ee6d45f8a53f09bf49d26fbd672072e4834eb243830b9013b84a193680ede33d174e6dbfbf00ece9c198ae941ef2d7ff492 languageName: node linkType: hard @@ -22697,16 +23005,7 @@ __metadata: languageName: node linkType: hard -"codsen-utils@npm:^1.6.4": - version: 1.6.4 - resolution: "codsen-utils@npm:1.6.4" - dependencies: - rfdc: "npm:^1.3.1" - checksum: 10c0/c2ca709b2c7cade614f9266df8542ecb770cad89dfcf4f17637134d4a8084554f97fbc05bce65b314f5199dfa9fba2f28cf9b704abb4e7525d4d57bec8c6b29a - languageName: node - linkType: hard - -"cohere-ai@npm:^7.9.5": +"cohere-ai@npm:7.14.0": version: 7.14.0 resolution: "cohere-ai@npm:7.14.0" dependencies: @@ -23647,6 +23946,13 @@ __metadata: languageName: node linkType: hard +"csv-parse@npm:^5.5.6": + version: 5.6.0 + resolution: "csv-parse@npm:5.6.0" + checksum: 10c0/52f5e6c45359902e0c8e57fc2eeed41366dc6b6d283b495b538dd50c8e8510413d6f924096ea056319cbbb8ed26e111c3a3485d7985c021bcf5abaa9e92425c7 + languageName: node + linkType: hard + "csv-stringify@npm:^5.6.5": version: 5.6.5 resolution: "csv-stringify@npm:5.6.5" @@ -24839,6 +25145,20 @@ __metadata: languageName: node linkType: hard +"discord-api-types@npm:0.37.97": + version: 0.37.97 + resolution: "discord-api-types@npm:0.37.97" + checksum: 10c0/1a08a0f44d3a7439fd1ac4128e4a853c498fa5477e40bc68f2c62d5b2abe8aad1d1d402d8a59a6ac55adf348354dc6c97865a11548b1a25bf2f0878cff3a54b0 + languageName: node + linkType: hard + +"discord-api-types@npm:^0.37.105": + version: 0.37.111 + resolution: "discord-api-types@npm:0.37.111" + checksum: 10c0/c5f497fdd34ff63bb9759a2cf6972ea5834730ddfa66a6e167d4eaef0082353e3cdf62602266614cb75a503aad06761594586739434a96e19b51845e16cc5534 + languageName: node + linkType: hard + "dns-packet@npm:^5.2.2, dns-packet@npm:^5.6.1": version: 5.6.1 resolution: "dns-packet@npm:5.6.1" @@ -28128,6 +28448,17 @@ __metadata: languageName: node linkType: hard +"form-data@npm:4.0.0": + version: 4.0.0 + resolution: "form-data@npm:4.0.0" + dependencies: + asynckit: "npm:^0.4.0" + combined-stream: "npm:^1.0.8" + mime-types: "npm:^2.1.12" + checksum: 10c0/cb6f3ac49180be03ff07ba3ff125f9eba2ff0b277fb33c7fc47569fc5e616882c5b1c69b9904c4c4187e97dd0419dd03b134174756f296dec62041e6527e2c6e + languageName: node + linkType: hard + "form-data@npm:^2.3.1, form-data@npm:^2.5.0": version: 2.5.2 resolution: "form-data@npm:2.5.2" @@ -29117,6 +29448,13 @@ __metadata: languageName: node linkType: hard +"gpt-tokenizer@npm:^2.6.2": + version: 2.8.1 + resolution: "gpt-tokenizer@npm:2.8.1" + checksum: 10c0/07229cca5a5ab8db0e1165b27f6ce400bf3509f1ab8946b2c3cddb51470e3bd1f3a56f750d564ee47a38885376bc9340291bfaec07858fdfb385f0445cf48e7e + languageName: node + linkType: hard + "graceful-fs@npm:^4.1.10, graceful-fs@npm:^4.1.11, graceful-fs@npm:^4.1.2, graceful-fs@npm:^4.1.5, graceful-fs@npm:^4.1.6, graceful-fs@npm:^4.2.0, graceful-fs@npm:^4.2.11, graceful-fs@npm:^4.2.4, graceful-fs@npm:^4.2.6, graceful-fs@npm:^4.2.9": version: 4.2.11 resolution: "graceful-fs@npm:4.2.11" @@ -29286,7 +29624,7 @@ __metadata: languageName: node linkType: hard -"graphql-request@npm:^6.0.0": +"graphql-request@npm:^6.0.0, graphql-request@npm:^6.1.0": version: 6.1.0 resolution: "graphql-request@npm:6.1.0" dependencies: @@ -29329,7 +29667,7 @@ __metadata: languageName: node linkType: hard -"graphql@npm:16.10.0": +"graphql@npm:16.10.0, graphql@npm:^16.9.0": version: 16.10.0 resolution: "graphql@npm:16.10.0" checksum: 10c0/303730675538c8bd6c76b447dc6f03e61242e2d2596b408c34759666ec4877409e5593a7a0467d590ac5407b8c663b093b599556a77f24f281abea69ddc53de6 @@ -29364,6 +29702,21 @@ __metadata: languageName: node linkType: hard +"groq-sdk@npm:0.8.0, groq-sdk@npm:^0.8.0": + version: 0.8.0 + resolution: "groq-sdk@npm:0.8.0" + dependencies: + "@types/node": "npm:^18.11.18" + "@types/node-fetch": "npm:^2.6.4" + abort-controller: "npm:^3.0.0" + agentkeepalive: "npm:^4.2.1" + form-data-encoder: "npm:1.7.2" + formdata-node: "npm:^4.3.2" + node-fetch: "npm:^2.6.7" + checksum: 10c0/6f6b954ffdba6ad252dcb2e11a6ec067a12adc1961c9cbee6c1fd0e5988d58e01b2894632c2539003522e2b9c628b64f60c95eaedfb8abaf0cd4edefb44f19b2 + languageName: node + linkType: hard + "grpc-js-reflection-client@npm:^1.2.20": version: 1.2.21 resolution: "grpc-js-reflection-client@npm:1.2.21" @@ -29913,7 +30266,7 @@ __metadata: languageName: node linkType: hard -"html-to-text@npm:9.0.5": +"html-to-text@npm:9.0.5, html-to-text@npm:^9.0.5": version: 9.0.5 resolution: "html-to-text@npm:9.0.5" dependencies: @@ -32207,13 +32560,6 @@ __metadata: languageName: node linkType: hard -"js-base64@npm:^3.7.7": - version: 3.7.7 - resolution: "js-base64@npm:3.7.7" - checksum: 10c0/3c905a7e78b601e4751b5e710edd0d6d045ce2d23eb84c9df03515371e1b291edc72808dc91e081cb9855aef6758292a2407006f4608ec3705373dd8baf2f80f - languageName: node - linkType: hard - "js-levenshtein@npm:^1.1.6": version: 1.1.6 resolution: "js-levenshtein@npm:1.1.6" @@ -32228,7 +32574,7 @@ __metadata: languageName: node linkType: hard -"js-tiktoken@npm:^1.0.11, js-tiktoken@npm:^1.0.7": +"js-tiktoken@npm:^1.0.14, js-tiktoken@npm:^1.0.7": version: 1.0.15 resolution: "js-tiktoken@npm:1.0.15" dependencies: @@ -32274,6 +32620,13 @@ __metadata: languageName: node linkType: hard +"jsbi@npm:^4.3.0": + version: 4.3.0 + resolution: "jsbi@npm:4.3.0" + checksum: 10c0/1817ac1b50ea3f4438bcd84cadc9aee7a8657829f65b55ea6f151f401dbbd3babedbfdd3e4f481bd7b5472abb7823efa640fd7e5eee7c30cea6431f7a8b74696 + languageName: node + linkType: hard + "jsbn@npm:1.1.0": version: 1.1.0 resolution: "jsbn@npm:1.1.0" @@ -33179,49 +33532,71 @@ __metadata: languageName: node linkType: hard -"llamaindex@npm:0.2.10": - version: 0.2.10 - resolution: "llamaindex@npm:0.2.10" +"llamaindex@npm:0.8.30": + version: 0.8.30 + resolution: "llamaindex@npm:0.8.30" dependencies: - "@anthropic-ai/sdk": "npm:^0.20.6" + "@anthropic-ai/sdk": "npm:0.32.1" "@aws-crypto/sha256-js": "npm:^5.2.0" - "@datastax/astra-db-ts": "npm:^1.0.1" - "@grpc/grpc-js": "npm:^1.10.6" - "@llamaindex/cloud": "npm:0.0.5" - "@llamaindex/env": "npm:0.0.7" - "@mistralai/mistralai": "npm:^0.1.3" - "@notionhq/client": "npm:^2.2.15" - "@pinecone-database/pinecone": "npm:^2.2.0" - "@qdrant/js-client-rest": "npm:^1.8.2" - "@types/lodash": "npm:^4.17.0" - "@types/node": "npm:^20.12.7" - "@types/papaparse": "npm:^5.3.14" - "@types/pg": "npm:^8.11.5" - "@xenova/transformers": "npm:^2.17.1" - "@zilliz/milvus2-sdk-node": "npm:^2.4.1" - ajv: "npm:^8.12.0" - assemblyai: "npm:^4.4.1" - chromadb: "npm:~1.7.3" - cohere-ai: "npm:^7.9.5" - js-tiktoken: "npm:^1.0.11" + "@aws-sdk/client-sso-oidc": "npm:^3.693.0" + "@azure/cosmos": "npm:^4.1.1" + "@azure/identity": "npm:^4.4.1" + "@datastax/astra-db-ts": "npm:^1.4.1" + "@discoveryjs/json-ext": "npm:^0.6.1" + "@google-cloud/vertexai": "npm:1.9.0" + "@google/generative-ai": "npm:0.21.0" + "@grpc/grpc-js": "npm:^1.12.2" + "@llamaindex/anthropic": "npm:0.0.28" + "@llamaindex/clip": "npm:0.0.28" + "@llamaindex/cloud": "npm:2.0.20" + "@llamaindex/core": "npm:0.4.19" + "@llamaindex/deepinfra": "npm:0.0.28" + "@llamaindex/env": "npm:0.1.25" + "@llamaindex/groq": "npm:0.0.43" + "@llamaindex/huggingface": "npm:0.0.28" + "@llamaindex/node-parser": "npm:0.0.20" + "@llamaindex/ollama": "npm:0.0.35" + "@llamaindex/openai": "npm:0.1.44" + "@llamaindex/portkey-ai": "npm:0.0.28" + "@llamaindex/readers": "npm:1.0.21" + "@llamaindex/replicate": "npm:0.0.28" + "@llamaindex/vllm": "npm:0.0.14" + "@mistralai/mistralai": "npm:^1.3.4" + "@mixedbread-ai/sdk": "npm:^2.2.11" + "@pinecone-database/pinecone": "npm:^4.0.0" + "@qdrant/js-client-rest": "npm:^1.11.0" + "@types/lodash": "npm:^4.17.7" + "@types/node": "npm:^22.9.0" + "@types/pg": "npm:^8.11.8" + "@upstash/vector": "npm:^1.1.5" + "@zilliz/milvus2-sdk-node": "npm:^2.4.6" + ajv: "npm:^8.17.1" + assemblyai: "npm:^4.8.0" + chromadb: "npm:1.9.2" + chromadb-default-embed: "npm:^2.13.2" + cohere-ai: "npm:7.14.0" + gpt-tokenizer: "npm:^2.6.2" + groq-sdk: "npm:^0.8.0" + js-tiktoken: "npm:^1.0.14" lodash: "npm:^4.17.21" magic-bytes.js: "npm:^1.10.0" - mammoth: "npm:^1.7.1" - md-utils-ts: "npm:^2.0.0" - mongodb: "npm:^6.5.0" - notion-md-crawler: "npm:^0.0.2" - openai: "npm:^4.38.0" - papaparse: "npm:^5.4.1" + mongodb: "npm:^6.7.0" + openai: "npm:^4.73.1" pathe: "npm:^1.1.2" - pdf2json: "npm:^3.0.5" - pg: "npm:^8.11.5" - pgvector: "npm:^0.1.8" - portkey-ai: "npm:^0.1.16" rake-modified: "npm:^1.0.8" - string-strip-html: "npm:^13.4.8" + weaviate-client: "npm:^3.2.3" wikipedia: "npm:^2.1.2" - wink-nlp: "npm:^1.14.3" - checksum: 10c0/e9680744977ed132ec791193a0d2c1a39ad7b14894491451124943a8b12fef987a4c4be66f4c704b234c8ecf2f4e7ade6922ddf7c890dd31876dc296d06c6c3b + wink-nlp: "npm:^2.3.0" + zod: "npm:^3.23.8" + peerDependencies: + pg: ^8.12.0 + pgvector: 0.2.0 + peerDependenciesMeta: + pg: + optional: true + pgvector: + optional: true + checksum: 10c0/d3a5f0dc8931c031ab5efe223a136a6e8803720ab3cc84c403897542b58c5a4851f12094feaad160a079bdb9254c60dca52385258680f052d9d8af53ca92b7d1 languageName: node linkType: hard @@ -33949,7 +34324,7 @@ __metadata: languageName: node linkType: hard -"mammoth@npm:^1.7.1": +"mammoth@npm:^1.7.2": version: 1.8.0 resolution: "mammoth@npm:1.8.0" dependencies: @@ -35874,6 +36249,16 @@ __metadata: languageName: node linkType: hard +"minizlib@npm:^3.0.1": + version: 3.0.1 + resolution: "minizlib@npm:3.0.1" + dependencies: + minipass: "npm:^7.0.4" + rimraf: "npm:^5.0.5" + checksum: 10c0/82f8bf70da8af656909a8ee299d7ed3b3372636749d29e105f97f20e88971be31f5ed7642f2e898f00283b68b701cc01307401cdc209b0efc5dd3818220e5093 + languageName: node + linkType: hard + "mitt@npm:3.0.1": version: 3.0.1 resolution: "mitt@npm:3.0.1" @@ -36144,16 +36529,16 @@ __metadata: languageName: node linkType: hard -"mongodb@npm:^6.5.0": - version: 6.11.0 - resolution: "mongodb@npm:6.11.0" +"mongodb@npm:^6.7.0": + version: 6.12.0 + resolution: "mongodb@npm:6.12.0" dependencies: "@mongodb-js/saslprep": "npm:^1.1.9" - bson: "npm:^6.10.0" + bson: "npm:^6.10.1" mongodb-connection-string-url: "npm:^3.0.0" peerDependencies: "@aws-sdk/credential-providers": ^3.188.0 - "@mongodb-js/zstd": ^1.1.0 + "@mongodb-js/zstd": ^1.1.0 || ^2.0.0 gcp-metadata: ^5.2.0 kerberos: ^2.0.1 mongodb-client-encryption: ">=6.0.0 <7" @@ -36174,7 +36559,7 @@ __metadata: optional: true socks: optional: true - checksum: 10c0/a3d38aef41d1656058ff6a6aecc741d0308864752ac58ffc990dcd021db514e2855390bb9f107f5b99777bc4a720c84a40818afb4ac12b4e19760ce36a664206 + checksum: 10c0/627d28e1ac6380b81e90880cf88f1bacac9109e18301dd6506d67b0ef58fcc1d15acd3e2527820dfedd81860be737a115f4bd48d6d4a689531c5a1d58587606e languageName: node linkType: hard @@ -36663,6 +37048,36 @@ __metadata: languageName: node linkType: hard +"nice-grpc-client-middleware-retry@npm:^3.1.9": + version: 3.1.9 + resolution: "nice-grpc-client-middleware-retry@npm:3.1.9" + dependencies: + abort-controller-x: "npm:^0.4.0" + nice-grpc-common: "npm:^2.0.2" + checksum: 10c0/9665206dca310fd7b379fd9894b826f36d7675253ebc967207ac4938d1aca4990e5b9660f77aa2fb6fed8fde9c8b11e37e0fe27b3ebfa04f89c5ffe30d980c8e + languageName: node + linkType: hard + +"nice-grpc-common@npm:^2.0.2": + version: 2.0.2 + resolution: "nice-grpc-common@npm:2.0.2" + dependencies: + ts-error: "npm:^1.0.6" + checksum: 10c0/9eb8a44e1a5c7051cf0e4a06dc7fda2c7abb6cfbcbb746806418c2c58f3f0075212c61bbce54239a204e6a552065f0fa92dfedcf3402dc16220b2ffaee4ab857 + languageName: node + linkType: hard + +"nice-grpc@npm:^2.1.10": + version: 2.1.10 + resolution: "nice-grpc@npm:2.1.10" + dependencies: + "@grpc/grpc-js": "npm:^1.10.8" + abort-controller-x: "npm:^0.4.0" + nice-grpc-common: "npm:^2.0.2" + checksum: 10c0/987f9d6eae8ab4f78dac8c98fd41819642e4119e4e880993698b9e85c9ae8090a0d2d2ed840e5c5d493f2c2df81bc6aefcc592a3974f760383fc5fb7e18337e7 + languageName: node + linkType: hard + "nice-try@npm:^1.0.4": version: 1.0.5 resolution: "nice-try@npm:1.0.5" @@ -36959,13 +37374,13 @@ __metadata: languageName: node linkType: hard -"notion-md-crawler@npm:^0.0.2": - version: 0.0.2 - resolution: "notion-md-crawler@npm:0.0.2" +"notion-md-crawler@npm:^1.0.0": + version: 1.0.0 + resolution: "notion-md-crawler@npm:1.0.0" dependencies: "@notionhq/client": "npm:^2.2.12" md-utils-ts: "npm:^2.0.0" - checksum: 10c0/ab3a4de4ebe9c2ef9a440e98f8d8eb12a79f0864e5f736e022d4f36f1556e21ae42cd1739a14fe14bcb734306b3c3ad9d1e7b650e119995c39ae75bb7abf5240 + checksum: 10c0/1ea53b06ce41d2f39c2e5f23d0ace3e37f3cfab0e8ba7ffe10a24edcc1c11c77657f920e0e0b752f489a6e249fc2122a8cdf58d2471af39a41cfde06a309aae3 languageName: node linkType: hard @@ -37434,6 +37849,15 @@ __metadata: languageName: node linkType: hard +"ollama@npm:^0.5.10": + version: 0.5.11 + resolution: "ollama@npm:0.5.11" + dependencies: + whatwg-fetch: "npm:^3.6.20" + checksum: 10c0/9f8bb6715144fac2d423121f29bf7697e3c2132c6696574e2f2de63de8dfa95ac3ed435f3abf35cece6ef07c309065cbf722cead1bee1eda3541b095745f64bf + languageName: node + linkType: hard + "on-finished@npm:2.4.1": version: 2.4.1 resolution: "on-finished@npm:2.4.1" @@ -37495,6 +37919,20 @@ __metadata: languageName: node linkType: hard +"onnxruntime-common@npm:1.20.1": + version: 1.20.1 + resolution: "onnxruntime-common@npm:1.20.1" + checksum: 10c0/b8d8b5aec30163420d06ed1725f0cef42f85a5c5f247760e0a09ac2d2d7a661cf42d2fc630c3288d5c4786f1abd45bbf5fb1723efd3163a3f3cecdcf8d27a15c + languageName: node + linkType: hard + +"onnxruntime-common@npm:1.21.0-dev.20241205-6ed77cc374": + version: 1.21.0-dev.20241205-6ed77cc374 + resolution: "onnxruntime-common@npm:1.21.0-dev.20241205-6ed77cc374" + checksum: 10c0/9793e1f0a438c9e7dd13e489ab2b331082b2cfd6f4ef83362c4f6ccd9ee2fa81433988e8f18af57ed483890e459324d5ec566b81a1f69c29ce432c82c1b691ee + languageName: node + linkType: hard + "onnxruntime-common@npm:~1.14.0": version: 1.14.0 resolution: "onnxruntime-common@npm:1.14.0" @@ -37511,6 +37949,17 @@ __metadata: languageName: node linkType: hard +"onnxruntime-node@npm:1.20.1": + version: 1.20.1 + resolution: "onnxruntime-node@npm:1.20.1" + dependencies: + onnxruntime-common: "npm:1.20.1" + tar: "npm:^7.0.1" + checksum: 10c0/c2f30a1deb992d6881b497d3d04afe6606ff5af589c4a6e47ac97fe45c676c911d448e2ad92d44d89a01c980bec45aef0877a6d1649871ff0eae882d5ad7e9d4 + conditions: (os=win32 | os=darwin | os=linux) + languageName: node + linkType: hard + "onnxruntime-web@npm:1.14.0": version: 1.14.0 resolution: "onnxruntime-web@npm:1.14.0" @@ -37525,6 +37974,20 @@ __metadata: languageName: node linkType: hard +"onnxruntime-web@npm:1.21.0-dev.20241205-d27fecd3d3": + version: 1.21.0-dev.20241205-d27fecd3d3 + resolution: "onnxruntime-web@npm:1.21.0-dev.20241205-d27fecd3d3" + dependencies: + flatbuffers: "npm:^1.12.0" + guid-typescript: "npm:^1.0.9" + long: "npm:^5.2.3" + onnxruntime-common: "npm:1.21.0-dev.20241205-6ed77cc374" + platform: "npm:^1.3.6" + protobufjs: "npm:^7.2.4" + checksum: 10c0/32202cc417020008564f4cde5514035fc17f3c4684b4bc72cacd967b7714d7a12803e00c2b27d730a15f203bb892af8f134594d6e6840b59b7e478324333e843 + languageName: node + linkType: hard + "open@npm:^8.0.0, open@npm:^8.0.4, open@npm:^8.0.9, open@npm:^8.4.0, open@npm:^8.4.2": version: 8.4.2 resolution: "open@npm:8.4.2" @@ -37545,7 +38008,7 @@ __metadata: languageName: node linkType: hard -"openai@npm:4.77.0, openai@npm:^4.38.0": +"openai@npm:4.77.0, openai@npm:^4.73.1": version: 4.77.0 resolution: "openai@npm:4.77.0" dependencies: @@ -38367,7 +38830,7 @@ __metadata: languageName: node linkType: hard -"pdf2json@npm:3.1.4, pdf2json@npm:^3.0.5": +"pdf2json@npm:3.1.4": version: 3.1.4 resolution: "pdf2json@npm:3.1.4" dependencies: @@ -38561,7 +39024,7 @@ __metadata: languageName: node linkType: hard -"pg@npm:^8.11.5, pg@npm:^8.7.1": +"pg@npm:^8.7.1": version: 8.13.1 resolution: "pg@npm:8.13.1" dependencies: @@ -38592,13 +39055,6 @@ __metadata: languageName: node linkType: hard -"pgvector@npm:^0.1.8": - version: 0.1.8 - resolution: "pgvector@npm:0.1.8" - checksum: 10c0/ef41f0688f6240e3897428545cd5341e1e12d58e46d1363cad5bfcb7edfe134dbae93174a49a05581b2c8b0a2bbe95e63b5c076420ed0bb5b5ffd31c2725a6ec - languageName: node - linkType: hard - "picocolors@npm:^1.0.0, picocolors@npm:^1.1.0, picocolors@npm:^1.1.1": version: 1.1.1 resolution: "picocolors@npm:1.1.1" @@ -38839,7 +39295,7 @@ __metadata: languageName: node linkType: hard -"portkey-ai@npm:^0.1.16": +"portkey-ai@npm:0.1.16": version: 0.1.16 resolution: "portkey-ai@npm:0.1.16" dependencies: @@ -39176,6 +39632,13 @@ __metadata: languageName: node linkType: hard +"priorityqueuejs@npm:^2.0.0": + version: 2.0.0 + resolution: "priorityqueuejs@npm:2.0.0" + checksum: 10c0/8e3f6118c5427a3701dd129c859e37a5fb699284dfd4a8cfa3700a1b9685c29db498c00914c844d1c5bfefcf3914fbec1e91327f789dddcd21b34608337323d7 + languageName: node + linkType: hard + "prismjs-terminal@npm:^1.2.3": version: 1.2.3 resolution: "prismjs-terminal@npm:1.2.3" @@ -39872,7 +40335,7 @@ __metadata: languageName: node linkType: hard -"qs@npm:^6.10.0, qs@npm:^6.12.0, qs@npm:^6.12.3, qs@npm:^6.5.1, qs@npm:^6.7.0": +"qs@npm:^6.10.0, qs@npm:^6.12.3, qs@npm:^6.5.1, qs@npm:^6.7.0": version: 6.13.1 resolution: "qs@npm:6.13.1" dependencies: @@ -40074,45 +40537,6 @@ __metadata: languageName: node linkType: hard -"ranges-apply@npm:^7.0.16": - version: 7.0.16 - resolution: "ranges-apply@npm:7.0.16" - dependencies: - ranges-merge: "npm:^9.0.15" - tiny-invariant: "npm:^1.3.3" - checksum: 10c0/0d8796f6b72170c6c08ecf57b2df8a12ab645416176bea0d0dc3b7cc2aa68142843f25bbc5e256d3569b2e74648e5f0821f88f732a77a5d3483385426428eaa2 - languageName: node - linkType: hard - -"ranges-merge@npm:^9.0.15": - version: 9.0.15 - resolution: "ranges-merge@npm:9.0.15" - dependencies: - ranges-push: "npm:^7.0.15" - ranges-sort: "npm:^6.0.11" - checksum: 10c0/2963c3dcd149cd7c684d1f3ec190f4850fd2d34b7e0611263a87712c45dc92e136fd58c8be5e9136c3c4513a90f22de524d0b9da99bb15354d9f480c5f6409f5 - languageName: node - linkType: hard - -"ranges-push@npm:^7.0.15": - version: 7.0.15 - resolution: "ranges-push@npm:7.0.15" - dependencies: - codsen-utils: "npm:^1.6.4" - ranges-sort: "npm:^6.0.11" - string-collapse-leading-whitespace: "npm:^7.0.7" - string-trim-spaces-only: "npm:^5.0.10" - checksum: 10c0/b83e514243bc21bfd3b80f6757faf9b0850933b8f7ae9130d2bb09dedfc3d57a8721163af57b6d904b402f0f9167cf34f67e36d56b1222ccebb7b20621e277be - languageName: node - linkType: hard - -"ranges-sort@npm:^6.0.11": - version: 6.0.11 - resolution: "ranges-sort@npm:6.0.11" - checksum: 10c0/fb4f80a29a49e1bbad5cc5ce2c6371f807c82bebd1ca4f8da01b6fd5131aa5cc19ae333b468d5f1c7a3601da150770e1a2995e7036a3d79a4dbace015d4676fd - languageName: node - linkType: hard - "raw-body@npm:2.5.2, raw-body@npm:^2.3.0": version: 2.5.2 resolution: "raw-body@npm:2.5.2" @@ -40939,6 +41363,19 @@ __metadata: languageName: node linkType: hard +"readable-stream@npm:>=4.0.0, readable-stream@npm:^4.2.0, readable-stream@npm:^4.4.2, readable-stream@npm:^4.5.2": + version: 4.5.2 + resolution: "readable-stream@npm:4.5.2" + dependencies: + abort-controller: "npm:^3.0.0" + buffer: "npm:^6.0.3" + events: "npm:^3.3.0" + process: "npm:^0.11.10" + string_decoder: "npm:^1.3.0" + checksum: 10c0/a2c80e0e53aabd91d7df0330929e32d0a73219f9477dbbb18472f6fdd6a11a699fc5d172a1beff98d50eae4f1496c950ffa85b7cc2c4c196963f289a5f39275d + languageName: node + linkType: hard + "readable-stream@npm:^2.0.0, readable-stream@npm:^2.0.1, readable-stream@npm:^2.0.2, readable-stream@npm:^2.0.5, readable-stream@npm:^2.1.0, readable-stream@npm:^2.2.2, readable-stream@npm:^2.3.0, readable-stream@npm:^2.3.5, readable-stream@npm:~2.3.6": version: 2.3.8 resolution: "readable-stream@npm:2.3.8" @@ -40954,19 +41391,6 @@ __metadata: languageName: node linkType: hard -"readable-stream@npm:^4.2.0, readable-stream@npm:^4.4.2, readable-stream@npm:^4.5.2": - version: 4.5.2 - resolution: "readable-stream@npm:4.5.2" - dependencies: - abort-controller: "npm:^3.0.0" - buffer: "npm:^6.0.3" - events: "npm:^3.3.0" - process: "npm:^0.11.10" - string_decoder: "npm:^1.3.0" - checksum: 10c0/a2c80e0e53aabd91d7df0330929e32d0a73219f9477dbbb18472f6fdd6a11a699fc5d172a1beff98d50eae4f1496c950ffa85b7cc2c4c196963f289a5f39275d - languageName: node - linkType: hard - "readable-stream@npm:~1.0.17, readable-stream@npm:~1.0.27-1": version: 1.0.34 resolution: "readable-stream@npm:1.0.34" @@ -41482,6 +41906,15 @@ __metadata: languageName: node linkType: hard +"remeda@npm:^2.17.3": + version: 2.18.0 + resolution: "remeda@npm:2.18.0" + dependencies: + type-fest: "npm:^4.30.0" + checksum: 10c0/c492e3f5416193016908e9c2b27c99752f38ddce7579a6004a9b852e3a6c7d6bcc743f55ab132078b2cefc655255c00f9a628cb5188f3d0870b094587212fe28 + languageName: node + linkType: hard + "remedial@npm:^1.0.7": version: 1.0.8 resolution: "remedial@npm:1.0.8" @@ -41523,6 +41956,18 @@ __metadata: languageName: node linkType: hard +"replicate@npm:^1.0.1": + version: 1.0.1 + resolution: "replicate@npm:1.0.1" + dependencies: + readable-stream: "npm:>=4.0.0" + dependenciesMeta: + readable-stream: + optional: true + checksum: 10c0/667b6faf39be436c5cc80794d96277000fa5d5a88911ee302541240fbe3060f337f04481477df3d33d70941888ed559a9c01a1dd007f67ae83656825867b1524 + languageName: node + linkType: hard + "request@npm:^2.88.2": version: 2.88.2 resolution: "request@npm:2.88.2" @@ -41818,7 +42263,7 @@ __metadata: languageName: node linkType: hard -"rfdc@npm:^1.3.0, rfdc@npm:^1.3.1": +"rfdc@npm:^1.3.0": version: 1.4.1 resolution: "rfdc@npm:1.4.1" checksum: 10c0/4614e4292356cafade0b6031527eea9bc90f2372a22c012313be1dcc69a3b90c7338158b414539be863fa95bfcb2ddcd0587be696841af4e6679d85e62c060c7 @@ -42377,6 +42822,13 @@ __metadata: languageName: node linkType: hard +"semaphore@npm:^1.1.0": + version: 1.1.0 + resolution: "semaphore@npm:1.1.0" + checksum: 10c0/1eeb146c1ffe1283951573c356ba3a9b18a8513b18959ecbc0e3ba3a99e5da46edc509a9a5f0cb9d5d28895dcd828bdd6c29162c8e41a311ee79efaf3456a723 + languageName: node + linkType: hard + "semver-compare@npm:^1.0.0": version: 1.0.0 resolution: "semver-compare@npm:1.0.0" @@ -43719,13 +44171,6 @@ __metadata: languageName: node linkType: hard -"string-collapse-leading-whitespace@npm:^7.0.7": - version: 7.0.7 - resolution: "string-collapse-leading-whitespace@npm:7.0.7" - checksum: 10c0/f54c5a650c2d64b9c6d1b8a48366620f242958fbc289f52c94e18d80b7cf63476baa7b03a8d4f8a4e6bffb0916867c9d0cbbcbb91344f69d4b9073f941dba24c - languageName: node - linkType: hard - "string-env-interpolation@npm:^1.0.1": version: 1.0.1 resolution: "string-env-interpolation@npm:1.0.1" @@ -43733,16 +44178,6 @@ __metadata: languageName: node linkType: hard -"string-left-right@npm:^6.0.17": - version: 6.0.17 - resolution: "string-left-right@npm:6.0.17" - dependencies: - codsen-utils: "npm:^1.6.4" - rfdc: "npm:^1.3.1" - checksum: 10c0/d07830f8027c8bd518fb82ed58bd5fbb2c8acc3d8c8c61b73488ca9126f86e21acfed999e533cf84533fcd7b9f770cb002f7306333380d5deb9a77e2d85bf463 - languageName: node - linkType: hard - "string-length@npm:^6.0.0": version: 6.0.0 resolution: "string-length@npm:6.0.0" @@ -43752,21 +44187,6 @@ __metadata: languageName: node linkType: hard -"string-strip-html@npm:^13.4.8": - version: 13.4.8 - resolution: "string-strip-html@npm:13.4.8" - dependencies: - "@types/lodash-es": "npm:^4.17.12" - codsen-utils: "npm:^1.6.4" - html-entities: "npm:^2.5.2" - lodash-es: "npm:^4.17.21" - ranges-apply: "npm:^7.0.16" - ranges-push: "npm:^7.0.15" - string-left-right: "npm:^6.0.17" - checksum: 10c0/e93f104ce7a86ce5124fbfbd10374728a9488b55c8f16f22fb91800df39eb03bb789eaf41d32c5d01b7f5cea5a3f3d1398bb58cb73be3b6083dec0c6852c328f - languageName: node - linkType: hard - "string-to-stream@npm:^1.1.0": version: 1.1.1 resolution: "string-to-stream@npm:1.1.1" @@ -43777,13 +44197,6 @@ __metadata: languageName: node linkType: hard -"string-trim-spaces-only@npm:^5.0.10": - version: 5.0.10 - resolution: "string-trim-spaces-only@npm:5.0.10" - checksum: 10c0/23a1480ab58acd3b5bec20cb5a8a01ab0592304c068cf8438dd45a66633b04feec5099737168fbe1730a504fb40be9d564a35938bef1db325a9c0a20fe0e9ddb - languageName: node - linkType: hard - "string-ts@npm:^2.2.0": version: 2.2.0 resolution: "string-ts@npm:2.2.0" @@ -44589,6 +45002,20 @@ __metadata: languageName: node linkType: hard +"tar@npm:^7.0.1": + version: 7.4.3 + resolution: "tar@npm:7.4.3" + dependencies: + "@isaacs/fs-minipass": "npm:^4.0.0" + chownr: "npm:^3.0.0" + minipass: "npm:^7.1.2" + minizlib: "npm:^3.0.1" + mkdirp: "npm:^3.0.1" + yallist: "npm:^5.0.0" + checksum: 10c0/d4679609bb2a9b48eeaf84632b6d844128d2412b95b6de07d53d8ee8baf4ca0857c9331dfa510390a0727b550fd543d4d1a10995ad86cdf078423fbb8d99831d + languageName: node + linkType: hard + "tcompare@npm:7.0.1": version: 7.0.1 resolution: "tcompare@npm:7.0.1" @@ -45231,6 +45658,13 @@ __metadata: languageName: node linkType: hard +"ts-error@npm:^1.0.6": + version: 1.0.6 + resolution: "ts-error@npm:1.0.6" + checksum: 10c0/c46994b0b88eae75d676ab18edcdb3e6c309abb39d8169c2d15286d10f4fc7bfc58c537a81f3efe24701e840247b5e79ac8e21a7335327811a07cfc33f69a72f + languageName: node + linkType: hard + "ts-invariant@npm:^0.10.3": version: 0.10.3 resolution: "ts-invariant@npm:0.10.3" @@ -45714,10 +46148,10 @@ __metadata: languageName: node linkType: hard -"type-fest@npm:^4.6.0, type-fest@npm:^4.7.1": - version: 4.29.1 - resolution: "type-fest@npm:4.29.1" - checksum: 10c0/93019c35cedec6dc12a324edcf6bd71719881c944f70e6bf029fd2deb4132589439510f4043f82d7afa6238c0850becfe64fa299a0bca351bed9d839b65463e2 +"type-fest@npm:^4.30.0, type-fest@npm:^4.6.0, type-fest@npm:^4.7.1": + version: 4.30.2 + resolution: "type-fest@npm:4.30.2" + checksum: 10c0/c28db60ff57223fb23180e66bd9652fb3197fb533e9360f9ee76e66c3ccb6849b292df5e8fa5897f215f6685357dd31c946511da56be549cb5de9d42ac9ea67d languageName: node linkType: hard @@ -46128,13 +46562,6 @@ __metadata: languageName: node linkType: hard -"undici-types@npm:~6.19.2": - version: 6.19.8 - resolution: "undici-types@npm:6.19.8" - checksum: 10c0/078afa5990fba110f6824823ace86073b4638f1d5112ee26e790155f481f2a868cc3e0615505b6f4282bdf74a3d8caad715fd809e870c2bb0704e3ea6082f344 - languageName: node - linkType: hard - "undici-types@npm:~6.20.0": version: 6.20.0 resolution: "undici-types@npm:6.20.0" @@ -46142,6 +46569,13 @@ __metadata: languageName: node linkType: hard +"undici@npm:6.19.8": + version: 6.19.8 + resolution: "undici@npm:6.19.8" + checksum: 10c0/07fd8520bce7e34ea29c07ef0de27b734183042cdb4e2f1262cd1fb9b755a6b04ff2471040395dfb1770fb7786069a97c5178bcf706b80a34075994f46feb37c + languageName: node + linkType: hard + "undici@npm:^6.19.5": version: 6.21.0 resolution: "undici@npm:6.21.0" @@ -46487,6 +46921,18 @@ __metadata: languageName: node linkType: hard +"unpdf@npm:^0.12.1": + version: 0.12.1 + resolution: "unpdf@npm:0.12.1" + dependencies: + canvas: "npm:^2.11.2" + dependenciesMeta: + canvas: + optional: true + checksum: 10c0/6e29624d877279681068c9ade3dfab6a6556bd955704317f96b9c3adfd5b9f901ee3d1f56b4a50c34ce5f11a8a21c18b623775b546648119eb5a347d884af66a + languageName: node + linkType: hard + "unpipe@npm:1.0.0, unpipe@npm:~1.0.0": version: 1.0.0 resolution: "unpipe@npm:1.0.0" @@ -47298,6 +47744,22 @@ __metadata: languageName: node linkType: hard +"weaviate-client@npm:^3.2.3": + version: 3.2.5 + resolution: "weaviate-client@npm:3.2.5" + dependencies: + abort-controller-x: "npm:^0.4.3" + graphql: "npm:^16.9.0" + graphql-request: "npm:^6.1.0" + long: "npm:^5.2.3" + nice-grpc: "npm:^2.1.10" + nice-grpc-client-middleware-retry: "npm:^3.1.9" + nice-grpc-common: "npm:^2.0.2" + uuid: "npm:^9.0.1" + checksum: 10c0/476e60d60febeb43f312152d593c7a5df7119a138fc8b2b9bb5007f29f5e4cab18d95ad6362bfc9c09384b0dcce66f77fa9084aed47cf6f9e21a910aba5384fa + languageName: node + linkType: hard + "web-streams-polyfill@npm:4.0.0-beta.3": version: 4.0.0-beta.3 resolution: "web-streams-polyfill@npm:4.0.0-beta.3" @@ -47305,7 +47767,7 @@ __metadata: languageName: node linkType: hard -"web-streams-polyfill@npm:^3.0.3, web-streams-polyfill@npm:^3.2.1": +"web-streams-polyfill@npm:^3.0.3": version: 3.3.3 resolution: "web-streams-polyfill@npm:3.3.3" checksum: 10c0/64e855c47f6c8330b5436147db1c75cb7e7474d924166800e8e2aab5eb6c76aac4981a84261dd2982b3e754490900b99791c80ae1407a9fa0dcff74f82ea3a7f @@ -47617,7 +48079,7 @@ __metadata: languageName: node linkType: hard -"whatwg-fetch@npm:^3.4.1": +"whatwg-fetch@npm:^3.4.1, whatwg-fetch@npm:^3.6.20": version: 3.6.20 resolution: "whatwg-fetch@npm:3.6.20" checksum: 10c0/fa972dd14091321d38f36a4d062298df58c2248393ef9e8b154493c347c62e2756e25be29c16277396046d6eaa4b11bd174f34e6403fff6aaca9fb30fa1ff46d @@ -47864,10 +48326,10 @@ __metadata: languageName: node linkType: hard -"wink-nlp@npm:^1.14.3": - version: 1.14.3 - resolution: "wink-nlp@npm:1.14.3" - checksum: 10c0/9c9cd07b6cc3037a838a06e0f69bf997818d3b8f60c69a5679de5a9c351b756698f493c655133eba30846b086faae1d0d39d325b8eae1d8ec3185bb46ee5fb90 +"wink-nlp@npm:^2.3.0": + version: 2.3.2 + resolution: "wink-nlp@npm:2.3.2" + checksum: 10c0/b0b6f3ae4e2b2017577271ea3ac59af0e8f77f78045cd443ac24434afd5e87ef57609d793fd09bd7c1b07b3e5df3a9843d9f977406fe3064dd279abe8301f2c0 languageName: node linkType: hard @@ -48237,6 +48699,13 @@ __metadata: languageName: node linkType: hard +"yallist@npm:^5.0.0": + version: 5.0.0 + resolution: "yallist@npm:5.0.0" + checksum: 10c0/a499c81ce6d4a1d260d4ea0f6d49ab4da09681e32c3f0472dee16667ed69d01dae63a3b81745a24bd78476ec4fcf856114cb4896ace738e01da34b2c42235416 + languageName: node + linkType: hard + "yaml-ast-parser@npm:0.0.43, yaml-ast-parser@npm:^0.0.43": version: 0.0.43 resolution: "yaml-ast-parser@npm:0.0.43" @@ -48494,6 +48963,15 @@ __metadata: languageName: node linkType: hard +"zod-to-json-schema@npm:^3.23.3": + version: 3.24.1 + resolution: "zod-to-json-schema@npm:3.24.1" + peerDependencies: + zod: ^3.24.1 + checksum: 10c0/dd4e72085003e41a3f532bd00061f27041418a4eb176aa6ce33042db08d141bd37707017ee9117d97738ae3f22fc3e1404ea44e6354634ac5da79d7d3173b4ee + languageName: node + linkType: hard + "zod@npm:3.23.8": version: 3.23.8 resolution: "zod@npm:3.23.8" @@ -48501,6 +48979,13 @@ __metadata: languageName: node linkType: hard +"zod@npm:^3.23.8": + version: 3.24.1 + resolution: "zod@npm:3.24.1" + checksum: 10c0/0223d21dbaa15d8928fe0da3b54696391d8e3e1e2d0283a1a070b5980a1dbba945ce631c2d1eccc088fdbad0f2dfa40155590bf83732d3ac4fcca2cc9237591b + languageName: node + linkType: hard + "zrender@npm:5.4.1": version: 5.4.1 resolution: "zrender@npm:5.4.1" From 643cbdb049bdc8d3283f2c37b5140468cdea0894 Mon Sep 17 00:00:00 2001 From: Dei Vilkinsons <6226576+vilkinsons@users.noreply.github.com> Date: Wed, 18 Dec 2024 19:31:53 +0000 Subject: [PATCH 049/159] H-3843: Change Renovate `postUpdateOptions` strategy (#5956) --- .github/renovate.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/renovate.json b/.github/renovate.json index adbd17f69f8..dba6f281246 100644 --- a/.github/renovate.json +++ b/.github/renovate.json @@ -24,7 +24,7 @@ "npm": { "minimumReleaseAge": "3 days" }, - "postUpdateOptions": ["yarnDedupeFewer"], + "postUpdateOptions": ["yarnDedupeHighest"], "rebaseWhen": "conflicted", "semanticCommits": "disabled", "schedule": ["before 4am every weekday", "every weekend"], From 7e52e4a954e699762caa1f99832a86ed8946fb3a Mon Sep 17 00:00:00 2001 From: "hash-worker[bot]" <180894564+hash-worker[bot]@users.noreply.github.com> Date: Wed, 18 Dec 2024 20:27:52 +0000 Subject: [PATCH 050/159] Update `effect` npm packages (#5957) Co-authored-by: hash-worker[bot] <180894564+hash-worker[bot]@users.noreply.github.com> --- .../harpc/client/typescript/package.json | 4 +-- yarn.lock | 34 +++++++++---------- 2 files changed, 19 insertions(+), 19 deletions(-) diff --git a/libs/@local/harpc/client/typescript/package.json b/libs/@local/harpc/client/typescript/package.json index 3a69464c39d..edb820b2606 100644 --- a/libs/@local/harpc/client/typescript/package.json +++ b/libs/@local/harpc/client/typescript/package.json @@ -39,8 +39,8 @@ "uint8arraylist": "2.4.8" }, "devDependencies": { - "@effect/platform": "0.71.4", - "@effect/platform-node": "0.67.0", + "@effect/platform": "0.71.5", + "@effect/platform-node": "0.67.1", "@effect/vitest": "0.14.8", "@local/eslint": "0.0.0-private", "@local/tsconfig": "0.0.0-private", diff --git a/yarn.lock b/yarn.lock index 8a0480dfa99..861f927800e 100644 --- a/yarn.lock +++ b/yarn.lock @@ -5786,43 +5786,43 @@ __metadata: languageName: node linkType: hard -"@effect/platform-node-shared@npm:^0.21.4": - version: 0.21.4 - resolution: "@effect/platform-node-shared@npm:0.21.4" +"@effect/platform-node-shared@npm:^0.21.5": + version: 0.21.5 + resolution: "@effect/platform-node-shared@npm:0.21.5" dependencies: "@parcel/watcher": "npm:^2.4.1" multipasta: "npm:^0.2.5" peerDependencies: - "@effect/platform": ^0.71.4 + "@effect/platform": ^0.71.5 effect: ^3.11.8 - checksum: 10c0/6de4ff3990e2fc94bf3e72df7a798e0b0c84bd5ff8a35fa1ee156a48d16061a18ee6e9038d2a38b5cc2b230e08d5a85d4a90a470f8c65d4326d0d00883fd5eff + checksum: 10c0/e9ff3ce76f936d5a7013e75ad66fada443a7af4837f8c7a8cceaa3d045e0ba138edab3a977be78c745c70261866d88e3ea46f340a74b3e95379b4becb6effa97 languageName: node linkType: hard -"@effect/platform-node@npm:0.67.0": - version: 0.67.0 - resolution: "@effect/platform-node@npm:0.67.0" +"@effect/platform-node@npm:0.67.1": + version: 0.67.1 + resolution: "@effect/platform-node@npm:0.67.1" dependencies: - "@effect/platform-node-shared": "npm:^0.21.4" + "@effect/platform-node-shared": "npm:^0.21.5" mime: "npm:^3.0.0" undici: "npm:^7.1.0" ws: "npm:^8.18.0" peerDependencies: - "@effect/platform": ^0.71.4 + "@effect/platform": ^0.71.5 effect: ^3.11.8 - checksum: 10c0/c4ef87ab809b2ad695ff94a84fbcd07beb7d607bc143dc45ccbefad8567e3c01ce87244b626180bdce5f39d53adfdc8546bbd2655b182b4202250419b43fc42d + checksum: 10c0/8992c06626446727888859d3daea96aef46e9bfb73248280b5dc16d4dbf79de582d5f6367daa715dc7247a4e3b827250922f5482d7f4fac804679851e26d32db languageName: node linkType: hard -"@effect/platform@npm:0.71.4": - version: 0.71.4 - resolution: "@effect/platform@npm:0.71.4" +"@effect/platform@npm:0.71.5": + version: 0.71.5 + resolution: "@effect/platform@npm:0.71.5" dependencies: find-my-way-ts: "npm:^0.1.5" multipasta: "npm:^0.2.5" peerDependencies: effect: ^3.11.8 - checksum: 10c0/eec7e979aa3fc0001e305f4109afc4cd0003c7045eb6fdfc62ab750c289442c4b56f97525a8d636142a0f697cd461cba5aeb71fc57f8cc53ff4c737178dcd631 + checksum: 10c0/f856abc7546acf2d2e692bf7df7b453e3e64694d5315e97ce7d9f64e981dd53328b9b2e4acf81f20975dddafeae87f81a54cb99cff8a803e0107b3c943186834 languageName: node linkType: hard @@ -9328,8 +9328,8 @@ __metadata: dependencies: "@chainsafe/libp2p-noise": "npm:16.0.0" "@chainsafe/libp2p-yamux": "npm:7.0.1" - "@effect/platform": "npm:0.71.4" - "@effect/platform-node": "npm:0.67.0" + "@effect/platform": "npm:0.71.5" + "@effect/platform-node": "npm:0.67.1" "@effect/vitest": "npm:0.14.8" "@libp2p/crypto": "npm:5.0.8" "@libp2p/identify": "npm:3.0.14" From 5e395f771b99fca22d5d6985e5043ddda4c5c7d3 Mon Sep 17 00:00:00 2001 From: "hash-worker[bot]" <180894564+hash-worker[bot]@users.noreply.github.com> Date: Wed, 18 Dec 2024 20:37:40 +0000 Subject: [PATCH 051/159] Update npm package `sanitize-html` to v2.14.0 (#5959) Co-authored-by: hash-worker[bot] <180894564+hash-worker[bot]@users.noreply.github.com> --- apps/hash-ai-worker-ts/package.json | 2 +- yarn.lock | 10 +++++----- 2 files changed, 6 insertions(+), 6 deletions(-) diff --git a/apps/hash-ai-worker-ts/package.json b/apps/hash-ai-worker-ts/package.json index b434f80cef5..ac58a972a78 100644 --- a/apps/hash-ai-worker-ts/package.json +++ b/apps/hash-ai-worker-ts/package.json @@ -88,7 +88,7 @@ "puppeteer": "22.15.0", "puppeteer-extra": "3.3.6", "puppeteer-extra-plugin-stealth": "2.11.2", - "sanitize-html": "2.13.1", + "sanitize-html": "2.14.0", "tsconfig-paths-webpack-plugin": "4.2.0", "tsx": "4.19.2", "typescript": "5.7.2" diff --git a/yarn.lock b/yarn.lock index 861f927800e..131c6046122 100644 --- a/yarn.lock +++ b/yarn.lock @@ -330,7 +330,7 @@ __metadata: puppeteer-extra: "npm:3.3.6" puppeteer-extra-plugin-stealth: "npm:2.11.2" rimraf: "npm:6.0.1" - sanitize-html: "npm:2.13.1" + sanitize-html: "npm:2.14.0" tsconfig-paths-webpack-plugin: "npm:4.2.0" tsx: "npm:4.19.2" typescript: "npm:5.7.2" @@ -42560,9 +42560,9 @@ __metadata: languageName: node linkType: hard -"sanitize-html@npm:2.13.1": - version: 2.13.1 - resolution: "sanitize-html@npm:2.13.1" +"sanitize-html@npm:2.14.0": + version: 2.14.0 + resolution: "sanitize-html@npm:2.14.0" dependencies: deepmerge: "npm:^4.2.2" escape-string-regexp: "npm:^4.0.0" @@ -42570,7 +42570,7 @@ __metadata: is-plain-object: "npm:^5.0.0" parse-srcset: "npm:^1.0.2" postcss: "npm:^8.3.11" - checksum: 10c0/306c811a254e48eb45e9c523fb91cced893d77786323a64fb47f4bb3f1237b4d29e3722c0723c329e6cb6ac674ae903e961d446c3636b9db5961c83b2c0995fe + checksum: 10c0/7e001ab18d09ce5c4d0dbb6837c7a36f132874267e5b724cdef79b21188b55e652a591d79d297f9473aaf80cf96bb1894c3fa1046ccba977ed9aa365d6eb3a5c languageName: node linkType: hard From aba352f9cfac154cb74b25d8fd0ab6a7be96d2c0 Mon Sep 17 00:00:00 2001 From: "hash-worker[bot]" <180894564+hash-worker[bot]@users.noreply.github.com> Date: Wed, 18 Dec 2024 21:06:04 +0000 Subject: [PATCH 052/159] Update npm package `@redocly/cli` to v1.26.1 (#5960) Co-authored-by: hash-worker[bot] <180894564+hash-worker[bot]@users.noreply.github.com> --- .../graph/client/typescript/package.json | 2 +- yarn.lock | 21 +++++++++---------- 2 files changed, 11 insertions(+), 12 deletions(-) diff --git a/libs/@local/graph/client/typescript/package.json b/libs/@local/graph/client/typescript/package.json index a360b657cea..da73c659504 100644 --- a/libs/@local/graph/client/typescript/package.json +++ b/libs/@local/graph/client/typescript/package.json @@ -17,7 +17,7 @@ }, "devDependencies": { "@local/tsconfig": "0.0.0-private", - "@redocly/cli": "1.26.0", + "@redocly/cli": "1.26.1", "@rust/hash-graph-api": "0.0.0-private", "@types/node": "22.10.2", "fix-esm-import-path": "1.10.1", diff --git a/yarn.lock b/yarn.lock index 131c6046122..48553c7f29e 100644 --- a/yarn.lock +++ b/yarn.lock @@ -9409,7 +9409,7 @@ __metadata: dependencies: "@local/tsconfig": "npm:0.0.0-private" "@openapitools/openapi-generator-cli": "npm:2.15.3" - "@redocly/cli": "npm:1.26.0" + "@redocly/cli": "npm:1.26.1" "@rust/hash-graph-api": "npm:0.0.0-private" "@types/node": "npm:22.10.2" axios: "npm:1.7.9" @@ -12887,11 +12887,11 @@ __metadata: languageName: node linkType: hard -"@redocly/cli@npm:1.26.0": - version: 1.26.0 - resolution: "@redocly/cli@npm:1.26.0" +"@redocly/cli@npm:1.26.1": + version: 1.26.1 + resolution: "@redocly/cli@npm:1.26.1" dependencies: - "@redocly/openapi-core": "npm:1.26.0" + "@redocly/openapi-core": "npm:1.26.1" abort-controller: "npm:^3.0.0" chokidar: "npm:^3.5.1" colorette: "npm:^1.2.0" @@ -12913,7 +12913,7 @@ __metadata: bin: openapi: bin/cli.js redocly: bin/cli.js - checksum: 10c0/bb1d26459414a5166fec14c4788ff1074a01f604ed4f411baada362070bb8627004506c9864dc32b8ed35cba3bc68e7662ab4acd45a8e0aa70ca0318e0152587 + checksum: 10c0/3a5f6bc1d414e2c327bc9e2f320c7a3fff91dad8530c6428fce94a62f3703ca5a05521567422e48897151d19ab64d8ae049213b5d4cd8dabc0a073b6969f3991 languageName: node linkType: hard @@ -12924,9 +12924,9 @@ __metadata: languageName: node linkType: hard -"@redocly/openapi-core@npm:1.26.0, @redocly/openapi-core@npm:^1.4.0": - version: 1.26.0 - resolution: "@redocly/openapi-core@npm:1.26.0" +"@redocly/openapi-core@npm:1.26.1, @redocly/openapi-core@npm:^1.4.0": + version: 1.26.1 + resolution: "@redocly/openapi-core@npm:1.26.1" dependencies: "@redocly/ajv": "npm:^8.11.2" "@redocly/config": "npm:^0.17.0" @@ -12934,12 +12934,11 @@ __metadata: https-proxy-agent: "npm:^7.0.4" js-levenshtein: "npm:^1.1.6" js-yaml: "npm:^4.1.0" - lodash.isequal: "npm:^4.5.0" minimatch: "npm:^5.0.1" node-fetch: "npm:^2.6.1" pluralize: "npm:^8.0.0" yaml-ast-parser: "npm:0.0.43" - checksum: 10c0/d55989a3d2b343c5f5792c704f0e7b2030d739be65f80fb7ff4625f6cb189bb646003180ea605940014c5c77f9954c21cc36d371fa510775c25fbd5534311b0e + checksum: 10c0/191ea9c971c758843a428f8f46f282c4a797120d93e4a8de89cd6622e709b8c5daf26f2f9c51f96e66f94a2ccc677e2fc7c48f57be3447a18dd7b59753fb9cd4 languageName: node linkType: hard From bc2508b8dbf5f91a1a9d89c572bf110ebbad2164 Mon Sep 17 00:00:00 2001 From: "hash-worker[bot]" <180894564+hash-worker[bot]@users.noreply.github.com> Date: Wed, 18 Dec 2024 21:10:30 +0000 Subject: [PATCH 053/159] Update npm package `katex` to v0.16.18 (#5961) Co-authored-by: hash-worker[bot] <180894564+hash-worker[bot]@users.noreply.github.com> --- apps/hashdotdev/package.json | 2 +- yarn.lock | 10 +++++----- 2 files changed, 6 insertions(+), 6 deletions(-) diff --git a/apps/hashdotdev/package.json b/apps/hashdotdev/package.json index be466f93d36..9e12192902f 100644 --- a/apps/hashdotdev/package.json +++ b/apps/hashdotdev/package.json @@ -40,7 +40,7 @@ "gray-matter": "4.0.3", "html-to-text": "9.0.5", "image-size": "1.1.1", - "katex": "0.16.17", + "katex": "0.16.18", "md5": "2.3.0", "mock-block-dock": "0.0.21", "next": "13.5.5", diff --git a/yarn.lock b/yarn.lock index 48553c7f29e..dc9a716d837 100644 --- a/yarn.lock +++ b/yarn.lock @@ -759,7 +759,7 @@ __metadata: gray-matter: "npm:4.0.3" html-to-text: "npm:9.0.5" image-size: "npm:1.1.1" - katex: "npm:0.16.17" + katex: "npm:0.16.18" md5: "npm:2.3.0" mock-block-dock: "npm:0.0.21" next: "npm:13.5.5" @@ -33107,14 +33107,14 @@ __metadata: languageName: node linkType: hard -"katex@npm:0.16.17": - version: 0.16.17 - resolution: "katex@npm:0.16.17" +"katex@npm:0.16.18": + version: 0.16.18 + resolution: "katex@npm:0.16.18" dependencies: commander: "npm:^8.3.0" bin: katex: cli.js - checksum: 10c0/2f5025ae6051b000f78000de8578d6f641755270ba948f3a39892bb0beb502e0a7e716837c3b1402abd695b22b52958ccf8c33de82b16b68649ebe1b3dcb03b2 + checksum: 10c0/f80844710ae28d435395df522cf2439ce1be240cb5e7196e569e16459f705c232cd1335ff96bb6a76a3a87962ddebeb7e212e25271f11ad8f80a30dec575ba53 languageName: node linkType: hard From 73995e9065862264dc57922789b4698046923697 Mon Sep 17 00:00:00 2001 From: "hash-worker[bot]" <180894564+hash-worker[bot]@users.noreply.github.com> Date: Wed, 18 Dec 2024 21:20:30 +0000 Subject: [PATCH 054/159] Update aws-sdk-js-v3 monorepo to v3.715.0 (#5962) Co-authored-by: hash-worker[bot] <180894564+hash-worker[bot]@users.noreply.github.com> --- apps/hash-api/package.json | 6 +-- libs/@local/hash-backend-utils/package.json | 4 +- yarn.lock | 46 ++++++++++----------- 3 files changed, 28 insertions(+), 28 deletions(-) diff --git a/apps/hash-api/package.json b/apps/hash-api/package.json index 1a68637f776..58afaaf3521 100644 --- a/apps/hash-api/package.json +++ b/apps/hash-api/package.json @@ -24,11 +24,11 @@ }, "dependencies": { "@apps/hash-graph": "0.0.0-private", - "@aws-sdk/client-s3": "3.714.0", + "@aws-sdk/client-s3": "3.715.0", "@aws-sdk/client-ses": "3.714.0", "@aws-sdk/credential-provider-node": "3.714.0", - "@aws-sdk/s3-presigned-post": "3.714.0", - "@aws-sdk/s3-request-presigner": "3.714.0", + "@aws-sdk/s3-presigned-post": "3.715.0", + "@aws-sdk/s3-request-presigner": "3.715.0", "@blockprotocol/core": "0.1.3", "@blockprotocol/type-system": "0.1.2-canary.0", "@graphql-tools/schema": "8.5.1", diff --git a/libs/@local/hash-backend-utils/package.json b/libs/@local/hash-backend-utils/package.json index 15cee44d377..7d44a88a002 100644 --- a/libs/@local/hash-backend-utils/package.json +++ b/libs/@local/hash-backend-utils/package.json @@ -23,8 +23,8 @@ "test:unit": "vitest --run" }, "dependencies": { - "@aws-sdk/client-s3": "3.714.0", - "@aws-sdk/s3-request-presigner": "3.714.0", + "@aws-sdk/client-s3": "3.715.0", + "@aws-sdk/s3-request-presigner": "3.715.0", "@blockprotocol/core": "0.1.3", "@blockprotocol/graph": "0.4.0-canary.0", "@blockprotocol/type-system": "0.1.2-canary.0", diff --git a/yarn.lock b/yarn.lock index dc9a716d837..3eba35eaf5e 100644 --- a/yarn.lock +++ b/yarn.lock @@ -345,11 +345,11 @@ __metadata: resolution: "@apps/hash-api@workspace:apps/hash-api" dependencies: "@apps/hash-graph": "npm:0.0.0-private" - "@aws-sdk/client-s3": "npm:3.714.0" + "@aws-sdk/client-s3": "npm:3.715.0" "@aws-sdk/client-ses": "npm:3.714.0" "@aws-sdk/credential-provider-node": "npm:3.714.0" - "@aws-sdk/s3-presigned-post": "npm:3.714.0" - "@aws-sdk/s3-request-presigner": "npm:3.714.0" + "@aws-sdk/s3-presigned-post": "npm:3.715.0" + "@aws-sdk/s3-request-presigner": "npm:3.715.0" "@blockprotocol/core": "npm:0.1.3" "@blockprotocol/graph": "npm:0.4.0-canary.0" "@blockprotocol/type-system": "npm:0.1.2-canary.0" @@ -1269,9 +1269,9 @@ __metadata: languageName: node linkType: hard -"@aws-sdk/client-s3@npm:3.714.0": - version: 3.714.0 - resolution: "@aws-sdk/client-s3@npm:3.714.0" +"@aws-sdk/client-s3@npm:3.715.0": + version: 3.715.0 + resolution: "@aws-sdk/client-s3@npm:3.715.0" dependencies: "@aws-crypto/sha1-browser": "npm:5.2.0" "@aws-crypto/sha256-browser": "npm:5.2.0" @@ -1282,7 +1282,7 @@ __metadata: "@aws-sdk/credential-provider-node": "npm:3.714.0" "@aws-sdk/middleware-bucket-endpoint": "npm:3.714.0" "@aws-sdk/middleware-expect-continue": "npm:3.714.0" - "@aws-sdk/middleware-flexible-checksums": "npm:3.714.0" + "@aws-sdk/middleware-flexible-checksums": "npm:3.715.0" "@aws-sdk/middleware-host-header": "npm:3.714.0" "@aws-sdk/middleware-location-constraint": "npm:3.714.0" "@aws-sdk/middleware-logger": "npm:3.714.0" @@ -1331,7 +1331,7 @@ __metadata: "@smithy/util-utf8": "npm:^3.0.0" "@smithy/util-waiter": "npm:^3.2.0" tslib: "npm:^2.6.2" - checksum: 10c0/620fe3530f5eb5571e61ac83fdc141e46296057d6d2df073036f040353cb6c3db091dc50d9fd86dcec568039e9ea77b545f036660f7590c63f75899af710c4ba + checksum: 10c0/4c73662a308e893271019fcc90a4505f319ab61f5d36dca6d71d00f215f151dfea703f9f106259a2b705d567fa941e71dd72ab985c596bb453751b85561210e9 languageName: node linkType: hard @@ -2062,9 +2062,9 @@ __metadata: languageName: node linkType: hard -"@aws-sdk/middleware-flexible-checksums@npm:3.714.0": - version: 3.714.0 - resolution: "@aws-sdk/middleware-flexible-checksums@npm:3.714.0" +"@aws-sdk/middleware-flexible-checksums@npm:3.715.0": + version: 3.715.0 + resolution: "@aws-sdk/middleware-flexible-checksums@npm:3.715.0" dependencies: "@aws-crypto/crc32": "npm:5.2.0" "@aws-crypto/crc32c": "npm:5.2.0" @@ -2079,7 +2079,7 @@ __metadata: "@smithy/util-stream": "npm:^3.3.2" "@smithy/util-utf8": "npm:^3.0.0" tslib: "npm:^2.6.2" - checksum: 10c0/1450c46745f0e5ef08f52c85c19aeb95a6eed480634d768cf74c6116597d54d46f8fd750cf287cff85694b283d49b1393939f85b7ee74617ae0216d5ccdf6c6c + checksum: 10c0/a2c858da834171794abce56ef3e0693c00e4312d1c63c064339793cf7f3620de4fee7dfcc10f76d00ef158c7d0bd1a6204b80a17ec271de25ecd31877515cb11 languageName: node linkType: hard @@ -2265,11 +2265,11 @@ __metadata: languageName: node linkType: hard -"@aws-sdk/s3-presigned-post@npm:3.714.0": - version: 3.714.0 - resolution: "@aws-sdk/s3-presigned-post@npm:3.714.0" +"@aws-sdk/s3-presigned-post@npm:3.715.0": + version: 3.715.0 + resolution: "@aws-sdk/s3-presigned-post@npm:3.715.0" dependencies: - "@aws-sdk/client-s3": "npm:3.714.0" + "@aws-sdk/client-s3": "npm:3.715.0" "@aws-sdk/types": "npm:3.714.0" "@aws-sdk/util-format-url": "npm:3.714.0" "@smithy/middleware-endpoint": "npm:^3.2.5" @@ -2278,13 +2278,13 @@ __metadata: "@smithy/util-hex-encoding": "npm:^3.0.0" "@smithy/util-utf8": "npm:^3.0.0" tslib: "npm:^2.6.2" - checksum: 10c0/ff4ccd6771257eb8fe886494127363603579e95c44fc41ae7358f3d7b0e1a3c67c0fd570ed0b1f8fdf9dc2c93caba1a2f5f188397c6eb6a2c76beb5a67d2443b + checksum: 10c0/79526ef31aa5a7b2afdbb76a72974c22c4bcc20c028b240cec35aa8be2114b0b072aaaddfb503eb6fc16e2d3acaa2c188b921c6aa5b81250e438cd1ba7f2bdb4 languageName: node linkType: hard -"@aws-sdk/s3-request-presigner@npm:3.714.0": - version: 3.714.0 - resolution: "@aws-sdk/s3-request-presigner@npm:3.714.0" +"@aws-sdk/s3-request-presigner@npm:3.715.0": + version: 3.715.0 + resolution: "@aws-sdk/s3-request-presigner@npm:3.715.0" dependencies: "@aws-sdk/signature-v4-multi-region": "npm:3.714.0" "@aws-sdk/types": "npm:3.714.0" @@ -2294,7 +2294,7 @@ __metadata: "@smithy/smithy-client": "npm:^3.5.0" "@smithy/types": "npm:^3.7.2" tslib: "npm:^2.6.2" - checksum: 10c0/354fdda0a89abb8aa55ed68a742ff4ddde2c8894763fe8895b91637f157c4361a5aca9c0970a770a276eb74c426dcaaf3408b4a995f5c6b07b4adfce804449f2 + checksum: 10c0/48c3d8b226e25ad802d7389ba6ad17f1d4b2aa5e033d39ec2e3dc6c7fb81cb7b89c2546270c6418ea51abb57b9cd42e31aeedc23ccf535f6ca620042cad9ce75 languageName: node linkType: hard @@ -9359,8 +9359,8 @@ __metadata: version: 0.0.0-use.local resolution: "@local/hash-backend-utils@workspace:libs/@local/hash-backend-utils" dependencies: - "@aws-sdk/client-s3": "npm:3.714.0" - "@aws-sdk/s3-request-presigner": "npm:3.714.0" + "@aws-sdk/client-s3": "npm:3.715.0" + "@aws-sdk/s3-request-presigner": "npm:3.715.0" "@blockprotocol/core": "npm:0.1.3" "@blockprotocol/graph": "npm:0.4.0-canary.0" "@blockprotocol/type-system": "npm:0.1.2-canary.0" From ff7024bb6c15792fb77b9c33b682e4a934a981f0 Mon Sep 17 00:00:00 2001 From: "hash-worker[bot]" <180894564+hash-worker[bot]@users.noreply.github.com> Date: Wed, 18 Dec 2024 22:32:27 +0000 Subject: [PATCH 055/159] Update GitHub Action `codecov/codecov-action` to v5.1.2 (#5964) Co-authored-by: hash-worker[bot] <180894564+hash-worker[bot]@users.noreply.github.com> --- .github/workflows/test.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index da857461910..56447127ed1 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -191,7 +191,7 @@ jobs: - name: Show disk usage run: df -h - - uses: codecov/codecov-action@7f8b4b4bde536c465e797be725718b88c5d95e0e # v5.1.1 + - uses: codecov/codecov-action@1e68e06f1dbfde0e4cefc87efeba9e4643565303 # v5.1.2 name: Upload coverage to https://app.codecov.io/gh/hashintel/hash with: flags: ${{ env.TRIMMED_PACKAGE_NAME }} @@ -367,7 +367,7 @@ jobs: - name: Show disk usage run: df -h - - uses: codecov/codecov-action@7f8b4b4bde536c465e797be725718b88c5d95e0e # v5.1.1 + - uses: codecov/codecov-action@1e68e06f1dbfde0e4cefc87efeba9e4643565303 # v5.1.2 name: Upload coverage to https://app.codecov.io/gh/hashintel/hash with: flags: ${{ env.TRIMMED_PACKAGE_NAME }} From e074bad3f8d2c8de103827336e95f9e5e7d5fd1a Mon Sep 17 00:00:00 2001 From: "hash-worker[bot]" <180894564+hash-worker[bot]@users.noreply.github.com> Date: Wed, 18 Dec 2024 22:39:04 +0000 Subject: [PATCH 056/159] Update Rust crate `deadpool-postgres` to v0.14.1 (#5965) Co-authored-by: hash-worker[bot] <180894564+hash-worker[bot]@users.noreply.github.com> --- Cargo.lock | 4 ++-- Cargo.toml | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index 5d6d95fe300..33d3162a453 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -1602,9 +1602,9 @@ dependencies = [ [[package]] name = "deadpool-postgres" -version = "0.14.0" +version = "0.14.1" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "1ab8a4ea925ce79678034870834602a2980f4b88c09e97feb266496dbb4493d2" +checksum = "3d697d376cbfa018c23eb4caab1fd1883dd9c906a8c034e8d9a3cb06a7e0bef9" dependencies = [ "async-trait", "deadpool", diff --git a/Cargo.toml b/Cargo.toml index 0a9d925fed3..023856f9dbf 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -98,7 +98,7 @@ bytes = { version = "1.9.0" } clap_builder = { version = "=4.5.23", default-features = false, features = ["std"] } criterion = { version = "=0.5.1" } deadpool = { version = "=0.12.1", default-features = false } -deadpool-postgres = { version = "=0.14.0", default-features = false } +deadpool-postgres = { version = "=0.14.1", default-features = false } ecow = { version = "=0.2.3", default-features = false } email_address = { version = "=0.2.9", default-features = false } enumflags2 = { version = "=0.7.10", default-features = false } From 4d19674042a4780ae753a51d9a4bc245f3774d12 Mon Sep 17 00:00:00 2001 From: "hash-worker[bot]" <180894564+hash-worker[bot]@users.noreply.github.com> Date: Wed, 18 Dec 2024 22:40:20 +0000 Subject: [PATCH 057/159] Update GitHub Action `actions/upload-artifact` to 6f51ac0 (#5963) Co-authored-by: hash-worker[bot] <180894564+hash-worker[bot]@users.noreply.github.com> --- .github/workflows/renovate.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/renovate.yml b/.github/workflows/renovate.yml index 0511e644dd6..4f9ec7c8323 100644 --- a/.github/workflows/renovate.yml +++ b/.github/workflows/renovate.yml @@ -124,7 +124,7 @@ jobs: - name: Compress renovate cache run: tar -czvf $cache_archive -C $cache_dir . - - uses: actions/upload-artifact@b4b15b8c7c6ac21ea08fcf65892d2ee8f75cf882 # v4 + - uses: actions/upload-artifact@6f51ac03b9356f520e9adb1b1b7802705f340c2b # v4 if: env.dry_run == 'disabled' && github.event.inputs.repoCache != 'disabled' with: name: ${{ env.cache_key }} From c268fa91b1660ea435b960b9da91146a5d963b46 Mon Sep 17 00:00:00 2001 From: "hash-worker[bot]" <180894564+hash-worker[bot]@users.noreply.github.com> Date: Wed, 18 Dec 2024 23:29:57 +0000 Subject: [PATCH 058/159] Update aws-sdk-rust monorepo (#5966) Co-authored-by: hash-worker[bot] <180894564+hash-worker[bot]@users.noreply.github.com> --- Cargo.lock | 55 +++++++++++++++++++++++------------------------------- Cargo.toml | 4 ++-- 2 files changed, 25 insertions(+), 34 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index 33d3162a453..2d5bc47c6ba 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -422,9 +422,9 @@ dependencies = [ [[package]] name = "aws-config" -version = "1.5.10" +version = "1.5.11" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "9b49afaa341e8dd8577e1a2200468f98956d6eda50bcf4a53246cc00174ba924" +checksum = "a5d1c2c88936a73c699225d0bc00684a534166b0cebc2659c3cdf08de8edc64c" dependencies = [ "aws-credential-types", "aws-runtime", @@ -433,7 +433,7 @@ dependencies = [ "aws-sdk-sts", "aws-smithy-async", "aws-smithy-http", - "aws-smithy-json 0.60.7", + "aws-smithy-json", "aws-smithy-runtime", "aws-smithy-runtime-api", "aws-smithy-types", @@ -464,9 +464,9 @@ dependencies = [ [[package]] name = "aws-runtime" -version = "1.4.4" +version = "1.5.1" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "b5ac934720fbb46206292d2c75b57e67acfc56fe7dfd34fb9a02334af08409ea" +checksum = "300a12520b4e6d08b73f77680f12c16e8ae43250d55100e0b2be46d78da16a48" dependencies = [ "aws-credential-types", "aws-sigv4", @@ -490,9 +490,9 @@ dependencies = [ [[package]] name = "aws-sdk-s3" -version = "1.65.0" +version = "1.66.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "d3ba2c5c0f2618937ce3d4a5ad574b86775576fa24006bcb3128c6e2cbf3c34e" +checksum = "154488d16ab0d627d15ab2832b57e68a16684c8c902f14cb8a75ec933fc94852" dependencies = [ "aws-credential-types", "aws-runtime", @@ -501,7 +501,7 @@ dependencies = [ "aws-smithy-checksums", "aws-smithy-eventstream", "aws-smithy-http", - "aws-smithy-json 0.61.1", + "aws-smithy-json", "aws-smithy-runtime", "aws-smithy-runtime-api", "aws-smithy-types", @@ -524,15 +524,15 @@ dependencies = [ [[package]] name = "aws-sdk-sso" -version = "1.49.0" +version = "1.51.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "09677244a9da92172c8dc60109b4a9658597d4d298b188dd0018b6a66b410ca4" +checksum = "74995133da38f109a0eb8e8c886f9e80c713b6e9f2e6e5a6a1ba4450ce2ffc46" dependencies = [ "aws-credential-types", "aws-runtime", "aws-smithy-async", "aws-smithy-http", - "aws-smithy-json 0.60.7", + "aws-smithy-json", "aws-smithy-runtime", "aws-smithy-runtime-api", "aws-smithy-types", @@ -546,15 +546,15 @@ dependencies = [ [[package]] name = "aws-sdk-ssooidc" -version = "1.50.0" +version = "1.52.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "81fea2f3a8bb3bd10932ae7ad59cc59f65f270fc9183a7e91f501dc5efbef7ee" +checksum = "e7062a779685cbf3b2401eb36151e2c6589fd5f3569b8a6bc2d199e5aaa1d059" dependencies = [ "aws-credential-types", "aws-runtime", "aws-smithy-async", "aws-smithy-http", - "aws-smithy-json 0.60.7", + "aws-smithy-json", "aws-smithy-runtime", "aws-smithy-runtime-api", "aws-smithy-types", @@ -568,15 +568,15 @@ dependencies = [ [[package]] name = "aws-sdk-sts" -version = "1.49.0" +version = "1.52.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "53dcf5e7d9bd1517b8b998e170e650047cea8a2b85fe1835abe3210713e541b7" +checksum = "299dae7b1dc0ee50434453fa5a229dc4b22bd3ee50409ff16becf1f7346e0193" dependencies = [ "aws-credential-types", "aws-runtime", "aws-smithy-async", "aws-smithy-http", - "aws-smithy-json 0.60.7", + "aws-smithy-json", "aws-smithy-query", "aws-smithy-runtime", "aws-smithy-runtime-api", @@ -615,9 +615,9 @@ dependencies = [ [[package]] name = "aws-smithy-async" -version = "1.2.1" +version = "1.2.2" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "62220bc6e97f946ddd51b5f1361f78996e704677afc518a4ff66b7a72ea1378c" +checksum = "8aa8ff1492fd9fb99ae28e8467af0dbbb7c31512b16fabf1a0f10d7bb6ef78bb" dependencies = [ "futures-util", "pin-project-lite", @@ -677,15 +677,6 @@ dependencies = [ "tracing", ] -[[package]] -name = "aws-smithy-json" -version = "0.60.7" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "4683df9469ef09468dad3473d129960119a0d3593617542b7d52086c8486f2d6" -dependencies = [ - "aws-smithy-types", -] - [[package]] name = "aws-smithy-json" version = "0.61.1" @@ -707,9 +698,9 @@ dependencies = [ [[package]] name = "aws-smithy-runtime" -version = "1.7.4" +version = "1.7.5" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "9f20685047ca9d6f17b994a07f629c813f08b5bce65523e47124879e60103d45" +checksum = "431a10d0e07e09091284ef04453dae4069283aa108d209974d67e77ae1caa658" dependencies = [ "aws-smithy-async", "aws-smithy-http", @@ -751,9 +742,9 @@ dependencies = [ [[package]] name = "aws-smithy-types" -version = "1.2.9" +version = "1.2.10" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "4fbd94a32b3a7d55d3806fe27d98d3ad393050439dd05eb53ece36ec5e3d3510" +checksum = "8ecbf4d5dfb169812e2b240a4350f15ad3c6b03a54074e5712818801615f2dc5" dependencies = [ "base64-simd", "bytes", diff --git a/Cargo.toml b/Cargo.toml index 023856f9dbf..c14b548cebb 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -155,8 +155,8 @@ anstyle-yansi = { version = "=2.0.2", default-features = false } approx = { version = "=0.5.1", default-features = false } async-scoped = { version = "=0.9.0", default-features = false } async-trait = { version = "=0.1.83", default-features = false } -aws-config = { version = "=1.5.10" } -aws-sdk-s3 = { version = "=1.65.0", default-features = false } +aws-config = { version = "=1.5.11" } +aws-sdk-s3 = { version = "=1.66.0", default-features = false } bitvec = { version = "=1.0.1", default-features = false } bytes-utils = { version = "=0.1.4", default-features = false } clap = { version = "=4.5.23", features = ["color", "error-context", "help", "std", "suggestions", "usage"] } From 7b278333c29b2aa7e377a92b1ab1c995b1b7558a Mon Sep 17 00:00:00 2001 From: "hash-worker[bot]" <180894564+hash-worker[bot]@users.noreply.github.com> Date: Thu, 19 Dec 2024 00:26:34 +0000 Subject: [PATCH 059/159] Update GitHub Action `taiki-e/install-action` to v2.46.15 (#5967) Co-authored-by: hash-worker[bot] <180894564+hash-worker[bot]@users.noreply.github.com> --- .github/actions/warm-up-repo/action.yml | 2 +- .github/workflows/bench.yml | 4 ++-- .github/workflows/lint.yml | 2 +- .github/workflows/test.yml | 4 ++-- 4 files changed, 6 insertions(+), 6 deletions(-) diff --git a/.github/actions/warm-up-repo/action.yml b/.github/actions/warm-up-repo/action.yml index 72f3bd8aea4..e6bfe0fc1ac 100644 --- a/.github/actions/warm-up-repo/action.yml +++ b/.github/actions/warm-up-repo/action.yml @@ -17,7 +17,7 @@ runs: # cache: yarn ## Currently disabled because of frequent timeouts - name: Install WASM tools - uses: taiki-e/install-action@120c8997a0a81ef0701bb1f7166e7080143a96d5 # v2.46.12 + uses: taiki-e/install-action@2c3c8dfabf5933531aca0613c6b0c173fa51745e # v2.46.15 with: tool: wasm-pack@0.12.1 diff --git a/.github/workflows/bench.yml b/.github/workflows/bench.yml index d9fe31ff926..483d150aeec 100644 --- a/.github/workflows/bench.yml +++ b/.github/workflows/bench.yml @@ -99,7 +99,7 @@ jobs: - name: Install Rust tools if: steps.benches.outputs.has-rust == 'true' - uses: taiki-e/install-action@120c8997a0a81ef0701bb1f7166e7080143a96d5 # v2.46.12 + uses: taiki-e/install-action@2c3c8dfabf5933531aca0613c6b0c173fa51745e # v2.46.15 with: tool: just@1.34.0,critcmp@0.1.8 @@ -251,7 +251,7 @@ jobs: - name: Install Rust tools if: steps.benches.outputs.has-rust == 'true' - uses: taiki-e/install-action@120c8997a0a81ef0701bb1f7166e7080143a96d5 # v2.46.12 + uses: taiki-e/install-action@2c3c8dfabf5933531aca0613c6b0c173fa51745e # v2.46.15 with: tool: just@1.34.0,critcmp@0.1.8 diff --git a/.github/workflows/lint.yml b/.github/workflows/lint.yml index a1bea43d5c8..d82a9de93bb 100644 --- a/.github/workflows/lint.yml +++ b/.github/workflows/lint.yml @@ -111,7 +111,7 @@ jobs: - name: Install Rust tools if: always() && steps.lints.outputs.has-rust == 'true' - uses: taiki-e/install-action@120c8997a0a81ef0701bb1f7166e7080143a96d5 # v2.46.12 + uses: taiki-e/install-action@2c3c8dfabf5933531aca0613c6b0c173fa51745e # v2.46.15 with: tool: just@1.34.0,cargo-hack@0.6.30,clippy-sarif@0.6.5,sarif-fmt@0.6.5 diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index 56447127ed1..301659c94bd 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -163,7 +163,7 @@ jobs: - name: Install Rust tools if: always() && steps.tests.outputs.has-rust == 'true' - uses: taiki-e/install-action@120c8997a0a81ef0701bb1f7166e7080143a96d5 # v2.46.12 + uses: taiki-e/install-action@2c3c8dfabf5933531aca0613c6b0c173fa51745e # v2.46.15 with: tool: just@1.34.0,cargo-hack@0.6.30,cargo-nextest@0.9.72,cargo-llvm-cov@0.6.11 @@ -281,7 +281,7 @@ jobs: - name: Install Rust tools if: steps.tests.outputs.has-rust == 'true' - uses: taiki-e/install-action@120c8997a0a81ef0701bb1f7166e7080143a96d5 # v2.46.12 + uses: taiki-e/install-action@2c3c8dfabf5933531aca0613c6b0c173fa51745e # v2.46.15 with: tool: just@1.34.0,cargo-hack@0.6.30,cargo-nextest@0.9.72,cargo-llvm-cov@0.6.11 From cbc7f8559fe74c6ad709ac623b8b62917009e7fd Mon Sep 17 00:00:00 2001 From: "hash-worker[bot]" <180894564+hash-worker[bot]@users.noreply.github.com> Date: Thu, 19 Dec 2024 00:54:04 +0000 Subject: [PATCH 060/159] Update GitHub Action `returntocorp/semgrep` to v1.101.0 (#5968) Co-authored-by: hash-worker[bot] <180894564+hash-worker[bot]@users.noreply.github.com> --- .github/workflows/semgrep.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/semgrep.yml b/.github/workflows/semgrep.yml index 87c9a986b88..8fa4b7561b8 100644 --- a/.github/workflows/semgrep.yml +++ b/.github/workflows/semgrep.yml @@ -22,7 +22,7 @@ jobs: runs-on: ubuntu-latest container: - image: returntocorp/semgrep:1.100.0@sha256:7acf76eaa621465588fdfcc84f46fd7ea1e8337ebb1aa1ed6f4685f6eedaec25 + image: returntocorp/semgrep:1.101.0@sha256:a2917a82fec40f4d165fd701abb3937677b900105f3e909861fa03844a8e00db # Skip any PR created by Dependabot to avoid permission issues: if: (github.actor != 'dependabot[bot]') From ba2ff212904a9510142bc0815bee0071733e0cf5 Mon Sep 17 00:00:00 2001 From: "hash-worker[bot]" <180894564+hash-worker[bot]@users.noreply.github.com> Date: Thu, 19 Dec 2024 01:29:01 +0000 Subject: [PATCH 061/159] Update npm package `@types/react-is` to v19 (#5971) Co-authored-by: hash-worker[bot] <180894564+hash-worker[bot]@users.noreply.github.com> --- blocks/chart/package.json | 2 +- yarn.lock | 12 ++++++------ 2 files changed, 7 insertions(+), 7 deletions(-) diff --git a/blocks/chart/package.json b/blocks/chart/package.json index 268f93f8ae0..7d6a1981368 100644 --- a/blocks/chart/package.json +++ b/blocks/chart/package.json @@ -43,7 +43,7 @@ "@local/tsconfig": "0.0.0-private", "@types/lodash.debounce": "4.0.9", "@types/react-dom": "18.3.5", - "@types/react-is": "18.3.1", + "@types/react-is": "19.0.0", "block-scripts": "0.3.4", "eslint": "9.17.0", "mock-block-dock": "0.1.9", diff --git a/yarn.lock b/yarn.lock index 3eba35eaf5e..3efdfd01981 100644 --- a/yarn.lock +++ b/yarn.lock @@ -4781,7 +4781,7 @@ __metadata: "@mui/material": "npm:5.16.11" "@types/lodash.debounce": "npm:4.0.9" "@types/react-dom": "npm:18.3.5" - "@types/react-is": "npm:18.3.1" + "@types/react-is": "npm:19.0.0" block-scripts: "npm:0.3.4" echarts: "npm:5.5.1" eslint: "npm:9.17.0" @@ -18484,12 +18484,12 @@ __metadata: languageName: node linkType: hard -"@types/react-is@npm:18.3.1": - version: 18.3.1 - resolution: "@types/react-is@npm:18.3.1" +"@types/react-is@npm:19.0.0": + version: 19.0.0 + resolution: "@types/react-is@npm:19.0.0" dependencies: - "@types/react": "npm:^18" - checksum: 10c0/c2a13c940c8dabc5fe38554f0b78560411a0618cc9b733c06d884b35f631b5c89eb88a016593df3b5bfd923517a337fd4a2f32598094f8924ac8e22b5f874c99 + "@types/react": "npm:*" + checksum: 10c0/d5fa0294f95cf301540f3e28fb44c00524c74a7de3ef9757703d76067206f3ecc002da6486e1581f23b54173b6449db8631acc3088009116e4569ff216df3ecc languageName: node linkType: hard From dcd4ce241b0815a3d3f08a86399a8511b77c5ad0 Mon Sep 17 00:00:00 2001 From: "hash-worker[bot]" <180894564+hash-worker[bot]@users.noreply.github.com> Date: Thu, 19 Dec 2024 01:37:23 +0000 Subject: [PATCH 062/159] Update GitHub Action `actions/upload-artifact` to v4.5.0 (#5969) Co-authored-by: hash-worker[bot] <180894564+hash-worker[bot]@users.noreply.github.com> --- .github/workflows/bench.yml | 4 ++-- .github/workflows/test.yml | 4 ++-- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/.github/workflows/bench.yml b/.github/workflows/bench.yml index 483d150aeec..ee8387310e6 100644 --- a/.github/workflows/bench.yml +++ b/.github/workflows/bench.yml @@ -201,7 +201,7 @@ jobs: - name: Upload benchmark summary if: steps.benches.outputs.create-baseline == 'true' - uses: actions/upload-artifact@b4b15b8c7c6ac21ea08fcf65892d2ee8f75cf882 # v4.4.3 + uses: actions/upload-artifact@6f51ac03b9356f520e9adb1b1b7802705f340c2b # v4.5.0 with: name: ${{ env.TRIMMED_PACKAGE_NAME }}_${{ github.job }} path: /tmp/${{ env.TRIMMED_PACKAGE_NAME }}.md @@ -379,7 +379,7 @@ jobs: - name: Upload benchmark summary if: steps.benches.outputs.create-baseline == 'true' - uses: actions/upload-artifact@b4b15b8c7c6ac21ea08fcf65892d2ee8f75cf882 # v4.4.3 + uses: actions/upload-artifact@6f51ac03b9356f520e9adb1b1b7802705f340c2b # v4.5.0 with: name: ${{ env.TRIMMED_PACKAGE_NAME }}_${{ github.job }} path: /tmp/${{ env.TRIMMED_PACKAGE_NAME }}.md diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index 301659c94bd..bda975ae472 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -385,13 +385,13 @@ jobs: - name: Upload artifact playwright-report if: matrix.package == '@tests/hash-playwright' && success() || failure() - uses: actions/upload-artifact@b4b15b8c7c6ac21ea08fcf65892d2ee8f75cf882 # v4.4.3 + uses: actions/upload-artifact@6f51ac03b9356f520e9adb1b1b7802705f340c2b # v4.5.0 with: name: ${{ env.TRIMMED_PACKAGE_NAME }}-report path: tests/hash-playwright/playwright-report - name: Upload logs - uses: actions/upload-artifact@b4b15b8c7c6ac21ea08fcf65892d2ee8f75cf882 # v4.4.3 + uses: actions/upload-artifact@6f51ac03b9356f520e9adb1b1b7802705f340c2b # v4.5.0 if: success() || failure() with: name: ${{ env.TRIMMED_PACKAGE_NAME }}-logs From 455572d7c3ade604e0bea8ed7bf6873471b09d5d Mon Sep 17 00:00:00 2001 From: Ciaran Morinan <37743469+CiaranMn@users.noreply.github.com> Date: Thu, 19 Dec 2024 09:35:00 +0000 Subject: [PATCH 063/159] H-3845: Fix Docker set up for Yarn 4 + Node 22 (#5973) --- .env | 17 ++++++++++++----- apps/hash-ai-worker-ts/docker/Dockerfile | 13 ++++++++++--- apps/hash-integration-worker/docker/Dockerfile | 13 ++++++++++--- infra/docker/api/prod/Dockerfile | 13 ++++++++++--- 4 files changed, 42 insertions(+), 14 deletions(-) diff --git a/.env b/.env index c8c770b5c88..c709817ec19 100644 --- a/.env +++ b/.env @@ -110,12 +110,19 @@ HASH_TELEMETRY_DESTINATION=REPLACE_ME.aws.com # Is used for differentiating different apps, can be any value HASH_TELEMETRY_APP_ID=hash-app +########################################### # Disable telemetry from third-party dependencies who transmit IP addresses -NEXT_TELEMETRY_DISABLED=1 # Vercel Next.js -TURBO_TELEMETRY_DISABLED=1 # Vercel Turborepo -YARN_ENABLE_TELEMETRY=0 # Yarn -ARTILLERY_DISABLE_TELEMETRY=true # Artillery -CHECKPOINT_DISABLE=1 # Terraform and others +########################################### +# Vercel Next.js +NEXT_TELEMETRY_DISABLED=1 +# Vercel Turborepo +TURBO_TELEMETRY_DISABLED=1 +# Yarn +YARN_ENABLE_TELEMETRY=0 +# Artillery +ARTILLERY_DISABLE_TELEMETRY=true +# Terraform and others +CHECKPOINT_DISABLE=1 ########################################### ## Aliases for dockerized external services diff --git a/apps/hash-ai-worker-ts/docker/Dockerfile b/apps/hash-ai-worker-ts/docker/Dockerfile index b82cf439cd4..d5b423e0f69 100644 --- a/apps/hash-ai-worker-ts/docker/Dockerfile +++ b/apps/hash-ai-worker-ts/docker/Dockerfile @@ -57,7 +57,16 @@ FROM node:22.12-slim AS runner COPY --from=installer /usr/local/src /usr/local/src WORKDIR /usr/local/src/apps/hash-ai-worker-ts -ENTRYPOINT [ "yarn", "--cache-folder", "/tmp/yarn-cache", "--global-folder", "/tmp/yarn-global" ] +RUN groupadd --system --gid 60000 hash && \ + useradd --system tsworker -G hash + +# Set a writable Corepack cache directory +ENV COREPACK_HOME=/usr/local/src/var/corepack-cache +RUN mkdir -p $COREPACK_HOME && \ + chown tsworker:hash $COREPACK_HOME && \ + corepack enable && corepack prepare --activate + +ENTRYPOINT [ "yarn"] CMD ["start"] ARG GOOGLE_CLOUD_WORKLOAD_IDENTITY_FEDERATION_CONFIG_JSON @@ -74,8 +83,6 @@ RUN if [ -n "$GOOGLE_CLOUD_WORKLOAD_IDENTITY_FEDERATION_CONFIG_JSON" ]; then \ RUN apt-get update && \ apt-get install -y --no-install-recommends curl && \ rm -rf /var/lib/apt/lists/* && \ - groupadd --system --gid 60000 hash && \ - useradd --system tsworker -G hash && \ install -d -m 0775 -o tsworker -g hash /log RUN mkdir -p officeParserTemp/tempfiles && \ diff --git a/apps/hash-integration-worker/docker/Dockerfile b/apps/hash-integration-worker/docker/Dockerfile index 6d9eff596b2..d060b957b1c 100644 --- a/apps/hash-integration-worker/docker/Dockerfile +++ b/apps/hash-integration-worker/docker/Dockerfile @@ -57,14 +57,21 @@ FROM node:22.12-slim AS runner COPY --from=installer /usr/local/src /usr/local/src WORKDIR /usr/local/src/apps/hash-integration-worker -ENTRYPOINT [ "yarn", "--cache-folder", "/tmp/yarn-cache", "--global-folder", "/tmp/yarn-global" ] +RUN groupadd --system --gid 60000 hash && \ + useradd --system integrationworker -G hash + +# Set a writable Corepack cache directory +ENV COREPACK_HOME=/usr/local/src/var/corepack-cache +RUN mkdir -p $COREPACK_HOME && \ + chown integrationworker:hash $COREPACK_HOME && \ + corepack enable && corepack prepare --activate + +ENTRYPOINT [ "yarn"] CMD ["start"] RUN apt-get update && \ apt-get install -y --no-install-recommends curl && \ rm -rf /var/lib/apt/lists/* && \ - groupadd --system --gid 60000 hash && \ - useradd --system integrationworker -G hash && \ install -d -m 0775 -o integrationworker -g hash /log USER integrationworker:hash diff --git a/infra/docker/api/prod/Dockerfile b/infra/docker/api/prod/Dockerfile index d6861667aac..aee7c1e9c06 100644 --- a/infra/docker/api/prod/Dockerfile +++ b/infra/docker/api/prod/Dockerfile @@ -58,14 +58,21 @@ COPY --from=installer /usr/local/src /usr/local/src WORKDIR /usr/local/src/apps/hash-api RUN mkdir -p /usr/local/src/var/uploads -ENTRYPOINT [ "yarn", "--cache-folder", "/tmp/yarn-cache", "--global-folder", "/tmp/yarn-global" ] +RUN groupadd --system --gid 60000 hash && \ + useradd --system api -G hash + +# Set a writable Corepack cache directory +ENV COREPACK_HOME=/usr/local/src/var/corepack-cache +RUN mkdir -p $COREPACK_HOME && \ + chown api:hash $COREPACK_HOME && \ + corepack enable && corepack prepare --activate + +ENTRYPOINT [ "yarn"] CMD ["start"] RUN apt-get update && \ apt-get install -y --no-install-recommends curl && \ rm -rf /var/lib/apt/lists/* && \ - groupadd --system --gid 60000 hash && \ - useradd --system api -G hash && \ install -d -m 0775 -o api -g hash /log USER api:hash From 958eced620040b70f8507f745fe84bed8cfd32a7 Mon Sep 17 00:00:00 2001 From: Dei Vilkinsons <6226576+vilkinsons@users.noreply.github.com> Date: Thu, 19 Dec 2024 10:40:00 +0000 Subject: [PATCH 064/159] H-3844: Add `CITATION` file (#5972) --- CITATION.cff | 29 +++++++++++++++++++++++++++++ 1 file changed, 29 insertions(+) create mode 100644 CITATION.cff diff --git a/CITATION.cff b/CITATION.cff new file mode 100644 index 00000000000..5c038b7b234 --- /dev/null +++ b/CITATION.cff @@ -0,0 +1,29 @@ +cff-version: 1.2.0 +title: HASH +type: software +url: 'https://hash.ai/' +repository-code: 'https://github.com/hashintel/hash' +authors: + - given-names: Dei + family-names: Vilkinsons + affiliation: HASH + orcid: 'https://orcid.org/0000-0001-5348-3913' + - given-names: Ciaran + family-names: Morinan + affiliation: HASH + - given-names: Tim + family-names: Diekmann + affiliation: HASH + - name: HASH + website: 'https://hash.ai/' + email: team@hash.ai +abstract: >- + HASH is an open, multi-tenant type system and + self-building database that enables complex real-world + data integration in the absence of consensus. +keywords: + - semantic data + - graph database + - artificial intelligence + - world model +message: 'If you this software, please cite it using this metadata.' \ No newline at end of file From eef29f03f8a27256fc6fe306ace785a7f71bd0ba Mon Sep 17 00:00:00 2001 From: "hash-worker[bot]" <180894564+hash-worker[bot]@users.noreply.github.com> Date: Thu, 19 Dec 2024 16:26:40 +0000 Subject: [PATCH 065/159] Update npm package `react-pdf` to v9.2.0 (#5974) Co-authored-by: hash-worker[bot] <180894564+hash-worker[bot]@users.noreply.github.com> --- apps/hash-frontend/package.json | 2 +- yarn.lock | 38 ++++++++++++++++++++++----------- 2 files changed, 26 insertions(+), 14 deletions(-) diff --git a/apps/hash-frontend/package.json b/apps/hash-frontend/package.json index 86d2cb29ebf..24ca9dc2896 100644 --- a/apps/hash-frontend/package.json +++ b/apps/hash-frontend/package.json @@ -108,7 +108,7 @@ "react-full-screen": "1.1.1", "react-hook-form": "7.54.1", "react-markdown": "9.0.1", - "react-pdf": "9.1.1", + "react-pdf": "9.2.0", "react-responsive-carousel": "3.2.23", "react-transition-group": "4.4.5", "react-virtuoso": "4.12.3", diff --git a/yarn.lock b/yarn.lock index 3efdfd01981..bba67167cc7 100644 --- a/yarn.lock +++ b/yarn.lock @@ -575,7 +575,7 @@ __metadata: react-full-screen: "npm:1.1.1" react-hook-form: "npm:7.54.1" react-markdown: "npm:9.0.1" - react-pdf: "npm:9.1.1" + react-pdf: "npm:9.2.0" react-responsive-carousel: "npm:3.2.23" react-transition-group: "npm:4.4.5" react-virtuoso: "npm:4.12.3" @@ -22268,6 +22268,18 @@ __metadata: languageName: node linkType: hard +"canvas@npm:^3.0.0-rc2": + version: 3.0.0-rc3 + resolution: "canvas@npm:3.0.0-rc3" + dependencies: + node-addon-api: "npm:^7.0.0" + node-gyp: "npm:latest" + prebuild-install: "npm:^7.1.1" + simple-get: "npm:^3.0.3" + checksum: 10c0/d12626082829b7da297b50b82ddd357434f9ffa99f9b5571316edee6853ae757a28747d187bfd7d2e7538a40c9b4f2ad1d1a7356806112f0ff0ad430f034cb75 + languageName: node + linkType: hard + "capital-case@npm:^1.0.4": version: 1.0.4 resolution: "capital-case@npm:1.0.4" @@ -38808,7 +38820,7 @@ __metadata: languageName: node linkType: hard -"path2d@npm:^0.2.0": +"path2d@npm:^0.2.1": version: 0.2.2 resolution: "path2d@npm:0.2.2" checksum: 10c0/1bb76c7f275d07f1bc7ca12171d828e91bf8a12596f0765a52e9d4d47fe1a428455dc1dd4c9002924a9bc554f6ac25e09a6c22eaecf32e5e33fba2985b5168f8 @@ -38840,18 +38852,18 @@ __metadata: languageName: node linkType: hard -"pdfjs-dist@npm:4.4.168": - version: 4.4.168 - resolution: "pdfjs-dist@npm:4.4.168" +"pdfjs-dist@npm:4.8.69": + version: 4.8.69 + resolution: "pdfjs-dist@npm:4.8.69" dependencies: - canvas: "npm:^2.11.2" - path2d: "npm:^0.2.0" + canvas: "npm:^3.0.0-rc2" + path2d: "npm:^0.2.1" dependenciesMeta: canvas: optional: true path2d: optional: true - checksum: 10c0/61bad19fe0aae8261631d425bd96368cf0b8803c3a4446615456dddd867ef3e5ba15c11a1caabb8033bce9538e3ad8262c24a56fa68b150c6ee0eb9e26a9f3a7 + checksum: 10c0/dc297f2a36aa36834a2892cb78c3cafc7ac01753a2e7c4316a1f6e8c1d337a52a3bfbf7fdff7aaba615893b53f2d06a0efc2176525592b4d7b51021279c101be languageName: node linkType: hard @@ -40917,16 +40929,16 @@ __metadata: languageName: node linkType: hard -"react-pdf@npm:9.1.1": - version: 9.1.1 - resolution: "react-pdf@npm:9.1.1" +"react-pdf@npm:9.2.0": + version: 9.2.0 + resolution: "react-pdf@npm:9.2.0" dependencies: clsx: "npm:^2.0.0" dequal: "npm:^2.0.3" make-cancellable-promise: "npm:^1.3.1" make-event-props: "npm:^1.6.0" merge-refs: "npm:^1.3.0" - pdfjs-dist: "npm:4.4.168" + pdfjs-dist: "npm:4.8.69" tiny-invariant: "npm:^1.0.0" warning: "npm:^4.0.0" peerDependencies: @@ -40936,7 +40948,7 @@ __metadata: peerDependenciesMeta: "@types/react": optional: true - checksum: 10c0/441faf64ef4809920b2fc1a9dfbbae976f74193f54015764beafd82981c79fa6bbaee9bf774633f6ea63f9b701523df7bbf48acae6e0fb100ccc2e1cc33fbdaa + checksum: 10c0/8f41a86196e309fc1eb255343bb512c18c65bee5cf19df46d7eb063125c0aae563777b58799121e7e622d6c9e4ab8f69d4c60b0f1d51887e2cb1327274992d05 languageName: node linkType: hard From 6ce9507b5c11855949adaffcbcee57a303bee1d7 Mon Sep 17 00:00:00 2001 From: "hash-worker[bot]" <180894564+hash-worker[bot]@users.noreply.github.com> Date: Thu, 19 Dec 2024 18:48:41 +0000 Subject: [PATCH 066/159] Update GitHub Action `taiki-e/install-action` to v2.46.16 (#5975) Co-authored-by: hash-worker[bot] <180894564+hash-worker[bot]@users.noreply.github.com> --- .github/actions/warm-up-repo/action.yml | 2 +- .github/workflows/bench.yml | 4 ++-- .github/workflows/lint.yml | 2 +- .github/workflows/test.yml | 4 ++-- 4 files changed, 6 insertions(+), 6 deletions(-) diff --git a/.github/actions/warm-up-repo/action.yml b/.github/actions/warm-up-repo/action.yml index e6bfe0fc1ac..3a4a6d8fc50 100644 --- a/.github/actions/warm-up-repo/action.yml +++ b/.github/actions/warm-up-repo/action.yml @@ -17,7 +17,7 @@ runs: # cache: yarn ## Currently disabled because of frequent timeouts - name: Install WASM tools - uses: taiki-e/install-action@2c3c8dfabf5933531aca0613c6b0c173fa51745e # v2.46.15 + uses: taiki-e/install-action@9023ed54c080c7ff1b3e4af335c729c3f9cb1dd7 # v2.46.16 with: tool: wasm-pack@0.12.1 diff --git a/.github/workflows/bench.yml b/.github/workflows/bench.yml index ee8387310e6..49bd1c3acb6 100644 --- a/.github/workflows/bench.yml +++ b/.github/workflows/bench.yml @@ -99,7 +99,7 @@ jobs: - name: Install Rust tools if: steps.benches.outputs.has-rust == 'true' - uses: taiki-e/install-action@2c3c8dfabf5933531aca0613c6b0c173fa51745e # v2.46.15 + uses: taiki-e/install-action@9023ed54c080c7ff1b3e4af335c729c3f9cb1dd7 # v2.46.16 with: tool: just@1.34.0,critcmp@0.1.8 @@ -251,7 +251,7 @@ jobs: - name: Install Rust tools if: steps.benches.outputs.has-rust == 'true' - uses: taiki-e/install-action@2c3c8dfabf5933531aca0613c6b0c173fa51745e # v2.46.15 + uses: taiki-e/install-action@9023ed54c080c7ff1b3e4af335c729c3f9cb1dd7 # v2.46.16 with: tool: just@1.34.0,critcmp@0.1.8 diff --git a/.github/workflows/lint.yml b/.github/workflows/lint.yml index d82a9de93bb..229d1aedfde 100644 --- a/.github/workflows/lint.yml +++ b/.github/workflows/lint.yml @@ -111,7 +111,7 @@ jobs: - name: Install Rust tools if: always() && steps.lints.outputs.has-rust == 'true' - uses: taiki-e/install-action@2c3c8dfabf5933531aca0613c6b0c173fa51745e # v2.46.15 + uses: taiki-e/install-action@9023ed54c080c7ff1b3e4af335c729c3f9cb1dd7 # v2.46.16 with: tool: just@1.34.0,cargo-hack@0.6.30,clippy-sarif@0.6.5,sarif-fmt@0.6.5 diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index bda975ae472..e2eef518acb 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -163,7 +163,7 @@ jobs: - name: Install Rust tools if: always() && steps.tests.outputs.has-rust == 'true' - uses: taiki-e/install-action@2c3c8dfabf5933531aca0613c6b0c173fa51745e # v2.46.15 + uses: taiki-e/install-action@9023ed54c080c7ff1b3e4af335c729c3f9cb1dd7 # v2.46.16 with: tool: just@1.34.0,cargo-hack@0.6.30,cargo-nextest@0.9.72,cargo-llvm-cov@0.6.11 @@ -281,7 +281,7 @@ jobs: - name: Install Rust tools if: steps.tests.outputs.has-rust == 'true' - uses: taiki-e/install-action@2c3c8dfabf5933531aca0613c6b0c173fa51745e # v2.46.15 + uses: taiki-e/install-action@9023ed54c080c7ff1b3e4af335c729c3f9cb1dd7 # v2.46.16 with: tool: just@1.34.0,cargo-hack@0.6.30,cargo-nextest@0.9.72,cargo-llvm-cov@0.6.11 From cd90a89367f53e58d3b7467685e8fb82d565cabb Mon Sep 17 00:00:00 2001 From: "hash-worker[bot]" <180894564+hash-worker[bot]@users.noreply.github.com> Date: Thu, 19 Dec 2024 19:05:38 +0000 Subject: [PATCH 067/159] Update npm package `@effect/vitest` to v0.14.9 (#5977) Co-authored-by: hash-worker[bot] <180894564+hash-worker[bot]@users.noreply.github.com> --- libs/@local/harpc/client/typescript/package.json | 2 +- yarn.lock | 12 ++++++------ 2 files changed, 7 insertions(+), 7 deletions(-) diff --git a/libs/@local/harpc/client/typescript/package.json b/libs/@local/harpc/client/typescript/package.json index edb820b2606..bf976fbaa35 100644 --- a/libs/@local/harpc/client/typescript/package.json +++ b/libs/@local/harpc/client/typescript/package.json @@ -41,7 +41,7 @@ "devDependencies": { "@effect/platform": "0.71.5", "@effect/platform-node": "0.67.1", - "@effect/vitest": "0.14.8", + "@effect/vitest": "0.14.9", "@local/eslint": "0.0.0-private", "@local/tsconfig": "0.0.0-private", "@rust/harpc-wire-protocol": "0.0.0-private", diff --git a/yarn.lock b/yarn.lock index bba67167cc7..c07b2ded72f 100644 --- a/yarn.lock +++ b/yarn.lock @@ -5826,13 +5826,13 @@ __metadata: languageName: node linkType: hard -"@effect/vitest@npm:0.14.8": - version: 0.14.8 - resolution: "@effect/vitest@npm:0.14.8" +"@effect/vitest@npm:0.14.9": + version: 0.14.9 + resolution: "@effect/vitest@npm:0.14.9" peerDependencies: - effect: ^3.11.8 + effect: ^3.11.9 vitest: ^2.0.5 - checksum: 10c0/b03e77dec2abf359a56c6a6090286185b3181d46f2e010683d1b2315d1dffb7327016d40df1339444b1e8cb7e2423dfea3b98cb8ce1aabe03f015aed77461f6d + checksum: 10c0/0a5ffb7e3d20100fb1d73add54d083611c04d52df5a82cadd8d21aca5db32c496fc1386074621f40a7315d8aef0667295527acf0842fa9a4c5cfe8daee58d12d languageName: node linkType: hard @@ -9330,7 +9330,7 @@ __metadata: "@chainsafe/libp2p-yamux": "npm:7.0.1" "@effect/platform": "npm:0.71.5" "@effect/platform-node": "npm:0.67.1" - "@effect/vitest": "npm:0.14.8" + "@effect/vitest": "npm:0.14.9" "@libp2p/crypto": "npm:5.0.8" "@libp2p/identify": "npm:3.0.14" "@libp2p/interface": "npm:2.3.0" From 4a7572f3e5594a927bed88fe73416686a1ee883f Mon Sep 17 00:00:00 2001 From: "hash-worker[bot]" <180894564+hash-worker[bot]@users.noreply.github.com> Date: Thu, 19 Dec 2024 19:13:06 +0000 Subject: [PATCH 068/159] Update Rust crate `proptest` to v1.6.0 (#5935) Co-authored-by: hash-worker[bot] <180894564+hash-worker[bot]@users.noreply.github.com> Co-authored-by: Bilal Mahmoud --- Cargo.lock | 5 ++--- Cargo.toml | 2 +- 2 files changed, 3 insertions(+), 4 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index 2d5bc47c6ba..d4a24153e89 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -4916,7 +4916,6 @@ source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "071dfc062690e90b734c0b2273ce72ad0ffa95f0c74596bc250dcfd960262841" dependencies = [ "autocfg", - "libm", ] [[package]] @@ -5591,9 +5590,9 @@ dependencies = [ [[package]] name = "proptest" -version = "1.5.0" +version = "1.6.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "b4c2511913b88df1637da85cc8d96ec8e43a3f8bb8ccb71ee1ac240d6f3df58d" +checksum = "14cae93065090804185d3b75f0bf93b8eeda30c7a9b4a33d3bdb3988d6229e50" dependencies = [ "bitflags 2.6.0", "lazy_static", diff --git a/Cargo.toml b/Cargo.toml index c14b548cebb..3f0655b2bcb 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -198,7 +198,7 @@ postgres-protocol = { version = "=0.6.7", default-features = false } pretty_assertions = { version = "=1.4.1", default-features = false, features = ["alloc"] } proc-macro-error2 = { version = "=2.0.1", default-features = false } proc-macro2 = { version = "=1.0.92", default-features = false } -proptest = { version = "=1.5.0", default-features = false, features = ["alloc"] } +proptest = { version = "=1.6.0", default-features = false, features = ["alloc", "std"] } # `std` or `no_std` are required, `no_std` pulls in `libm` quote = { version = "=1.0.37", default-features = false } rand = { version = "=0.8.5", default-features = false } refinery = { version = "=0.8.14", default-features = false } From 84ffbe9b3ed07b481adbc71cca650ac0367d6e4b Mon Sep 17 00:00:00 2001 From: "hash-worker[bot]" <180894564+hash-worker[bot]@users.noreply.github.com> Date: Thu, 19 Dec 2024 19:13:17 +0000 Subject: [PATCH 069/159] Update Rust toolchains to nightly-2024-12-16 (#5934) Co-authored-by: hash-worker[bot] <180894564+hash-worker[bot]@users.noreply.github.com> Co-authored-by: Bilal Mahmoud --- apps/hash-graph/src/main.rs | 1 - libs/@local/graph/migrations/src/lib.rs | 7 +------ libs/antsi/rust-toolchain.toml | 2 +- libs/deer/rust-toolchain.toml | 2 +- libs/error-stack/README.md | 2 +- libs/error-stack/macros/README.md | 2 +- libs/error-stack/rust-toolchain.toml | 2 +- libs/error-stack/src/lib.rs | 2 +- libs/sarif/rust-toolchain.toml | 2 +- rust-toolchain.toml | 2 +- 10 files changed, 9 insertions(+), 15 deletions(-) diff --git a/apps/hash-graph/src/main.rs b/apps/hash-graph/src/main.rs index 303263c80b7..0e63ca76430 100644 --- a/apps/hash-graph/src/main.rs +++ b/apps/hash-graph/src/main.rs @@ -1,5 +1,4 @@ #![forbid(unsafe_code)] -#![feature(async_closure)] #![expect( unreachable_pub, reason = "This is a binary but as we want to document this crate as well this should be a \ diff --git a/libs/@local/graph/migrations/src/lib.rs b/libs/@local/graph/migrations/src/lib.rs index 64799b1f24e..624e2fab471 100644 --- a/libs/@local/graph/migrations/src/lib.rs +++ b/libs/@local/graph/migrations/src/lib.rs @@ -1,9 +1,4 @@ -#![feature( - impl_trait_in_assoc_type, - return_type_notation, - async_closure, - never_type -)] +#![feature(impl_trait_in_assoc_type, return_type_notation, never_type)] #![expect(clippy::future_not_send)] extern crate alloc; diff --git a/libs/antsi/rust-toolchain.toml b/libs/antsi/rust-toolchain.toml index 2334bc72d61..db20fee454d 100644 --- a/libs/antsi/rust-toolchain.toml +++ b/libs/antsi/rust-toolchain.toml @@ -1,3 +1,3 @@ [toolchain] -channel = "nightly-2024-12-09" +channel = "nightly-2024-12-16" components = ['rustfmt', 'clippy', 'llvm-tools-preview', 'rust-analyzer', 'rustc-codegen-cranelift-preview'] diff --git a/libs/deer/rust-toolchain.toml b/libs/deer/rust-toolchain.toml index 174a7e11088..22148121209 100644 --- a/libs/deer/rust-toolchain.toml +++ b/libs/deer/rust-toolchain.toml @@ -1,3 +1,3 @@ [toolchain] -channel = "nightly-2024-12-09" +channel = "nightly-2024-12-16" components = ['rustfmt', 'clippy', 'llvm-tools-preview', 'miri', 'rust-analyzer', 'rustc-codegen-cranelift-preview'] diff --git a/libs/error-stack/README.md b/libs/error-stack/README.md index fbea4f0f92d..5155f418a76 100644 --- a/libs/error-stack/README.md +++ b/libs/error-stack/README.md @@ -7,7 +7,7 @@ [![crates.io](https://img.shields.io/crates/v/error-stack)][crates.io] [![libs.rs](https://img.shields.io/badge/libs.rs-error--stack-orange)][libs.rs] -[![rust-version](https://img.shields.io/static/v1?label=Rust&message=1.83.0/nightly-2024-12-09&color=blue)][rust-version] +[![rust-version](https://img.shields.io/static/v1?label=Rust&message=1.83.0/nightly-2024-12-16&color=blue)][rust-version] [![documentation](https://img.shields.io/docsrs/error-stack)][documentation] [![license](https://img.shields.io/crates/l/error-stack)][license] diff --git a/libs/error-stack/macros/README.md b/libs/error-stack/macros/README.md index 1c62018ec4d..13cfbf5b807 100644 --- a/libs/error-stack/macros/README.md +++ b/libs/error-stack/macros/README.md @@ -6,7 +6,7 @@ [![crates.io](https://img.shields.io/crates/v/error-stack-macros)][crates.io] [![libs.rs](https://img.shields.io/badge/libs.rs-error--stack--macros-orange)][libs.rs] -[![rust-version](https://img.shields.io/static/v1?label=Rust&message=1.83.0/nightly-2024-12-09&color=blue)][rust-version] +[![rust-version](https://img.shields.io/static/v1?label=Rust&message=1.83.0/nightly-2024-12-16&color=blue)][rust-version] [![documentation](https://img.shields.io/docsrs/error-stack-macros)][documentation] [![license](https://img.shields.io/crates/l/error-stack)][license] diff --git a/libs/error-stack/rust-toolchain.toml b/libs/error-stack/rust-toolchain.toml index 1a1b351a840..1b06e858cdf 100644 --- a/libs/error-stack/rust-toolchain.toml +++ b/libs/error-stack/rust-toolchain.toml @@ -1,4 +1,4 @@ [toolchain] # Please also update the badges in `README.md`s (`error-stack` and `error-stack-macros`), and `src/lib.rs` -channel = "nightly-2024-12-09" +channel = "nightly-2024-12-16" components = ['rustfmt', 'clippy', 'llvm-tools-preview', 'miri', 'rust-src', 'rust-analyzer', 'rustc-codegen-cranelift-preview'] diff --git a/libs/error-stack/src/lib.rs b/libs/error-stack/src/lib.rs index 79bd0a66442..42cb5f23e46 100644 --- a/libs/error-stack/src/lib.rs +++ b/libs/error-stack/src/lib.rs @@ -2,7 +2,7 @@ //! //! [![crates.io](https://img.shields.io/crates/v/error-stack)][crates.io] //! [![libs.rs](https://img.shields.io/badge/libs.rs-error--stack-orange)][libs.rs] -//! [![rust-version](https://img.shields.io/static/v1?label=Rust&message=1.83.0/nightly-2024-12-09&color=blue)][rust-version] +//! [![rust-version](https://img.shields.io/static/v1?label=Rust&message=1.83.0/nightly-2024-12-16&color=blue)][rust-version] //! //! [crates.io]: https://crates.io/crates/error-stack //! [libs.rs]: https://lib.rs/crates/error-stack diff --git a/libs/sarif/rust-toolchain.toml b/libs/sarif/rust-toolchain.toml index 2334bc72d61..db20fee454d 100644 --- a/libs/sarif/rust-toolchain.toml +++ b/libs/sarif/rust-toolchain.toml @@ -1,3 +1,3 @@ [toolchain] -channel = "nightly-2024-12-09" +channel = "nightly-2024-12-16" components = ['rustfmt', 'clippy', 'llvm-tools-preview', 'rust-analyzer', 'rustc-codegen-cranelift-preview'] diff --git a/rust-toolchain.toml b/rust-toolchain.toml index 174a7e11088..22148121209 100644 --- a/rust-toolchain.toml +++ b/rust-toolchain.toml @@ -1,3 +1,3 @@ [toolchain] -channel = "nightly-2024-12-09" +channel = "nightly-2024-12-16" components = ['rustfmt', 'clippy', 'llvm-tools-preview', 'miri', 'rust-analyzer', 'rustc-codegen-cranelift-preview'] From 3a5f7bd4f7977440bcac2aab13f97ade3976ba6f Mon Sep 17 00:00:00 2001 From: "hash-worker[bot]" <180894564+hash-worker[bot]@users.noreply.github.com> Date: Thu, 19 Dec 2024 20:25:50 +0000 Subject: [PATCH 070/159] Update `effect` npm packages (#5976) Co-authored-by: hash-worker[bot] <180894564+hash-worker[bot]@users.noreply.github.com> --- apps/hash-api/package.json | 2 +- libs/@local/eslint/package.json | 2 +- libs/@local/graph/sdk/typescript/package.json | 2 +- .../harpc/client/typescript/package.json | 6 +- yarn.lock | 56 +++++++++---------- 5 files changed, 34 insertions(+), 34 deletions(-) diff --git a/apps/hash-api/package.json b/apps/hash-api/package.json index 58afaaf3521..67aa07e29e9 100644 --- a/apps/hash-api/package.json +++ b/apps/hash-api/package.json @@ -73,7 +73,7 @@ "cors": "2.8.5", "cross-env": "7.0.3", "dedent": "0.7.0", - "effect": "3.11.8", + "effect": "3.11.9", "exponential-backoff": "3.1.1", "express": "4.21.2", "express-handlebars": "7.1.3", diff --git a/libs/@local/eslint/package.json b/libs/@local/eslint/package.json index d8d692abfe2..c389c5b916c 100644 --- a/libs/@local/eslint/package.json +++ b/libs/@local/eslint/package.json @@ -24,7 +24,7 @@ "@babel/eslint-parser": "7.25.9", "@eslint/compat": "1.2.4", "@eslint/eslintrc": "3.2.0", - "effect": "3.11.8", + "effect": "3.11.9", "eslint": "9.17.0", "eslint-config-airbnb": "19.0.4", "eslint-config-flat-gitignore": "0.3.0", diff --git a/libs/@local/graph/sdk/typescript/package.json b/libs/@local/graph/sdk/typescript/package.json index 5f588cbdff6..301b9bcff63 100644 --- a/libs/@local/graph/sdk/typescript/package.json +++ b/libs/@local/graph/sdk/typescript/package.json @@ -28,7 +28,7 @@ "@local/harpc-client": "0.0.0-private", "@local/hash-graph-client": "0.0.0-private", "@local/hash-graph-types": "0.0.0-private", - "effect": "3.11.8" + "effect": "3.11.9" }, "devDependencies": { "@local/eslint": "0.0.0-private", diff --git a/libs/@local/harpc/client/typescript/package.json b/libs/@local/harpc/client/typescript/package.json index bf976fbaa35..cc14688d97f 100644 --- a/libs/@local/harpc/client/typescript/package.json +++ b/libs/@local/harpc/client/typescript/package.json @@ -32,15 +32,15 @@ "@libp2p/tcp": "10.0.14", "@multiformats/dns": "1.0.6", "@multiformats/multiaddr": "12.3.4", - "effect": "3.11.8", + "effect": "3.11.9", "it-stream-types": "2.0.2", "libp2p": "2.4.2", "multiformats": "13.3.1", "uint8arraylist": "2.4.8" }, "devDependencies": { - "@effect/platform": "0.71.5", - "@effect/platform-node": "0.67.1", + "@effect/platform": "0.71.6", + "@effect/platform-node": "0.67.2", "@effect/vitest": "0.14.9", "@local/eslint": "0.0.0-private", "@local/tsconfig": "0.0.0-private", diff --git a/yarn.lock b/yarn.lock index c07b2ded72f..1349e3a4d9a 100644 --- a/yarn.lock +++ b/yarn.lock @@ -412,7 +412,7 @@ __metadata: cors: "npm:2.8.5" cross-env: "npm:7.0.3" dedent: "npm:0.7.0" - effect: "npm:3.11.8" + effect: "npm:3.11.9" eslint: "npm:9.17.0" exponential-backoff: "npm:3.1.1" express: "npm:4.21.2" @@ -5786,43 +5786,43 @@ __metadata: languageName: node linkType: hard -"@effect/platform-node-shared@npm:^0.21.5": - version: 0.21.5 - resolution: "@effect/platform-node-shared@npm:0.21.5" +"@effect/platform-node-shared@npm:^0.21.6": + version: 0.21.6 + resolution: "@effect/platform-node-shared@npm:0.21.6" dependencies: "@parcel/watcher": "npm:^2.4.1" multipasta: "npm:^0.2.5" peerDependencies: - "@effect/platform": ^0.71.5 - effect: ^3.11.8 - checksum: 10c0/e9ff3ce76f936d5a7013e75ad66fada443a7af4837f8c7a8cceaa3d045e0ba138edab3a977be78c745c70261866d88e3ea46f340a74b3e95379b4becb6effa97 + "@effect/platform": ^0.71.6 + effect: ^3.11.9 + checksum: 10c0/6ba2017ae4c99775cae9d52741ed4391b0ff96e938b43f7a14cb59f0b550c2deae7abc30bd6acae7e28944ec3dc64790c196c2d2306ed4981ee5f86d18b4e47c languageName: node linkType: hard -"@effect/platform-node@npm:0.67.1": - version: 0.67.1 - resolution: "@effect/platform-node@npm:0.67.1" +"@effect/platform-node@npm:0.67.2": + version: 0.67.2 + resolution: "@effect/platform-node@npm:0.67.2" dependencies: - "@effect/platform-node-shared": "npm:^0.21.5" + "@effect/platform-node-shared": "npm:^0.21.6" mime: "npm:^3.0.0" undici: "npm:^7.1.0" ws: "npm:^8.18.0" peerDependencies: - "@effect/platform": ^0.71.5 - effect: ^3.11.8 - checksum: 10c0/8992c06626446727888859d3daea96aef46e9bfb73248280b5dc16d4dbf79de582d5f6367daa715dc7247a4e3b827250922f5482d7f4fac804679851e26d32db + "@effect/platform": ^0.71.6 + effect: ^3.11.9 + checksum: 10c0/5dc91bbef5a752a5aa8166687d3cc807ca48bbb2a28dec8c414a630037072381413451161d308e08f269f58b2482f0ed3e93d002a39c857faf209bc4d3313045 languageName: node linkType: hard -"@effect/platform@npm:0.71.5": - version: 0.71.5 - resolution: "@effect/platform@npm:0.71.5" +"@effect/platform@npm:0.71.6": + version: 0.71.6 + resolution: "@effect/platform@npm:0.71.6" dependencies: find-my-way-ts: "npm:^0.1.5" multipasta: "npm:^0.2.5" peerDependencies: - effect: ^3.11.8 - checksum: 10c0/f856abc7546acf2d2e692bf7df7b453e3e64694d5315e97ce7d9f64e981dd53328b9b2e4acf81f20975dddafeae87f81a54cb99cff8a803e0107b3c943186834 + effect: ^3.11.9 + checksum: 10c0/ffbab4bf7a31cd73781898cb0c4a5fe1d6c1198c3751180fe6eb44afe91c78c63662a60a3b36e24680536c74361f9bb37410f618bf1de95a27a6ebe30fb69d73 languageName: node linkType: hard @@ -9303,7 +9303,7 @@ __metadata: "@types/babel__core": "npm:^7" "@types/eslint__eslintrc": "npm:2.1.2" "@types/node": "npm:22.10.2" - effect: "npm:3.11.8" + effect: "npm:3.11.9" eslint: "npm:9.17.0" eslint-config-airbnb: "npm:19.0.4" eslint-config-flat-gitignore: "npm:0.3.0" @@ -9328,8 +9328,8 @@ __metadata: dependencies: "@chainsafe/libp2p-noise": "npm:16.0.0" "@chainsafe/libp2p-yamux": "npm:7.0.1" - "@effect/platform": "npm:0.71.5" - "@effect/platform-node": "npm:0.67.1" + "@effect/platform": "npm:0.71.6" + "@effect/platform-node": "npm:0.67.2" "@effect/vitest": "npm:0.14.9" "@libp2p/crypto": "npm:5.0.8" "@libp2p/identify": "npm:3.0.14" @@ -9343,7 +9343,7 @@ __metadata: "@rust/harpc-wire-protocol": "npm:0.0.0-private" "@types/node": "npm:22.10.2" "@vitest/coverage-istanbul": "npm:2.1.8" - effect: "npm:3.11.8" + effect: "npm:3.11.9" eslint: "npm:9.17.0" it-stream-types: "npm:2.0.2" libp2p: "npm:2.4.2" @@ -9431,7 +9431,7 @@ __metadata: "@local/hash-graph-types": "npm:0.0.0-private" "@local/tsconfig": "npm:0.0.0-private" "@vitest/coverage-istanbul": "npm:2.1.8" - effect: "npm:3.11.8" + effect: "npm:3.11.9" eslint: "npm:9.17.0" rimraf: "npm:6.0.1" typescript: "npm:5.7.2" @@ -25582,12 +25582,12 @@ __metadata: languageName: node linkType: hard -"effect@npm:3.11.8": - version: 3.11.8 - resolution: "effect@npm:3.11.8" +"effect@npm:3.11.9": + version: 3.11.9 + resolution: "effect@npm:3.11.9" dependencies: fast-check: "npm:^3.21.0" - checksum: 10c0/e05d73b2c15e08ee2de3a908aae8c01babe76ddb118bb12f589eb4c7dbc3e676eca7c8b1904b52161712c9c8bf2da7fd7f6279b2042caae67130c68695707265 + checksum: 10c0/d86a49ae2bb29a609e22cf1318e56a8343db3c8e5e0f49cef3401e725779c15a767cdcd390b85288a13cc82fef29879f060b43513d00f1b65e1b0aa4510527c1 languageName: node linkType: hard From 71b2c859348430ae34ae13aeb1debbc08cee1968 Mon Sep 17 00:00:00 2001 From: "hash-worker[bot]" <180894564+hash-worker[bot]@users.noreply.github.com> Date: Thu, 19 Dec 2024 21:56:18 +0000 Subject: [PATCH 071/159] Update npm package `lefthook` to v1.10.0 (#5978) Co-authored-by: hash-worker[bot] <180894564+hash-worker[bot]@users.noreply.github.com> --- package.json | 2 +- yarn.lock | 92 ++++++++++++++++++++++++++-------------------------- 2 files changed, 47 insertions(+), 47 deletions(-) diff --git a/package.json b/package.json index 01405ee0a78..260ad86a0af 100644 --- a/package.json +++ b/package.json @@ -105,7 +105,7 @@ "@sentry/cli": "^2.39.1", "@taplo/cli": "0.7.0", "@yarnpkg/types": "^4.0.0", - "lefthook": "1.9.3", + "lefthook": "1.10.0", "markdownlint-cli2": "0.16.0", "npm-run-all2": "7.0.2", "prettier": "3.4.2", diff --git a/yarn.lock b/yarn.lock index 1349e3a4d9a..11fec5a56ad 100644 --- a/yarn.lock +++ b/yarn.lock @@ -29907,7 +29907,7 @@ __metadata: "@sentry/cli": "npm:^2.39.1" "@taplo/cli": "npm:0.7.0" "@yarnpkg/types": "npm:^4.0.0" - lefthook: "npm:1.9.3" + lefthook: "npm:1.10.0" markdownlint-cli2: "npm:0.16.0" npm-run-all2: "npm:7.0.2" prettier: "npm:3.4.2" @@ -33268,90 +33268,90 @@ __metadata: languageName: node linkType: hard -"lefthook-darwin-arm64@npm:1.9.3": - version: 1.9.3 - resolution: "lefthook-darwin-arm64@npm:1.9.3" +"lefthook-darwin-arm64@npm:1.10.0": + version: 1.10.0 + resolution: "lefthook-darwin-arm64@npm:1.10.0" conditions: os=darwin & cpu=arm64 languageName: node linkType: hard -"lefthook-darwin-x64@npm:1.9.3": - version: 1.9.3 - resolution: "lefthook-darwin-x64@npm:1.9.3" +"lefthook-darwin-x64@npm:1.10.0": + version: 1.10.0 + resolution: "lefthook-darwin-x64@npm:1.10.0" conditions: os=darwin & cpu=x64 languageName: node linkType: hard -"lefthook-freebsd-arm64@npm:1.9.3": - version: 1.9.3 - resolution: "lefthook-freebsd-arm64@npm:1.9.3" +"lefthook-freebsd-arm64@npm:1.10.0": + version: 1.10.0 + resolution: "lefthook-freebsd-arm64@npm:1.10.0" conditions: os=freebsd & cpu=arm64 languageName: node linkType: hard -"lefthook-freebsd-x64@npm:1.9.3": - version: 1.9.3 - resolution: "lefthook-freebsd-x64@npm:1.9.3" +"lefthook-freebsd-x64@npm:1.10.0": + version: 1.10.0 + resolution: "lefthook-freebsd-x64@npm:1.10.0" conditions: os=freebsd & cpu=x64 languageName: node linkType: hard -"lefthook-linux-arm64@npm:1.9.3": - version: 1.9.3 - resolution: "lefthook-linux-arm64@npm:1.9.3" +"lefthook-linux-arm64@npm:1.10.0": + version: 1.10.0 + resolution: "lefthook-linux-arm64@npm:1.10.0" conditions: os=linux & cpu=arm64 languageName: node linkType: hard -"lefthook-linux-x64@npm:1.9.3": - version: 1.9.3 - resolution: "lefthook-linux-x64@npm:1.9.3" +"lefthook-linux-x64@npm:1.10.0": + version: 1.10.0 + resolution: "lefthook-linux-x64@npm:1.10.0" conditions: os=linux & cpu=x64 languageName: node linkType: hard -"lefthook-openbsd-arm64@npm:1.9.3": - version: 1.9.3 - resolution: "lefthook-openbsd-arm64@npm:1.9.3" +"lefthook-openbsd-arm64@npm:1.10.0": + version: 1.10.0 + resolution: "lefthook-openbsd-arm64@npm:1.10.0" conditions: os=openbsd & cpu=arm64 languageName: node linkType: hard -"lefthook-openbsd-x64@npm:1.9.3": - version: 1.9.3 - resolution: "lefthook-openbsd-x64@npm:1.9.3" +"lefthook-openbsd-x64@npm:1.10.0": + version: 1.10.0 + resolution: "lefthook-openbsd-x64@npm:1.10.0" conditions: os=openbsd & cpu=x64 languageName: node linkType: hard -"lefthook-windows-arm64@npm:1.9.3": - version: 1.9.3 - resolution: "lefthook-windows-arm64@npm:1.9.3" +"lefthook-windows-arm64@npm:1.10.0": + version: 1.10.0 + resolution: "lefthook-windows-arm64@npm:1.10.0" conditions: os=win32 & cpu=arm64 languageName: node linkType: hard -"lefthook-windows-x64@npm:1.9.3": - version: 1.9.3 - resolution: "lefthook-windows-x64@npm:1.9.3" +"lefthook-windows-x64@npm:1.10.0": + version: 1.10.0 + resolution: "lefthook-windows-x64@npm:1.10.0" conditions: os=win32 & cpu=x64 languageName: node linkType: hard -"lefthook@npm:1.9.3": - version: 1.9.3 - resolution: "lefthook@npm:1.9.3" - dependencies: - lefthook-darwin-arm64: "npm:1.9.3" - lefthook-darwin-x64: "npm:1.9.3" - lefthook-freebsd-arm64: "npm:1.9.3" - lefthook-freebsd-x64: "npm:1.9.3" - lefthook-linux-arm64: "npm:1.9.3" - lefthook-linux-x64: "npm:1.9.3" - lefthook-openbsd-arm64: "npm:1.9.3" - lefthook-openbsd-x64: "npm:1.9.3" - lefthook-windows-arm64: "npm:1.9.3" - lefthook-windows-x64: "npm:1.9.3" +"lefthook@npm:1.10.0": + version: 1.10.0 + resolution: "lefthook@npm:1.10.0" + dependencies: + lefthook-darwin-arm64: "npm:1.10.0" + lefthook-darwin-x64: "npm:1.10.0" + lefthook-freebsd-arm64: "npm:1.10.0" + lefthook-freebsd-x64: "npm:1.10.0" + lefthook-linux-arm64: "npm:1.10.0" + lefthook-linux-x64: "npm:1.10.0" + lefthook-openbsd-arm64: "npm:1.10.0" + lefthook-openbsd-x64: "npm:1.10.0" + lefthook-windows-arm64: "npm:1.10.0" + lefthook-windows-x64: "npm:1.10.0" dependenciesMeta: lefthook-darwin-arm64: optional: true @@ -33375,7 +33375,7 @@ __metadata: optional: true bin: lefthook: bin/index.js - checksum: 10c0/cc2afaca7732a12957efd678ef295cba3d099cfc4a32800b15862dc1094e0b4ad597fb9886f4590075c3da71a3129f0bccb386eead9914ac56732ef20b6fd9ea + checksum: 10c0/860fcc73ae9940c4f4bec5f2dda706270d5ebd89a52f7ba1935224df61fcce99998990751983e299bc8cc17c2fc8ecd21c497cde2f8899512f20169e09769256 languageName: node linkType: hard From 45a703d8b425ca278063d1baa021adac066863d5 Mon Sep 17 00:00:00 2001 From: "hash-worker[bot]" <180894564+hash-worker[bot]@users.noreply.github.com> Date: Thu, 19 Dec 2024 23:25:49 +0000 Subject: [PATCH 072/159] Update Rust crate `foldhash` to v0.1.4 (#5979) Co-authored-by: hash-worker[bot] <180894564+hash-worker[bot]@users.noreply.github.com> --- Cargo.lock | 4 ++-- Cargo.toml | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index d4a24153e89..77a55e8b9b2 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -2136,9 +2136,9 @@ checksum = "3f9eec918d3f24069decb9af1554cad7c880e2da24a9afd88aca000531ab82c1" [[package]] name = "foldhash" -version = "0.1.3" +version = "0.1.4" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "f81ec6369c545a7d40e4589b5597581fa1c441fe1cce96dd1de43159910a36a2" +checksum = "a0d2fde1f7b3d48b8395d5f2de76c18a528bd6a9cdde438df747bfcba3e05d6f" [[package]] name = "form_urlencoded" diff --git a/Cargo.toml b/Cargo.toml index 3f0655b2bcb..5a6fd1a40d7 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -103,7 +103,7 @@ ecow = { version = "=0.2.3", default-features = false } email_address = { version = "=0.2.9", default-features = false } enumflags2 = { version = "=0.7.10", default-features = false } erased-serde = { version = "=0.4.5", default-features = false } -foldhash = { version = "=0.1.3", default-features = false } +foldhash = { version = "=0.1.4", default-features = false } frunk = { version = "0.4.3", default-features = false } futures-channel = { version = "=0.3.31", default-features = false } futures-core = { version = "=0.3.31", default-features = false } From 1b119cd3b1b22f3b1f683998299d03458374d811 Mon Sep 17 00:00:00 2001 From: "hash-worker[bot]" <180894564+hash-worker[bot]@users.noreply.github.com> Date: Thu, 19 Dec 2024 23:31:00 +0000 Subject: [PATCH 073/159] Update npm package `react-pdf` to v9.2.1 (#5980) Co-authored-by: hash-worker[bot] <180894564+hash-worker[bot]@users.noreply.github.com> --- apps/hash-frontend/package.json | 2 +- yarn.lock | 10 +++++----- 2 files changed, 6 insertions(+), 6 deletions(-) diff --git a/apps/hash-frontend/package.json b/apps/hash-frontend/package.json index 24ca9dc2896..581bf9c1801 100644 --- a/apps/hash-frontend/package.json +++ b/apps/hash-frontend/package.json @@ -108,7 +108,7 @@ "react-full-screen": "1.1.1", "react-hook-form": "7.54.1", "react-markdown": "9.0.1", - "react-pdf": "9.2.0", + "react-pdf": "9.2.1", "react-responsive-carousel": "3.2.23", "react-transition-group": "4.4.5", "react-virtuoso": "4.12.3", diff --git a/yarn.lock b/yarn.lock index 11fec5a56ad..b4eb0ae738e 100644 --- a/yarn.lock +++ b/yarn.lock @@ -575,7 +575,7 @@ __metadata: react-full-screen: "npm:1.1.1" react-hook-form: "npm:7.54.1" react-markdown: "npm:9.0.1" - react-pdf: "npm:9.2.0" + react-pdf: "npm:9.2.1" react-responsive-carousel: "npm:3.2.23" react-transition-group: "npm:4.4.5" react-virtuoso: "npm:4.12.3" @@ -40929,9 +40929,9 @@ __metadata: languageName: node linkType: hard -"react-pdf@npm:9.2.0": - version: 9.2.0 - resolution: "react-pdf@npm:9.2.0" +"react-pdf@npm:9.2.1": + version: 9.2.1 + resolution: "react-pdf@npm:9.2.1" dependencies: clsx: "npm:^2.0.0" dequal: "npm:^2.0.3" @@ -40948,7 +40948,7 @@ __metadata: peerDependenciesMeta: "@types/react": optional: true - checksum: 10c0/8f41a86196e309fc1eb255343bb512c18c65bee5cf19df46d7eb063125c0aae563777b58799121e7e622d6c9e4ab8f69d4c60b0f1d51887e2cb1327274992d05 + checksum: 10c0/69b5456b3941ea08f03319a94b155db782232dee4b3e03513c4a4c10cc3d81d129fc3284136990b51d5dcf766192abc64d71e1d258ca7e0eb4e6592343fea6a4 languageName: node linkType: hard From c523277faeafaac38f28c004ef01b3f891cfee42 Mon Sep 17 00:00:00 2001 From: "hash-worker[bot]" <180894564+hash-worker[bot]@users.noreply.github.com> Date: Thu, 19 Dec 2024 23:36:32 +0000 Subject: [PATCH 074/159] Update aws-sdk-js-v3 monorepo to v3.716.0 (#5981) Co-authored-by: hash-worker[bot] <180894564+hash-worker[bot]@users.noreply.github.com> --- apps/hash-api/package.json | 10 +- libs/@local/hash-backend-utils/package.json | 4 +- yarn.lock | 398 ++++++++++---------- 3 files changed, 206 insertions(+), 206 deletions(-) diff --git a/apps/hash-api/package.json b/apps/hash-api/package.json index 67aa07e29e9..a5b30c6e759 100644 --- a/apps/hash-api/package.json +++ b/apps/hash-api/package.json @@ -24,11 +24,11 @@ }, "dependencies": { "@apps/hash-graph": "0.0.0-private", - "@aws-sdk/client-s3": "3.715.0", - "@aws-sdk/client-ses": "3.714.0", - "@aws-sdk/credential-provider-node": "3.714.0", - "@aws-sdk/s3-presigned-post": "3.715.0", - "@aws-sdk/s3-request-presigner": "3.715.0", + "@aws-sdk/client-s3": "3.716.0", + "@aws-sdk/client-ses": "3.716.0", + "@aws-sdk/credential-provider-node": "3.716.0", + "@aws-sdk/s3-presigned-post": "3.716.0", + "@aws-sdk/s3-request-presigner": "3.716.0", "@blockprotocol/core": "0.1.3", "@blockprotocol/type-system": "0.1.2-canary.0", "@graphql-tools/schema": "8.5.1", diff --git a/libs/@local/hash-backend-utils/package.json b/libs/@local/hash-backend-utils/package.json index 7d44a88a002..3a0542d17be 100644 --- a/libs/@local/hash-backend-utils/package.json +++ b/libs/@local/hash-backend-utils/package.json @@ -23,8 +23,8 @@ "test:unit": "vitest --run" }, "dependencies": { - "@aws-sdk/client-s3": "3.715.0", - "@aws-sdk/s3-request-presigner": "3.715.0", + "@aws-sdk/client-s3": "3.716.0", + "@aws-sdk/s3-request-presigner": "3.716.0", "@blockprotocol/core": "0.1.3", "@blockprotocol/graph": "0.4.0-canary.0", "@blockprotocol/type-system": "0.1.2-canary.0", diff --git a/yarn.lock b/yarn.lock index b4eb0ae738e..86302e37628 100644 --- a/yarn.lock +++ b/yarn.lock @@ -345,11 +345,11 @@ __metadata: resolution: "@apps/hash-api@workspace:apps/hash-api" dependencies: "@apps/hash-graph": "npm:0.0.0-private" - "@aws-sdk/client-s3": "npm:3.715.0" - "@aws-sdk/client-ses": "npm:3.714.0" - "@aws-sdk/credential-provider-node": "npm:3.714.0" - "@aws-sdk/s3-presigned-post": "npm:3.715.0" - "@aws-sdk/s3-request-presigner": "npm:3.715.0" + "@aws-sdk/client-s3": "npm:3.716.0" + "@aws-sdk/client-ses": "npm:3.716.0" + "@aws-sdk/credential-provider-node": "npm:3.716.0" + "@aws-sdk/s3-presigned-post": "npm:3.716.0" + "@aws-sdk/s3-request-presigner": "npm:3.716.0" "@blockprotocol/core": "npm:0.1.3" "@blockprotocol/graph": "npm:0.4.0-canary.0" "@blockprotocol/type-system": "npm:0.1.2-canary.0" @@ -1269,33 +1269,33 @@ __metadata: languageName: node linkType: hard -"@aws-sdk/client-s3@npm:3.715.0": - version: 3.715.0 - resolution: "@aws-sdk/client-s3@npm:3.715.0" +"@aws-sdk/client-s3@npm:3.716.0": + version: 3.716.0 + resolution: "@aws-sdk/client-s3@npm:3.716.0" dependencies: "@aws-crypto/sha1-browser": "npm:5.2.0" "@aws-crypto/sha256-browser": "npm:5.2.0" "@aws-crypto/sha256-js": "npm:5.2.0" - "@aws-sdk/client-sso-oidc": "npm:3.714.0" - "@aws-sdk/client-sts": "npm:3.714.0" - "@aws-sdk/core": "npm:3.714.0" - "@aws-sdk/credential-provider-node": "npm:3.714.0" + "@aws-sdk/client-sso-oidc": "npm:3.716.0" + "@aws-sdk/client-sts": "npm:3.716.0" + "@aws-sdk/core": "npm:3.716.0" + "@aws-sdk/credential-provider-node": "npm:3.716.0" "@aws-sdk/middleware-bucket-endpoint": "npm:3.714.0" "@aws-sdk/middleware-expect-continue": "npm:3.714.0" - "@aws-sdk/middleware-flexible-checksums": "npm:3.715.0" + "@aws-sdk/middleware-flexible-checksums": "npm:3.716.0" "@aws-sdk/middleware-host-header": "npm:3.714.0" "@aws-sdk/middleware-location-constraint": "npm:3.714.0" "@aws-sdk/middleware-logger": "npm:3.714.0" "@aws-sdk/middleware-recursion-detection": "npm:3.714.0" - "@aws-sdk/middleware-sdk-s3": "npm:3.714.0" + "@aws-sdk/middleware-sdk-s3": "npm:3.716.0" "@aws-sdk/middleware-ssec": "npm:3.714.0" - "@aws-sdk/middleware-user-agent": "npm:3.714.0" + "@aws-sdk/middleware-user-agent": "npm:3.716.0" "@aws-sdk/region-config-resolver": "npm:3.714.0" - "@aws-sdk/signature-v4-multi-region": "npm:3.714.0" + "@aws-sdk/signature-v4-multi-region": "npm:3.716.0" "@aws-sdk/types": "npm:3.714.0" "@aws-sdk/util-endpoints": "npm:3.714.0" "@aws-sdk/util-user-agent-browser": "npm:3.714.0" - "@aws-sdk/util-user-agent-node": "npm:3.714.0" + "@aws-sdk/util-user-agent-node": "npm:3.716.0" "@aws-sdk/xml-builder": "npm:3.709.0" "@smithy/config-resolver": "npm:^3.0.13" "@smithy/core": "npm:^2.5.5" @@ -1309,21 +1309,21 @@ __metadata: "@smithy/invalid-dependency": "npm:^3.0.11" "@smithy/md5-js": "npm:^3.0.11" "@smithy/middleware-content-length": "npm:^3.0.13" - "@smithy/middleware-endpoint": "npm:^3.2.5" - "@smithy/middleware-retry": "npm:^3.0.30" + "@smithy/middleware-endpoint": "npm:^3.2.6" + "@smithy/middleware-retry": "npm:^3.0.31" "@smithy/middleware-serde": "npm:^3.0.11" "@smithy/middleware-stack": "npm:^3.0.11" "@smithy/node-config-provider": "npm:^3.1.12" "@smithy/node-http-handler": "npm:^3.3.2" "@smithy/protocol-http": "npm:^4.1.8" - "@smithy/smithy-client": "npm:^3.5.0" + "@smithy/smithy-client": "npm:^3.5.1" "@smithy/types": "npm:^3.7.2" "@smithy/url-parser": "npm:^3.0.11" "@smithy/util-base64": "npm:^3.0.0" "@smithy/util-body-length-browser": "npm:^3.0.0" "@smithy/util-body-length-node": "npm:^3.0.0" - "@smithy/util-defaults-mode-browser": "npm:^3.0.30" - "@smithy/util-defaults-mode-node": "npm:^3.0.30" + "@smithy/util-defaults-mode-browser": "npm:^3.0.31" + "@smithy/util-defaults-mode-node": "npm:^3.0.31" "@smithy/util-endpoints": "npm:^2.1.7" "@smithy/util-middleware": "npm:^3.0.11" "@smithy/util-retry": "npm:^3.0.11" @@ -1331,7 +1331,7 @@ __metadata: "@smithy/util-utf8": "npm:^3.0.0" "@smithy/util-waiter": "npm:^3.2.0" tslib: "npm:^2.6.2" - checksum: 10c0/4c73662a308e893271019fcc90a4505f319ab61f5d36dca6d71d00f215f151dfea703f9f106259a2b705d567fa941e71dd72ab985c596bb453751b85561210e9 + checksum: 10c0/94606f8f54c8aca44d0cf44f341199894ae8163b125a0fc7abf5a05d42047779d62cca9cc612ec7c62ff8fd4fa29bd2af0ce23b187bdbae52ad95148276fbf56 languageName: node linkType: hard @@ -1387,53 +1387,53 @@ __metadata: languageName: node linkType: hard -"@aws-sdk/client-ses@npm:3.714.0": - version: 3.714.0 - resolution: "@aws-sdk/client-ses@npm:3.714.0" +"@aws-sdk/client-ses@npm:3.716.0": + version: 3.716.0 + resolution: "@aws-sdk/client-ses@npm:3.716.0" dependencies: "@aws-crypto/sha256-browser": "npm:5.2.0" "@aws-crypto/sha256-js": "npm:5.2.0" - "@aws-sdk/client-sso-oidc": "npm:3.714.0" - "@aws-sdk/client-sts": "npm:3.714.0" - "@aws-sdk/core": "npm:3.714.0" - "@aws-sdk/credential-provider-node": "npm:3.714.0" + "@aws-sdk/client-sso-oidc": "npm:3.716.0" + "@aws-sdk/client-sts": "npm:3.716.0" + "@aws-sdk/core": "npm:3.716.0" + "@aws-sdk/credential-provider-node": "npm:3.716.0" "@aws-sdk/middleware-host-header": "npm:3.714.0" "@aws-sdk/middleware-logger": "npm:3.714.0" "@aws-sdk/middleware-recursion-detection": "npm:3.714.0" - "@aws-sdk/middleware-user-agent": "npm:3.714.0" + "@aws-sdk/middleware-user-agent": "npm:3.716.0" "@aws-sdk/region-config-resolver": "npm:3.714.0" "@aws-sdk/types": "npm:3.714.0" "@aws-sdk/util-endpoints": "npm:3.714.0" "@aws-sdk/util-user-agent-browser": "npm:3.714.0" - "@aws-sdk/util-user-agent-node": "npm:3.714.0" + "@aws-sdk/util-user-agent-node": "npm:3.716.0" "@smithy/config-resolver": "npm:^3.0.13" "@smithy/core": "npm:^2.5.5" "@smithy/fetch-http-handler": "npm:^4.1.2" "@smithy/hash-node": "npm:^3.0.11" "@smithy/invalid-dependency": "npm:^3.0.11" "@smithy/middleware-content-length": "npm:^3.0.13" - "@smithy/middleware-endpoint": "npm:^3.2.5" - "@smithy/middleware-retry": "npm:^3.0.30" + "@smithy/middleware-endpoint": "npm:^3.2.6" + "@smithy/middleware-retry": "npm:^3.0.31" "@smithy/middleware-serde": "npm:^3.0.11" "@smithy/middleware-stack": "npm:^3.0.11" "@smithy/node-config-provider": "npm:^3.1.12" "@smithy/node-http-handler": "npm:^3.3.2" "@smithy/protocol-http": "npm:^4.1.8" - "@smithy/smithy-client": "npm:^3.5.0" + "@smithy/smithy-client": "npm:^3.5.1" "@smithy/types": "npm:^3.7.2" "@smithy/url-parser": "npm:^3.0.11" "@smithy/util-base64": "npm:^3.0.0" "@smithy/util-body-length-browser": "npm:^3.0.0" "@smithy/util-body-length-node": "npm:^3.0.0" - "@smithy/util-defaults-mode-browser": "npm:^3.0.30" - "@smithy/util-defaults-mode-node": "npm:^3.0.30" + "@smithy/util-defaults-mode-browser": "npm:^3.0.31" + "@smithy/util-defaults-mode-node": "npm:^3.0.31" "@smithy/util-endpoints": "npm:^2.1.7" "@smithy/util-middleware": "npm:^3.0.11" "@smithy/util-retry": "npm:^3.0.11" "@smithy/util-utf8": "npm:^3.0.0" "@smithy/util-waiter": "npm:^3.2.0" tslib: "npm:^2.6.2" - checksum: 10c0/5330fd980bbb4fdcbe530ce4deb91e9f93eb7ceaf751013d0b411cc7e7623c93ca12036afdf6102e7afcba8cec972f8be011f0735626331acc3abb5c50d52ff2 + checksum: 10c0/db39998267f540b751f457e50a4c6df2c2a8faede78d48506b2a942a43a0428c71f8340df4a77b1548abc4cab1fd4cc5594c3c972e41a3694b89b1e62500a879 languageName: node linkType: hard @@ -1486,52 +1486,52 @@ __metadata: languageName: node linkType: hard -"@aws-sdk/client-sso-oidc@npm:3.714.0, @aws-sdk/client-sso-oidc@npm:^3.693.0": - version: 3.714.0 - resolution: "@aws-sdk/client-sso-oidc@npm:3.714.0" +"@aws-sdk/client-sso-oidc@npm:3.716.0, @aws-sdk/client-sso-oidc@npm:^3.693.0": + version: 3.716.0 + resolution: "@aws-sdk/client-sso-oidc@npm:3.716.0" dependencies: "@aws-crypto/sha256-browser": "npm:5.2.0" "@aws-crypto/sha256-js": "npm:5.2.0" - "@aws-sdk/core": "npm:3.714.0" - "@aws-sdk/credential-provider-node": "npm:3.714.0" + "@aws-sdk/core": "npm:3.716.0" + "@aws-sdk/credential-provider-node": "npm:3.716.0" "@aws-sdk/middleware-host-header": "npm:3.714.0" "@aws-sdk/middleware-logger": "npm:3.714.0" "@aws-sdk/middleware-recursion-detection": "npm:3.714.0" - "@aws-sdk/middleware-user-agent": "npm:3.714.0" + "@aws-sdk/middleware-user-agent": "npm:3.716.0" "@aws-sdk/region-config-resolver": "npm:3.714.0" "@aws-sdk/types": "npm:3.714.0" "@aws-sdk/util-endpoints": "npm:3.714.0" "@aws-sdk/util-user-agent-browser": "npm:3.714.0" - "@aws-sdk/util-user-agent-node": "npm:3.714.0" + "@aws-sdk/util-user-agent-node": "npm:3.716.0" "@smithy/config-resolver": "npm:^3.0.13" "@smithy/core": "npm:^2.5.5" "@smithy/fetch-http-handler": "npm:^4.1.2" "@smithy/hash-node": "npm:^3.0.11" "@smithy/invalid-dependency": "npm:^3.0.11" "@smithy/middleware-content-length": "npm:^3.0.13" - "@smithy/middleware-endpoint": "npm:^3.2.5" - "@smithy/middleware-retry": "npm:^3.0.30" + "@smithy/middleware-endpoint": "npm:^3.2.6" + "@smithy/middleware-retry": "npm:^3.0.31" "@smithy/middleware-serde": "npm:^3.0.11" "@smithy/middleware-stack": "npm:^3.0.11" "@smithy/node-config-provider": "npm:^3.1.12" "@smithy/node-http-handler": "npm:^3.3.2" "@smithy/protocol-http": "npm:^4.1.8" - "@smithy/smithy-client": "npm:^3.5.0" + "@smithy/smithy-client": "npm:^3.5.1" "@smithy/types": "npm:^3.7.2" "@smithy/url-parser": "npm:^3.0.11" "@smithy/util-base64": "npm:^3.0.0" "@smithy/util-body-length-browser": "npm:^3.0.0" "@smithy/util-body-length-node": "npm:^3.0.0" - "@smithy/util-defaults-mode-browser": "npm:^3.0.30" - "@smithy/util-defaults-mode-node": "npm:^3.0.30" + "@smithy/util-defaults-mode-browser": "npm:^3.0.31" + "@smithy/util-defaults-mode-node": "npm:^3.0.31" "@smithy/util-endpoints": "npm:^2.1.7" "@smithy/util-middleware": "npm:^3.0.11" "@smithy/util-retry": "npm:^3.0.11" "@smithy/util-utf8": "npm:^3.0.0" tslib: "npm:^2.6.2" peerDependencies: - "@aws-sdk/client-sts": ^3.714.0 - checksum: 10c0/ec17ba502e535c3dfa6d96ccdbd78ce6585ea3e602b8e683fe24842c9640e76e2cd4f8e1603767873e98aba6b85c6696e890b7ad46a90de562e96f267120d450 + "@aws-sdk/client-sts": ^3.716.0 + checksum: 10c0/56c158846b2ff895565ff1da0f677d7959700288cf3dc44e7bd17ef87d6188233f6a331d1ded0e91df0068083ef28d50024016a90f5405f55b877b6c7130c7b0 languageName: node linkType: hard @@ -1581,49 +1581,49 @@ __metadata: languageName: node linkType: hard -"@aws-sdk/client-sso@npm:3.714.0": - version: 3.714.0 - resolution: "@aws-sdk/client-sso@npm:3.714.0" +"@aws-sdk/client-sso@npm:3.716.0": + version: 3.716.0 + resolution: "@aws-sdk/client-sso@npm:3.716.0" dependencies: "@aws-crypto/sha256-browser": "npm:5.2.0" "@aws-crypto/sha256-js": "npm:5.2.0" - "@aws-sdk/core": "npm:3.714.0" + "@aws-sdk/core": "npm:3.716.0" "@aws-sdk/middleware-host-header": "npm:3.714.0" "@aws-sdk/middleware-logger": "npm:3.714.0" "@aws-sdk/middleware-recursion-detection": "npm:3.714.0" - "@aws-sdk/middleware-user-agent": "npm:3.714.0" + "@aws-sdk/middleware-user-agent": "npm:3.716.0" "@aws-sdk/region-config-resolver": "npm:3.714.0" "@aws-sdk/types": "npm:3.714.0" "@aws-sdk/util-endpoints": "npm:3.714.0" "@aws-sdk/util-user-agent-browser": "npm:3.714.0" - "@aws-sdk/util-user-agent-node": "npm:3.714.0" + "@aws-sdk/util-user-agent-node": "npm:3.716.0" "@smithy/config-resolver": "npm:^3.0.13" "@smithy/core": "npm:^2.5.5" "@smithy/fetch-http-handler": "npm:^4.1.2" "@smithy/hash-node": "npm:^3.0.11" "@smithy/invalid-dependency": "npm:^3.0.11" "@smithy/middleware-content-length": "npm:^3.0.13" - "@smithy/middleware-endpoint": "npm:^3.2.5" - "@smithy/middleware-retry": "npm:^3.0.30" + "@smithy/middleware-endpoint": "npm:^3.2.6" + "@smithy/middleware-retry": "npm:^3.0.31" "@smithy/middleware-serde": "npm:^3.0.11" "@smithy/middleware-stack": "npm:^3.0.11" "@smithy/node-config-provider": "npm:^3.1.12" "@smithy/node-http-handler": "npm:^3.3.2" "@smithy/protocol-http": "npm:^4.1.8" - "@smithy/smithy-client": "npm:^3.5.0" + "@smithy/smithy-client": "npm:^3.5.1" "@smithy/types": "npm:^3.7.2" "@smithy/url-parser": "npm:^3.0.11" "@smithy/util-base64": "npm:^3.0.0" "@smithy/util-body-length-browser": "npm:^3.0.0" "@smithy/util-body-length-node": "npm:^3.0.0" - "@smithy/util-defaults-mode-browser": "npm:^3.0.30" - "@smithy/util-defaults-mode-node": "npm:^3.0.30" + "@smithy/util-defaults-mode-browser": "npm:^3.0.31" + "@smithy/util-defaults-mode-node": "npm:^3.0.31" "@smithy/util-endpoints": "npm:^2.1.7" "@smithy/util-middleware": "npm:^3.0.11" "@smithy/util-retry": "npm:^3.0.11" "@smithy/util-utf8": "npm:^3.0.0" tslib: "npm:^2.6.2" - checksum: 10c0/089f06949e93600639e2f7e4ac3ddcc6456577cc7a5315af478b44b4be35ad3de729218e4de0c43b7e143210e8e8abb2da752fb11011f53718549a76371f14b9 + checksum: 10c0/5c30caf6e21800974ff4c7f1dce230cfd7cfd4be146e356b19c0a4690b6123f23095f32eb73fa96b389f729975bbd5fbfe05c3d940f958c4f2a884fe4b9d44b4 languageName: node linkType: hard @@ -1675,51 +1675,51 @@ __metadata: languageName: node linkType: hard -"@aws-sdk/client-sts@npm:3.714.0": - version: 3.714.0 - resolution: "@aws-sdk/client-sts@npm:3.714.0" +"@aws-sdk/client-sts@npm:3.716.0": + version: 3.716.0 + resolution: "@aws-sdk/client-sts@npm:3.716.0" dependencies: "@aws-crypto/sha256-browser": "npm:5.2.0" "@aws-crypto/sha256-js": "npm:5.2.0" - "@aws-sdk/client-sso-oidc": "npm:3.714.0" - "@aws-sdk/core": "npm:3.714.0" - "@aws-sdk/credential-provider-node": "npm:3.714.0" + "@aws-sdk/client-sso-oidc": "npm:3.716.0" + "@aws-sdk/core": "npm:3.716.0" + "@aws-sdk/credential-provider-node": "npm:3.716.0" "@aws-sdk/middleware-host-header": "npm:3.714.0" "@aws-sdk/middleware-logger": "npm:3.714.0" "@aws-sdk/middleware-recursion-detection": "npm:3.714.0" - "@aws-sdk/middleware-user-agent": "npm:3.714.0" + "@aws-sdk/middleware-user-agent": "npm:3.716.0" "@aws-sdk/region-config-resolver": "npm:3.714.0" "@aws-sdk/types": "npm:3.714.0" "@aws-sdk/util-endpoints": "npm:3.714.0" "@aws-sdk/util-user-agent-browser": "npm:3.714.0" - "@aws-sdk/util-user-agent-node": "npm:3.714.0" + "@aws-sdk/util-user-agent-node": "npm:3.716.0" "@smithy/config-resolver": "npm:^3.0.13" "@smithy/core": "npm:^2.5.5" "@smithy/fetch-http-handler": "npm:^4.1.2" "@smithy/hash-node": "npm:^3.0.11" "@smithy/invalid-dependency": "npm:^3.0.11" "@smithy/middleware-content-length": "npm:^3.0.13" - "@smithy/middleware-endpoint": "npm:^3.2.5" - "@smithy/middleware-retry": "npm:^3.0.30" + "@smithy/middleware-endpoint": "npm:^3.2.6" + "@smithy/middleware-retry": "npm:^3.0.31" "@smithy/middleware-serde": "npm:^3.0.11" "@smithy/middleware-stack": "npm:^3.0.11" "@smithy/node-config-provider": "npm:^3.1.12" "@smithy/node-http-handler": "npm:^3.3.2" "@smithy/protocol-http": "npm:^4.1.8" - "@smithy/smithy-client": "npm:^3.5.0" + "@smithy/smithy-client": "npm:^3.5.1" "@smithy/types": "npm:^3.7.2" "@smithy/url-parser": "npm:^3.0.11" "@smithy/util-base64": "npm:^3.0.0" "@smithy/util-body-length-browser": "npm:^3.0.0" "@smithy/util-body-length-node": "npm:^3.0.0" - "@smithy/util-defaults-mode-browser": "npm:^3.0.30" - "@smithy/util-defaults-mode-node": "npm:^3.0.30" + "@smithy/util-defaults-mode-browser": "npm:^3.0.31" + "@smithy/util-defaults-mode-node": "npm:^3.0.31" "@smithy/util-endpoints": "npm:^2.1.7" "@smithy/util-middleware": "npm:^3.0.11" "@smithy/util-retry": "npm:^3.0.11" "@smithy/util-utf8": "npm:^3.0.0" tslib: "npm:^2.6.2" - checksum: 10c0/f73988f30b16154695fc04924ea9c41ad6a3accbc9dc8d0e748ae374c2384fc5c2d7efce4d9df7189d4034b9c36a02065c5f1fb52accd0f1a5c90d8fa638c106 + checksum: 10c0/3a0a408f264260781dcf992028c60c8dbfad1acf00ae3590db07b1d52d931a05ffbe7f6709783ac8385dc79f44f0427054d21a89333faddd8c50f62eb354f854 languageName: node linkType: hard @@ -1742,9 +1742,9 @@ __metadata: languageName: node linkType: hard -"@aws-sdk/core@npm:3.714.0": - version: 3.714.0 - resolution: "@aws-sdk/core@npm:3.714.0" +"@aws-sdk/core@npm:3.716.0": + version: 3.716.0 + resolution: "@aws-sdk/core@npm:3.716.0" dependencies: "@aws-sdk/types": "npm:3.714.0" "@smithy/core": "npm:^2.5.5" @@ -1752,12 +1752,12 @@ __metadata: "@smithy/property-provider": "npm:^3.1.11" "@smithy/protocol-http": "npm:^4.1.8" "@smithy/signature-v4": "npm:^4.2.4" - "@smithy/smithy-client": "npm:^3.5.0" + "@smithy/smithy-client": "npm:^3.5.1" "@smithy/types": "npm:^3.7.2" "@smithy/util-middleware": "npm:^3.0.11" fast-xml-parser: "npm:4.4.1" tslib: "npm:^2.6.2" - checksum: 10c0/a7cbf60236eef2a40391e4a5ce88e5fd8b8db4011648598230cd43c4ed6639882dba7383ddf1a7b55ef3382341375071bbe5ece10c08e26a757bd8d0ccdb398c + checksum: 10c0/d11deccbe6b33f91f951fa317793d56359e87a1871772e429519df2d488929a9d9c230aa6be501446980b8e9c01fc549970c28b6d1eeff23f53955e57b021db7 languageName: node linkType: hard @@ -1787,16 +1787,16 @@ __metadata: languageName: node linkType: hard -"@aws-sdk/credential-provider-env@npm:3.714.0": - version: 3.714.0 - resolution: "@aws-sdk/credential-provider-env@npm:3.714.0" +"@aws-sdk/credential-provider-env@npm:3.716.0": + version: 3.716.0 + resolution: "@aws-sdk/credential-provider-env@npm:3.716.0" dependencies: - "@aws-sdk/core": "npm:3.714.0" + "@aws-sdk/core": "npm:3.716.0" "@aws-sdk/types": "npm:3.714.0" "@smithy/property-provider": "npm:^3.1.11" "@smithy/types": "npm:^3.7.2" tslib: "npm:^2.6.2" - checksum: 10c0/f968166492b8791b0428a28b17f6cd1d61d925bab646b97dad4d55ee116095a1fc2f7032b2caff81a033170fd1271d1177a18be7b5c73b885daccc7946da912e + checksum: 10c0/00f197f9e5f49f596357b620415d85084150f794cd908838b36d9cb6e537832db530e7975c12a8d66a0e711f5c32c57453131ba1f463392e257ce6f0625a5c2a languageName: node linkType: hard @@ -1818,21 +1818,21 @@ __metadata: languageName: node linkType: hard -"@aws-sdk/credential-provider-http@npm:3.714.0": - version: 3.714.0 - resolution: "@aws-sdk/credential-provider-http@npm:3.714.0" +"@aws-sdk/credential-provider-http@npm:3.716.0": + version: 3.716.0 + resolution: "@aws-sdk/credential-provider-http@npm:3.716.0" dependencies: - "@aws-sdk/core": "npm:3.714.0" + "@aws-sdk/core": "npm:3.716.0" "@aws-sdk/types": "npm:3.714.0" "@smithy/fetch-http-handler": "npm:^4.1.2" "@smithy/node-http-handler": "npm:^3.3.2" "@smithy/property-provider": "npm:^3.1.11" "@smithy/protocol-http": "npm:^4.1.8" - "@smithy/smithy-client": "npm:^3.5.0" + "@smithy/smithy-client": "npm:^3.5.1" "@smithy/types": "npm:^3.7.2" "@smithy/util-stream": "npm:^3.3.2" tslib: "npm:^2.6.2" - checksum: 10c0/fd21159d732c09852d25066a61d4862851a88d1522c905d5f748ba73bc4fc2e313da206ba9d9462f1148e99fd67d15b10bd292da55a634f1352b4bf32ad82dc4 + checksum: 10c0/ed342f61d1365b4511392b8eb897bea49b0f7c71ab92bb81748ca036409c1b59eef68cd507e7697e6df2d07f69b7a26bf57172ddde6bed10730152551ba8b603 languageName: node linkType: hard @@ -1858,16 +1858,16 @@ __metadata: languageName: node linkType: hard -"@aws-sdk/credential-provider-ini@npm:3.714.0": - version: 3.714.0 - resolution: "@aws-sdk/credential-provider-ini@npm:3.714.0" - dependencies: - "@aws-sdk/core": "npm:3.714.0" - "@aws-sdk/credential-provider-env": "npm:3.714.0" - "@aws-sdk/credential-provider-http": "npm:3.714.0" - "@aws-sdk/credential-provider-process": "npm:3.714.0" - "@aws-sdk/credential-provider-sso": "npm:3.714.0" - "@aws-sdk/credential-provider-web-identity": "npm:3.714.0" +"@aws-sdk/credential-provider-ini@npm:3.716.0": + version: 3.716.0 + resolution: "@aws-sdk/credential-provider-ini@npm:3.716.0" + dependencies: + "@aws-sdk/core": "npm:3.716.0" + "@aws-sdk/credential-provider-env": "npm:3.716.0" + "@aws-sdk/credential-provider-http": "npm:3.716.0" + "@aws-sdk/credential-provider-process": "npm:3.716.0" + "@aws-sdk/credential-provider-sso": "npm:3.716.0" + "@aws-sdk/credential-provider-web-identity": "npm:3.716.0" "@aws-sdk/types": "npm:3.714.0" "@smithy/credential-provider-imds": "npm:^3.2.8" "@smithy/property-provider": "npm:^3.1.11" @@ -1875,8 +1875,8 @@ __metadata: "@smithy/types": "npm:^3.7.2" tslib: "npm:^2.6.2" peerDependencies: - "@aws-sdk/client-sts": ^3.714.0 - checksum: 10c0/57bf38a93cef4ea3f04cc63923bc7fb4ff8cc58cb50c3d149f2cf602c231307aa822b7fae1a872511f438209a692b54e11ba54d0900acdfd194eb9f90ca8aa38 + "@aws-sdk/client-sts": ^3.716.0 + checksum: 10c0/1282f893a2149f0105f33dc9cfcbfa519b2936e8fc41da4b85fc89b022824c5689f8fc8652c2a03586ea0719e569da64b51414e831667b0c2c79c4e383cc65c6 languageName: node linkType: hard @@ -1900,23 +1900,23 @@ __metadata: languageName: node linkType: hard -"@aws-sdk/credential-provider-node@npm:3.714.0": - version: 3.714.0 - resolution: "@aws-sdk/credential-provider-node@npm:3.714.0" - dependencies: - "@aws-sdk/credential-provider-env": "npm:3.714.0" - "@aws-sdk/credential-provider-http": "npm:3.714.0" - "@aws-sdk/credential-provider-ini": "npm:3.714.0" - "@aws-sdk/credential-provider-process": "npm:3.714.0" - "@aws-sdk/credential-provider-sso": "npm:3.714.0" - "@aws-sdk/credential-provider-web-identity": "npm:3.714.0" +"@aws-sdk/credential-provider-node@npm:3.716.0": + version: 3.716.0 + resolution: "@aws-sdk/credential-provider-node@npm:3.716.0" + dependencies: + "@aws-sdk/credential-provider-env": "npm:3.716.0" + "@aws-sdk/credential-provider-http": "npm:3.716.0" + "@aws-sdk/credential-provider-ini": "npm:3.716.0" + "@aws-sdk/credential-provider-process": "npm:3.716.0" + "@aws-sdk/credential-provider-sso": "npm:3.716.0" + "@aws-sdk/credential-provider-web-identity": "npm:3.716.0" "@aws-sdk/types": "npm:3.714.0" "@smithy/credential-provider-imds": "npm:^3.2.8" "@smithy/property-provider": "npm:^3.1.11" "@smithy/shared-ini-file-loader": "npm:^3.1.12" "@smithy/types": "npm:^3.7.2" tslib: "npm:^2.6.2" - checksum: 10c0/d0dbf11dab53a54fa78b000690d306d2a4d86e8d010c44571d2027a30353ab3a2dc3b2916db5e2e26c788174f6318a96a6a79e1dbdf5bfde5f4d04b0b111eb8d + checksum: 10c0/41955b9098845652ab892e6edea9ce94705ade42be8ccc96f212efd75a2aec7aaf6cd06beaa9c01dd74e7cca1bc0a23571f94b4593034eccfe199603fc353cd0 languageName: node linkType: hard @@ -1934,17 +1934,17 @@ __metadata: languageName: node linkType: hard -"@aws-sdk/credential-provider-process@npm:3.714.0": - version: 3.714.0 - resolution: "@aws-sdk/credential-provider-process@npm:3.714.0" +"@aws-sdk/credential-provider-process@npm:3.716.0": + version: 3.716.0 + resolution: "@aws-sdk/credential-provider-process@npm:3.716.0" dependencies: - "@aws-sdk/core": "npm:3.714.0" + "@aws-sdk/core": "npm:3.716.0" "@aws-sdk/types": "npm:3.714.0" "@smithy/property-provider": "npm:^3.1.11" "@smithy/shared-ini-file-loader": "npm:^3.1.12" "@smithy/types": "npm:^3.7.2" tslib: "npm:^2.6.2" - checksum: 10c0/7a7e54a69e5ba10437d64b37db1fa466498da789d82e5eb24afa897d0b88b5ee0c117825c535a4cbaacb87818f7814e57ab2a83f47ba22ec12e9ee1bc39504d6 + checksum: 10c0/cec748bc9ecf9c029b1e7cdec4722ecae6b4a4653f39c0be03e4901ec9a1745f8d341eb879b374119096490c93dd5746cfc3f1bd0af552462da57e2249646146 languageName: node linkType: hard @@ -1964,19 +1964,19 @@ __metadata: languageName: node linkType: hard -"@aws-sdk/credential-provider-sso@npm:3.714.0": - version: 3.714.0 - resolution: "@aws-sdk/credential-provider-sso@npm:3.714.0" +"@aws-sdk/credential-provider-sso@npm:3.716.0": + version: 3.716.0 + resolution: "@aws-sdk/credential-provider-sso@npm:3.716.0" dependencies: - "@aws-sdk/client-sso": "npm:3.714.0" - "@aws-sdk/core": "npm:3.714.0" + "@aws-sdk/client-sso": "npm:3.716.0" + "@aws-sdk/core": "npm:3.716.0" "@aws-sdk/token-providers": "npm:3.714.0" "@aws-sdk/types": "npm:3.714.0" "@smithy/property-provider": "npm:^3.1.11" "@smithy/shared-ini-file-loader": "npm:^3.1.12" "@smithy/types": "npm:^3.7.2" tslib: "npm:^2.6.2" - checksum: 10c0/38ac8af50a9384cb0ad2745d62d8fe6a2f77fb2967dfe24b47860caeca4017420a67155679a096e08aaadeb666ff72419aac158549d82e4d2c11525b5c69fb23 + checksum: 10c0/5d1e941343164b4246722cc88909cd50966116c2028d9760f2a09b85dae80c1198de682b1f2c1c9d74a62bc8942e4cedb63695782b5b08f167bfef2f09c5abf3 languageName: node linkType: hard @@ -1995,18 +1995,18 @@ __metadata: languageName: node linkType: hard -"@aws-sdk/credential-provider-web-identity@npm:3.714.0": - version: 3.714.0 - resolution: "@aws-sdk/credential-provider-web-identity@npm:3.714.0" +"@aws-sdk/credential-provider-web-identity@npm:3.716.0": + version: 3.716.0 + resolution: "@aws-sdk/credential-provider-web-identity@npm:3.716.0" dependencies: - "@aws-sdk/core": "npm:3.714.0" + "@aws-sdk/core": "npm:3.716.0" "@aws-sdk/types": "npm:3.714.0" "@smithy/property-provider": "npm:^3.1.11" "@smithy/types": "npm:^3.7.2" tslib: "npm:^2.6.2" peerDependencies: - "@aws-sdk/client-sts": ^3.714.0 - checksum: 10c0/7b66f7fd1005779877482de03c8b38de2d08480794971bb6ad6825e49bdeae9beed665c89395d0c8109fb6f984601500a255f88caca3133ba24e73a703e0d5b5 + "@aws-sdk/client-sts": ^3.716.0 + checksum: 10c0/28e5b97cb7ca314c1013a1af867e0853f9e542bd98105af09e58e824abc30f7cdf14a2cfa2b443d449a89a1d94f046db2014ec001d5a99c5df1d34944a1d5631 languageName: node linkType: hard @@ -2062,14 +2062,14 @@ __metadata: languageName: node linkType: hard -"@aws-sdk/middleware-flexible-checksums@npm:3.715.0": - version: 3.715.0 - resolution: "@aws-sdk/middleware-flexible-checksums@npm:3.715.0" +"@aws-sdk/middleware-flexible-checksums@npm:3.716.0": + version: 3.716.0 + resolution: "@aws-sdk/middleware-flexible-checksums@npm:3.716.0" dependencies: "@aws-crypto/crc32": "npm:5.2.0" "@aws-crypto/crc32c": "npm:5.2.0" "@aws-crypto/util": "npm:5.2.0" - "@aws-sdk/core": "npm:3.714.0" + "@aws-sdk/core": "npm:3.716.0" "@aws-sdk/types": "npm:3.714.0" "@smithy/is-array-buffer": "npm:^3.0.0" "@smithy/node-config-provider": "npm:^3.1.12" @@ -2079,7 +2079,7 @@ __metadata: "@smithy/util-stream": "npm:^3.3.2" "@smithy/util-utf8": "npm:^3.0.0" tslib: "npm:^2.6.2" - checksum: 10c0/a2c858da834171794abce56ef3e0693c00e4312d1c63c064339793cf7f3620de4fee7dfcc10f76d00ef158c7d0bd1a6204b80a17ec271de25ecd31877515cb11 + checksum: 10c0/846cbe0ff3c4448ccbbf80f49004a8d0ba25da6bfbf4a16cb22f132c57eebc3af67d316081e1215ebea54c688835214d062c2b3e7bff8f55c5ef526f59a6b5bd languageName: node linkType: hard @@ -2164,25 +2164,25 @@ __metadata: languageName: node linkType: hard -"@aws-sdk/middleware-sdk-s3@npm:3.714.0": - version: 3.714.0 - resolution: "@aws-sdk/middleware-sdk-s3@npm:3.714.0" +"@aws-sdk/middleware-sdk-s3@npm:3.716.0": + version: 3.716.0 + resolution: "@aws-sdk/middleware-sdk-s3@npm:3.716.0" dependencies: - "@aws-sdk/core": "npm:3.714.0" + "@aws-sdk/core": "npm:3.716.0" "@aws-sdk/types": "npm:3.714.0" "@aws-sdk/util-arn-parser": "npm:3.693.0" "@smithy/core": "npm:^2.5.5" "@smithy/node-config-provider": "npm:^3.1.12" "@smithy/protocol-http": "npm:^4.1.8" "@smithy/signature-v4": "npm:^4.2.4" - "@smithy/smithy-client": "npm:^3.5.0" + "@smithy/smithy-client": "npm:^3.5.1" "@smithy/types": "npm:^3.7.2" "@smithy/util-config-provider": "npm:^3.0.0" "@smithy/util-middleware": "npm:^3.0.11" "@smithy/util-stream": "npm:^3.3.2" "@smithy/util-utf8": "npm:^3.0.0" tslib: "npm:^2.6.2" - checksum: 10c0/d7d779aedcbd5c9d4776ff09762d862e2a66f13f8856f19855da973d6debaafcd0b8d1a5c1b2ae615298ff6f76bc78679c48d66a4ecf0deea7d584f6e6a0616a + checksum: 10c0/dadd75dcceb88b3576c38efd853159ac76fe0a8b5723dd8de20b6b94a7689beca2352e53ec229dede634ea0971335258d135b25e4e4649cbc562b5ecb951103d languageName: node linkType: hard @@ -2212,18 +2212,18 @@ __metadata: languageName: node linkType: hard -"@aws-sdk/middleware-user-agent@npm:3.714.0": - version: 3.714.0 - resolution: "@aws-sdk/middleware-user-agent@npm:3.714.0" +"@aws-sdk/middleware-user-agent@npm:3.716.0": + version: 3.716.0 + resolution: "@aws-sdk/middleware-user-agent@npm:3.716.0" dependencies: - "@aws-sdk/core": "npm:3.714.0" + "@aws-sdk/core": "npm:3.716.0" "@aws-sdk/types": "npm:3.714.0" "@aws-sdk/util-endpoints": "npm:3.714.0" "@smithy/core": "npm:^2.5.5" "@smithy/protocol-http": "npm:^4.1.8" "@smithy/types": "npm:^3.7.2" tslib: "npm:^2.6.2" - checksum: 10c0/98379fe4cc5cc95ececb5ed892c4a310da1a80b6e75e8abb28c482838b1f9442c93d2d813542eaea04fb244e1b589b0100ccfebe5d711b463a3324695f245a04 + checksum: 10c0/b66356f04adfda722910c2ddabed763fa40af0e9988c37b6dd7f6fb805538122100dbfb4332caa141fdaf0dd2e877e95a32513319046e109af905679697ad431 languageName: node linkType: hard @@ -2265,50 +2265,50 @@ __metadata: languageName: node linkType: hard -"@aws-sdk/s3-presigned-post@npm:3.715.0": - version: 3.715.0 - resolution: "@aws-sdk/s3-presigned-post@npm:3.715.0" +"@aws-sdk/s3-presigned-post@npm:3.716.0": + version: 3.716.0 + resolution: "@aws-sdk/s3-presigned-post@npm:3.716.0" dependencies: - "@aws-sdk/client-s3": "npm:3.715.0" + "@aws-sdk/client-s3": "npm:3.716.0" "@aws-sdk/types": "npm:3.714.0" "@aws-sdk/util-format-url": "npm:3.714.0" - "@smithy/middleware-endpoint": "npm:^3.2.5" + "@smithy/middleware-endpoint": "npm:^3.2.6" "@smithy/signature-v4": "npm:^4.2.4" "@smithy/types": "npm:^3.7.2" "@smithy/util-hex-encoding": "npm:^3.0.0" "@smithy/util-utf8": "npm:^3.0.0" tslib: "npm:^2.6.2" - checksum: 10c0/79526ef31aa5a7b2afdbb76a72974c22c4bcc20c028b240cec35aa8be2114b0b072aaaddfb503eb6fc16e2d3acaa2c188b921c6aa5b81250e438cd1ba7f2bdb4 + checksum: 10c0/0fadb0e4d13be8361be79f19db9f549a070ef6689652a80893f8caf846d73e14d19ed4d074bd1962aedf22a9fadc4fcc680570076f8e0d4803615c0a3b4660ad languageName: node linkType: hard -"@aws-sdk/s3-request-presigner@npm:3.715.0": - version: 3.715.0 - resolution: "@aws-sdk/s3-request-presigner@npm:3.715.0" +"@aws-sdk/s3-request-presigner@npm:3.716.0": + version: 3.716.0 + resolution: "@aws-sdk/s3-request-presigner@npm:3.716.0" dependencies: - "@aws-sdk/signature-v4-multi-region": "npm:3.714.0" + "@aws-sdk/signature-v4-multi-region": "npm:3.716.0" "@aws-sdk/types": "npm:3.714.0" "@aws-sdk/util-format-url": "npm:3.714.0" - "@smithy/middleware-endpoint": "npm:^3.2.5" + "@smithy/middleware-endpoint": "npm:^3.2.6" "@smithy/protocol-http": "npm:^4.1.8" - "@smithy/smithy-client": "npm:^3.5.0" + "@smithy/smithy-client": "npm:^3.5.1" "@smithy/types": "npm:^3.7.2" tslib: "npm:^2.6.2" - checksum: 10c0/48c3d8b226e25ad802d7389ba6ad17f1d4b2aa5e033d39ec2e3dc6c7fb81cb7b89c2546270c6418ea51abb57b9cd42e31aeedc23ccf535f6ca620042cad9ce75 + checksum: 10c0/fc895528a38111be2fd24ac99c8a58b8023f73d3fbc0be6d58f40a0b6896c4973d46e153d2c5bac0977e741cb80c473a39bf826423393911c9e015071cbf1190 languageName: node linkType: hard -"@aws-sdk/signature-v4-multi-region@npm:3.714.0": - version: 3.714.0 - resolution: "@aws-sdk/signature-v4-multi-region@npm:3.714.0" +"@aws-sdk/signature-v4-multi-region@npm:3.716.0": + version: 3.716.0 + resolution: "@aws-sdk/signature-v4-multi-region@npm:3.716.0" dependencies: - "@aws-sdk/middleware-sdk-s3": "npm:3.714.0" + "@aws-sdk/middleware-sdk-s3": "npm:3.716.0" "@aws-sdk/types": "npm:3.714.0" "@smithy/protocol-http": "npm:^4.1.8" "@smithy/signature-v4": "npm:^4.2.4" "@smithy/types": "npm:^3.7.2" tslib: "npm:^2.6.2" - checksum: 10c0/1321d755799c1969218650129d634cbcabab8c02389a58162b777d6a91abaf87d3616f2e1a400ff42ae5f5f206da9555e6ea9edecbff0edc133733a4f4d34026 + checksum: 10c0/04058d993cea25cb4084feade3ebb7863788a24dc6b266d042e0de7cb0f83b8cded8dd5990a835ff2505725eb8417f5e379bfc8ab2f59693152e59b8c56916c9 languageName: node linkType: hard @@ -2468,11 +2468,11 @@ __metadata: languageName: node linkType: hard -"@aws-sdk/util-user-agent-node@npm:3.714.0": - version: 3.714.0 - resolution: "@aws-sdk/util-user-agent-node@npm:3.714.0" +"@aws-sdk/util-user-agent-node@npm:3.716.0": + version: 3.716.0 + resolution: "@aws-sdk/util-user-agent-node@npm:3.716.0" dependencies: - "@aws-sdk/middleware-user-agent": "npm:3.714.0" + "@aws-sdk/middleware-user-agent": "npm:3.716.0" "@aws-sdk/types": "npm:3.714.0" "@smithy/node-config-provider": "npm:^3.1.12" "@smithy/types": "npm:^3.7.2" @@ -2482,7 +2482,7 @@ __metadata: peerDependenciesMeta: aws-crt: optional: true - checksum: 10c0/a1deaa432ddaa5f3477495516fd1698de279d60073aa4adc5b38d907d61699021494c90a8fb92c4d72b9c35b152e107cec028814d7b4956fc9f4f1dbdf4e5bec + checksum: 10c0/03cc627ebe7660d51232a9d08b6f217f6a4a944657abb3f21489c274342bc6bfad709daf7f1ad6c430e7498dea94acd7accc589c5cfa4168f8b2ac43c47c9d3e languageName: node linkType: hard @@ -9359,8 +9359,8 @@ __metadata: version: 0.0.0-use.local resolution: "@local/hash-backend-utils@workspace:libs/@local/hash-backend-utils" dependencies: - "@aws-sdk/client-s3": "npm:3.715.0" - "@aws-sdk/s3-request-presigner": "npm:3.715.0" + "@aws-sdk/client-s3": "npm:3.716.0" + "@aws-sdk/s3-request-presigner": "npm:3.716.0" "@blockprotocol/core": "npm:0.1.3" "@blockprotocol/graph": "npm:0.4.0-canary.0" "@blockprotocol/type-system": "npm:0.1.2-canary.0" @@ -14519,9 +14519,9 @@ __metadata: languageName: node linkType: hard -"@smithy/middleware-endpoint@npm:^3.2.3, @smithy/middleware-endpoint@npm:^3.2.5": - version: 3.2.5 - resolution: "@smithy/middleware-endpoint@npm:3.2.5" +"@smithy/middleware-endpoint@npm:^3.2.3, @smithy/middleware-endpoint@npm:^3.2.6": + version: 3.2.6 + resolution: "@smithy/middleware-endpoint@npm:3.2.6" dependencies: "@smithy/core": "npm:^2.5.5" "@smithy/middleware-serde": "npm:^3.0.11" @@ -14531,24 +14531,24 @@ __metadata: "@smithy/url-parser": "npm:^3.0.11" "@smithy/util-middleware": "npm:^3.0.11" tslib: "npm:^2.6.2" - checksum: 10c0/68ca5113ae7f3300cc44f9070e0f25eb21b4e15a9f56222e0746b14986600d7d703f9e25f6051c6d6502d142002256efec47c64c11dc62a56e0b8b36d95b7886 + checksum: 10c0/746ff6427969c99f99f57dc2f0cb79d62deb984435fa63869110cc95a4d393129f9a5f7f55c2d7fc95891ab88dff15ebec93c52490f7b84594a2a0190ab9b11f languageName: node linkType: hard -"@smithy/middleware-retry@npm:^3.0.27, @smithy/middleware-retry@npm:^3.0.30": - version: 3.0.30 - resolution: "@smithy/middleware-retry@npm:3.0.30" +"@smithy/middleware-retry@npm:^3.0.27, @smithy/middleware-retry@npm:^3.0.31": + version: 3.0.31 + resolution: "@smithy/middleware-retry@npm:3.0.31" dependencies: "@smithy/node-config-provider": "npm:^3.1.12" "@smithy/protocol-http": "npm:^4.1.8" "@smithy/service-error-classification": "npm:^3.0.11" - "@smithy/smithy-client": "npm:^3.5.0" + "@smithy/smithy-client": "npm:^3.5.1" "@smithy/types": "npm:^3.7.2" "@smithy/util-middleware": "npm:^3.0.11" "@smithy/util-retry": "npm:^3.0.11" tslib: "npm:^2.6.2" uuid: "npm:^9.0.1" - checksum: 10c0/57c8f78c2d6654bdf23e8d0aca7e8b97ea6df89a6e2725cdc58d3f78fa168d4e7357f04483ec4c3f345c48bed70ea04e2c323e59b3f6c48c58346d74f9b3842e + checksum: 10c0/d87f06ace545195eb776b92caf2be63539b22dd2c3687b12f19ec3aae88d0fdf41345435c964eb30ba2bfb7b6c4a159245a2f383305127137434bede80e7b694 languageName: node linkType: hard @@ -14824,18 +14824,18 @@ __metadata: languageName: node linkType: hard -"@smithy/smithy-client@npm:^3.4.4, @smithy/smithy-client@npm:^3.5.0": - version: 3.5.0 - resolution: "@smithy/smithy-client@npm:3.5.0" +"@smithy/smithy-client@npm:^3.4.4, @smithy/smithy-client@npm:^3.5.1": + version: 3.5.1 + resolution: "@smithy/smithy-client@npm:3.5.1" dependencies: "@smithy/core": "npm:^2.5.5" - "@smithy/middleware-endpoint": "npm:^3.2.5" + "@smithy/middleware-endpoint": "npm:^3.2.6" "@smithy/middleware-stack": "npm:^3.0.11" "@smithy/protocol-http": "npm:^4.1.8" "@smithy/types": "npm:^3.7.2" "@smithy/util-stream": "npm:^3.3.2" tslib: "npm:^2.6.2" - checksum: 10c0/ec480eb3713fb015cb34a6f9e0f66b41279d285cb4296589d37181f458cd00677824bf7648cf8ba4cd4d205725277ff09cb8cc94e239f72a183102505b3c4685 + checksum: 10c0/b3e9a0dfe4f0292b1a50c55c74d49352115039c18a1ae4b306281174ca301ec46e6bb0ae347fa5cce87bdc625bc56b7fdef959199ed6dc3ffae6e978f92d7728 languageName: node linkType: hard @@ -14967,31 +14967,31 @@ __metadata: languageName: node linkType: hard -"@smithy/util-defaults-mode-browser@npm:^3.0.27, @smithy/util-defaults-mode-browser@npm:^3.0.30": - version: 3.0.30 - resolution: "@smithy/util-defaults-mode-browser@npm:3.0.30" +"@smithy/util-defaults-mode-browser@npm:^3.0.27, @smithy/util-defaults-mode-browser@npm:^3.0.31": + version: 3.0.31 + resolution: "@smithy/util-defaults-mode-browser@npm:3.0.31" dependencies: "@smithy/property-provider": "npm:^3.1.11" - "@smithy/smithy-client": "npm:^3.5.0" + "@smithy/smithy-client": "npm:^3.5.1" "@smithy/types": "npm:^3.7.2" bowser: "npm:^2.11.0" tslib: "npm:^2.6.2" - checksum: 10c0/b88823b012c14639b95ff2a72aa4b85d44e6dd389aa9951bffbaae544457584a7c5c62a70e34c6c16d8f0b40c1d40667df41169f2bc6993f639425cad369965d + checksum: 10c0/149fa857b139dcde150a0b7475dbefcaa5c4c0a1501879690dca924cd60494bb6f85eaa4c78cd40d9723a3c3faa094629ed08e94855928100326fd7ae3c980e9 languageName: node linkType: hard -"@smithy/util-defaults-mode-node@npm:^3.0.27, @smithy/util-defaults-mode-node@npm:^3.0.30": - version: 3.0.30 - resolution: "@smithy/util-defaults-mode-node@npm:3.0.30" +"@smithy/util-defaults-mode-node@npm:^3.0.27, @smithy/util-defaults-mode-node@npm:^3.0.31": + version: 3.0.31 + resolution: "@smithy/util-defaults-mode-node@npm:3.0.31" dependencies: "@smithy/config-resolver": "npm:^3.0.13" "@smithy/credential-provider-imds": "npm:^3.2.8" "@smithy/node-config-provider": "npm:^3.1.12" "@smithy/property-provider": "npm:^3.1.11" - "@smithy/smithy-client": "npm:^3.5.0" + "@smithy/smithy-client": "npm:^3.5.1" "@smithy/types": "npm:^3.7.2" tslib: "npm:^2.6.2" - checksum: 10c0/8e56a52269d77caea4309823f85fb3300a21a430b0ad2ae3ae05e227b077ad867e3e3cd80c15dd887826170f6a561706ea306656ec0c3456841bea9cb2cccee0 + checksum: 10c0/825159cbadd4a8bf17cdbabd9872683c027c3655645db8fc9ef902d83de5c8a574dc174b4d31edad98fc7aafe5c6ebc017bbc04cee43390d2ca49ec59e4264b3 languageName: node linkType: hard From 54d432f537256ebe9bfb3626cf128fc4dcd98aa9 Mon Sep 17 00:00:00 2001 From: "hash-worker[bot]" <180894564+hash-worker[bot]@users.noreply.github.com> Date: Fri, 20 Dec 2024 10:48:33 +0000 Subject: [PATCH 075/159] Update npm package `eslint-plugin-canonical` to v5.1.2 (#5958) Co-authored-by: hash-worker[bot] <180894564+hash-worker[bot]@users.noreply.github.com> Co-authored-by: Ciaran Morinan <37743469+CiaranMn@users.noreply.github.com> Co-authored-by: Ciaran Morinan --- libs/@local/eslint/package.json | 2 +- libs/@local/eslint/src/deprecated/base.ts | 1 - yarn.lock | 368 ++++++++++++++++++---- 3 files changed, 313 insertions(+), 58 deletions(-) diff --git a/libs/@local/eslint/package.json b/libs/@local/eslint/package.json index c389c5b916c..c10128df3b1 100644 --- a/libs/@local/eslint/package.json +++ b/libs/@local/eslint/package.json @@ -32,7 +32,7 @@ "eslint-config-sheriff": "25.3.1", "eslint-import-resolver-node": "0.3.9", "eslint-import-resolver-typescript": "3.7.0", - "eslint-plugin-canonical": "5.0.1", + "eslint-plugin-canonical": "5.1.2", "eslint-plugin-import": "2.31.0", "eslint-plugin-react-hooks": "5.1.0", "eslint-plugin-storybook": "0.11.1", diff --git a/libs/@local/eslint/src/deprecated/base.ts b/libs/@local/eslint/src/deprecated/base.ts index 638b5bfc290..eddbab8d11d 100644 --- a/libs/@local/eslint/src/deprecated/base.ts +++ b/libs/@local/eslint/src/deprecated/base.ts @@ -5,7 +5,6 @@ import getGitignorePatterns from "eslint-config-flat-gitignore"; // @ts-expect-error - eslint-plugin-import does not expose types import importPlugin from "eslint-plugin-import"; import { ignores } from "eslint-config-sheriff"; -// @ts-expect-error - react-hooks does not expose types import canonical from "eslint-plugin-canonical"; // @ts-expect-error - react-hooks does not expose types import reactHooks from "eslint-plugin-react-hooks"; diff --git a/yarn.lock b/yarn.lock index 86302e37628..b787a307bad 100644 --- a/yarn.lock +++ b/yarn.lock @@ -9311,7 +9311,7 @@ __metadata: eslint-config-sheriff: "npm:25.3.1" eslint-import-resolver-node: "npm:0.3.9" eslint-import-resolver-typescript: "npm:3.7.0" - eslint-plugin-canonical: "npm:5.0.1" + eslint-plugin-canonical: "npm:5.1.2" eslint-plugin-import: "npm:2.31.0" eslint-plugin-react-hooks: "npm:5.1.0" eslint-plugin-storybook: "npm:0.11.1" @@ -19882,6 +19882,15 @@ __metadata: languageName: node linkType: hard +"acorn-globals@npm:^1.0.4": + version: 1.0.9 + resolution: "acorn-globals@npm:1.0.9" + dependencies: + acorn: "npm:^2.1.0" + checksum: 10c0/6b22564a37e0fc1fe3bb8c9005406b688092227e639144568dd60928f3621907923bf0611d06f207474013b6ed332e6f59addc7c1a8d46be635e362f56b748ee + languageName: node + linkType: hard + "acorn-import-attributes@npm:^1.9.5": version: 1.9.5 resolution: "acorn-import-attributes@npm:1.9.5" @@ -19916,6 +19925,15 @@ __metadata: languageName: node linkType: hard +"acorn@npm:^2.1.0, acorn@npm:^2.4.0": + version: 2.7.0 + resolution: "acorn@npm:2.7.0" + bin: + acorn: ./bin/acorn + checksum: 10c0/3812ce9f41a1e40f638255a2964a979de276a624e09825f709318095ad8a63caaaca38dc7e5dc222219f50d8804d626af57a8bb3d6361d7c18892521f08e1599 + languageName: node + linkType: hard + "acorn@npm:^7.4.1": version: 7.4.1 resolution: "acorn@npm:7.4.1" @@ -21731,7 +21749,14 @@ __metadata: languageName: node linkType: hard -"bluebird@npm:^3.7.1": +"bluebird@npm:^2.10.1": + version: 2.11.0 + resolution: "bluebird@npm:2.11.0" + checksum: 10c0/d0c55c4c5f56522ee53e1762908c73ad97e403ce24d80ae99af3bf8902764530df0f7c88f35a1de809aa4b62d474c17f6bd83c8bc4f8cb539c50fddec1896c20 + languageName: node + linkType: hard + +"bluebird@npm:^3.7.1, bluebird@npm:^3.7.2": version: 3.7.2 resolution: "bluebird@npm:3.7.2" checksum: 10c0/680de03adc54ff925eaa6c7bb9a47a0690e8b5de60f4792604aae8ed618c65e6b63a7893b57ca924beaf53eee69c5af4f8314148c08124c550fe1df1add897d2 @@ -21870,6 +21895,13 @@ __metadata: languageName: node linkType: hard +"browser-request@npm:>= 0.3.1 < 0.4.0": + version: 0.3.3 + resolution: "browser-request@npm:0.3.3" + checksum: 10c0/0aece68471469efb3877a449811d4293f1bde615cf024fe05576b3f9a3adb6a47ca80cbc3c5e8c454496419e452d53c2ac1bba0df5e4e5fb65b012f7085b0b71 + languageName: node + linkType: hard + "browserify-zlib@npm:^0.1.4": version: 0.1.4 resolution: "browserify-zlib@npm:0.1.4" @@ -22956,6 +22988,15 @@ __metadata: languageName: node linkType: hard +"clone-regexp@npm:^3.0.0": + version: 3.0.0 + resolution: "clone-regexp@npm:3.0.0" + dependencies: + is-regexp: "npm:^3.0.0" + checksum: 10c0/892b6103ae9319d0283f9bb125e07cba7c043cbcc516ecc135be817769257c659eae42749d450ed3041af63fb79505e4c5b90105cf9c97cadbff712e2f72726b + languageName: node + linkType: hard + "clone-response@npm:^1.0.2": version: 1.0.3 resolution: "clone-response@npm:1.0.3" @@ -23475,6 +23516,23 @@ __metadata: languageName: node linkType: hard +"contents@npm:^5.0.0": + version: 5.0.0 + resolution: "contents@npm:5.0.0" + dependencies: + lodash: "npm:^4.17.10" + sister: "npm:^3.0.1" + checksum: 10c0/f282ea70801f5dbba36dc82f9ee0e1a887a9455c9aa6df0d4ad29bad9f65b3067aa27b45091c3d5f74297d6fddc548a349ea8f6ff86cd9bad22003c7bf11fe19 + languageName: node + linkType: hard + +"convert-hrtime@npm:^5.0.0": + version: 5.0.0 + resolution: "convert-hrtime@npm:5.0.0" + checksum: 10c0/2092e51aab205e1141440e84e2a89f8881e68e47c1f8bc168dfd7c67047d8f1db43bac28044bc05749205651fead4e7910f52c7bb6066213480df99e333e9f47 + languageName: node + linkType: hard + "convert-source-map@npm:^1.5.0": version: 1.9.0 resolution: "convert-source-map@npm:1.9.0" @@ -23927,6 +23985,22 @@ __metadata: languageName: node linkType: hard +"cssom@npm:0.3.x, cssom@npm:>= 0.3.0 < 0.4.0": + version: 0.3.8 + resolution: "cssom@npm:0.3.8" + checksum: 10c0/d74017b209440822f9e24d8782d6d2e808a8fdd58fa626a783337222fe1c87a518ba944d4c88499031b4786e68772c99dfae616638d71906fe9f203aeaf14411 + languageName: node + linkType: hard + +"cssstyle@npm:>= 0.2.29 < 0.3.0": + version: 0.2.37 + resolution: "cssstyle@npm:0.2.37" + dependencies: + cssom: "npm:0.3.x" + checksum: 10c0/a85e96eb2cf8169215c871c6bc7772880fe12d0ef047f1a4b045d9c95f54448c24a41f413f9c75ba918ee12fe3523f5f19da897474b9edee07b8b449b7410a88 + languageName: node + linkType: hard + "cssstyle@npm:^4.0.1": version: 4.1.0 resolution: "cssstyle@npm:4.1.0" @@ -24469,6 +24543,17 @@ __metadata: languageName: node linkType: hard +"deadlink@npm:^1.1.3": + version: 1.1.3 + resolution: "deadlink@npm:1.1.3" + dependencies: + bluebird: "npm:^2.10.1" + jsdom: "npm:^6.5.1" + url-regexp: "npm:^1.0.2" + checksum: 10c0/7ea5f7e314f12d6e2f1a697809ed971715f0d2f7c282b621ef1b7e9d780d02b4895c84bb4766434538a72ffe04cd4641eb418bdbe7afe8ac276a149e2013913e + languageName: node + linkType: hard + "debounce@npm:^1.2.0, debounce@npm:^1.2.1": version: 1.2.1 resolution: "debounce@npm:1.2.1" @@ -26380,7 +26465,7 @@ __metadata: languageName: node linkType: hard -"escodegen@npm:^1.8.1": +"escodegen@npm:^1.6.1, escodegen@npm:^1.8.1": version: 1.14.3 resolution: "escodegen@npm:1.14.3" dependencies: @@ -26603,26 +26688,28 @@ __metadata: languageName: node linkType: hard -"eslint-plugin-canonical@npm:5.0.1": - version: 5.0.1 - resolution: "eslint-plugin-canonical@npm:5.0.1" +"eslint-plugin-canonical@npm:5.1.2": + version: 5.1.2 + resolution: "eslint-plugin-canonical@npm:5.1.2" dependencies: "@typescript-eslint/utils": "npm:^8.18.1" + array-includes: "npm:^3.1.8" chance: "npm:^1.1.12" debug: "npm:^4.4.0" eslint-import-resolver-typescript: "npm:^3.7.0" eslint-module-utils: "npm:^2.12.0" + gitdown: "npm:^4.1.1" is-get-set-prop: "npm:^1.0.0" is-js-type: "npm:^2.0.0" is-obj-prop: "npm:^1.0.0" is-proto-prop: "npm:^2.0.0" lodash: "npm:^4.17.21" - natural-compare: "npm:^1.4.0" + natural-orderby: "npm:^5.0.0" recast: "npm:^0.23.9" roarr: "npm:^7.21.1" - ts-unused-exports: "npm:^9.0.3" + tsconfig-paths: "npm:^4.2.0" xregexp: "npm:^5.1.1" - checksum: 10c0/2ac473955e6924c4997b5a63b75386ffdaa8487ea08e8e5c05f26c4b327113b0f17aaf77777ec18d07130639071953d4b7b711425c7532c1f8a9cd0d0afbb6ed + checksum: 10c0/26447f91d7f4ca0aeed0baba78b9b03fc58c3d5330dbe80259de47dbd3ce88187ba1f57ccd9598c4cfc1bbbec08e208aedd1189e81553b7a1aead58ef2f5858a languageName: node linkType: hard @@ -28089,7 +28176,7 @@ __metadata: languageName: node linkType: hard -"filesize@npm:^10.1.6": +"filesize@npm:^10.1.4, filesize@npm:^10.1.6": version: 10.1.6 resolution: "filesize@npm:10.1.6" checksum: 10c0/9a196d64da4e947b8c0d294be09a3dfa7a634434a1fc5fb3465f1c9acc1237ea0363f245ba6e24477ea612754d942bc964d86e0e500905a72e9e0e17ae1bbdbc @@ -28813,6 +28900,13 @@ __metadata: languageName: node linkType: hard +"function-timeout@npm:^0.1.0": + version: 0.1.1 + resolution: "function-timeout@npm:0.1.1" + checksum: 10c0/45f0517907e541b7ea8238500429ac9ace50e596295c01931cbe61e176150aa2ad50d05dcfeeee9377ae48eb99a6fd0759e4ebc97cde8f4c38492d1c99db8f14 + languageName: node + linkType: hard + "function.prototype.name@npm:^1.1.6": version: 1.1.6 resolution: "function.prototype.name@npm:1.1.6" @@ -29084,6 +29178,17 @@ __metadata: languageName: node linkType: hard +"get-urls@npm:^12.1.0": + version: 12.1.0 + resolution: "get-urls@npm:12.1.0" + dependencies: + normalize-url: "npm:^8.0.0" + super-regex: "npm:^0.2.0" + url-regex-safe: "npm:^4.0.0" + checksum: 10c0/f654d7daf70e58647bd30d94f0e488c89599e5c27d9b7e222d4f0a95bf4bf48ecd35391e76914e2f2d1b34d374a87596056b7b48f101ec6150635a1c3fb6b83d + languageName: node + linkType: hard + "getpass@npm:^0.1.1": version: 0.1.7 resolution: "getpass@npm:0.1.7" @@ -29118,6 +29223,29 @@ __metadata: languageName: node linkType: hard +"gitdown@npm:^4.1.1": + version: 4.1.1 + resolution: "gitdown@npm:4.1.1" + dependencies: + bluebird: "npm:^3.7.2" + deadlink: "npm:^1.1.3" + filesize: "npm:^10.1.4" + get-urls: "npm:^12.1.0" + gitinfo: "npm:^2.4.0" + glob: "npm:^10.4.4" + jsonfile: "npm:^6.1.0" + lodash: "npm:^4.17.21" + markdown-contents: "npm:^1.0.11" + marked: "npm:^13.0.2" + moment: "npm:^2.30.1" + stack-trace: "npm:^0.0.10" + yargs: "npm:^17.7.2" + bin: + gitdown: src/bin/index.js + checksum: 10c0/39dc8503c3b6862231b1711ba92a8c4dc60d9bb47a04201f80a05d5f519346cb127bf81a56590211f0b208969d920756b31c67147cacd053c616d34163ed134a + languageName: node + linkType: hard + "github-from-package@npm:0.0.0": version: 0.0.0 resolution: "github-from-package@npm:0.0.0" @@ -29132,6 +29260,16 @@ __metadata: languageName: node linkType: hard +"gitinfo@npm:^2.4.0": + version: 2.4.0 + resolution: "gitinfo@npm:2.4.0" + dependencies: + ini: "npm:^1.3.5" + ramda: "npm:^0.26.1" + checksum: 10c0/08701e087b07d2d8b48685a5dcef8909164e97b53a801a2ccf191cc68806a7a435fec681c75e63965cf812bc9c61ceee570dcd579493070f1638d29e2d01648f + languageName: node + linkType: hard + "glob-parent@npm:^5.1.2, glob-parent@npm:~5.1.2": version: 5.1.2 resolution: "glob-parent@npm:5.1.2" @@ -29194,7 +29332,7 @@ __metadata: languageName: node linkType: hard -"glob@npm:^10.0.0, glob@npm:^10.2.2, glob@npm:^10.2.6, glob@npm:^10.3.10, glob@npm:^10.3.16, glob@npm:^10.3.3, glob@npm:^10.3.7, glob@npm:^10.4.1, glob@npm:^10.4.2": +"glob@npm:^10.0.0, glob@npm:^10.2.2, glob@npm:^10.2.6, glob@npm:^10.3.10, glob@npm:^10.3.16, glob@npm:^10.3.3, glob@npm:^10.3.7, glob@npm:^10.4.1, glob@npm:^10.4.2, glob@npm:^10.4.4": version: 10.4.5 resolution: "glob@npm:10.4.5" dependencies: @@ -30344,7 +30482,7 @@ __metadata: languageName: node linkType: hard -"htmlparser2@npm:^3.9.0": +"htmlparser2@npm:>= 3.7.3 < 4.0.0, htmlparser2@npm:^3.9.0": version: 3.10.1 resolution: "htmlparser2@npm:3.10.1" dependencies: @@ -30903,6 +31041,13 @@ __metadata: languageName: node linkType: hard +"ini@npm:^1.3.5, ini@npm:~1.3.0": + version: 1.3.8 + resolution: "ini@npm:1.3.8" + checksum: 10c0/ec93838d2328b619532e4f1ff05df7909760b6f66d9c9e2ded11e5c1897d6f2f9980c54dd638f88654b00919ce31e827040631eab0a3969e4d1abefa0719516a + languageName: node + linkType: hard + "ini@npm:^4.1.3": version: 4.1.3 resolution: "ini@npm:4.1.3" @@ -30910,13 +31055,6 @@ __metadata: languageName: node linkType: hard -"ini@npm:~1.3.0": - version: 1.3.8 - resolution: "ini@npm:1.3.8" - checksum: 10c0/ec93838d2328b619532e4f1ff05df7909760b6f66d9c9e2ded11e5c1897d6f2f9980c54dd638f88654b00919ce31e827040631eab0a3969e4d1abefa0719516a - languageName: node - linkType: hard - "ink@npm:^4.4.1": version: 4.4.1 resolution: "ink@npm:4.4.1" @@ -31787,7 +31925,7 @@ __metadata: languageName: node linkType: hard -"is-regexp@npm:^3.1.0": +"is-regexp@npm:^3.0.0, is-regexp@npm:^3.1.0": version: 3.1.0 resolution: "is-regexp@npm:3.1.0" checksum: 10c0/99dbaea41bddee2205db468c0946f5fee25cc4ae486333cb4d2b8095ab4b0a500e74ba61afd9e6e4f63ececcd55b4df5ae2a555b1c3e26308e516ff53c9533cd @@ -32728,6 +32866,30 @@ __metadata: languageName: node linkType: hard +"jsdom@npm:^6.5.1": + version: 6.5.1 + resolution: "jsdom@npm:6.5.1" + dependencies: + acorn: "npm:^2.4.0" + acorn-globals: "npm:^1.0.4" + browser-request: "npm:>= 0.3.1 < 0.4.0" + cssom: "npm:>= 0.3.0 < 0.4.0" + cssstyle: "npm:>= 0.2.29 < 0.3.0" + escodegen: "npm:^1.6.1" + htmlparser2: "npm:>= 3.7.3 < 4.0.0" + nwmatcher: "npm:>= 1.3.6 < 2.0.0" + parse5: "npm:^1.4.2" + request: "npm:^2.55.0" + symbol-tree: "npm:>= 3.1.0 < 4.0.0" + tough-cookie: "npm:^2.0.0" + whatwg-url-compat: "npm:~0.6.5" + xml-name-validator: "npm:>= 2.0.1 < 3.0.0" + xmlhttprequest: "npm:>= 1.6.0 < 2.0.0" + xtend: "npm:^4.0.0" + checksum: 10c0/830e182e56e0abce3dad1375e2ec040f00deeea5c4b4582cd9f21874ed759c650b29947e1bf4e68efbbae976f6e38df7b26af6c0899c24b497edfa4133b8cd9f + languageName: node + linkType: hard + "jsesc@npm:^3.0.2, jsesc@npm:~3.0.2": version: 3.0.2 resolution: "jsesc@npm:3.0.2" @@ -32964,7 +33126,7 @@ __metadata: languageName: node linkType: hard -"jsonfile@npm:^6.0.1": +"jsonfile@npm:^6.0.1, jsonfile@npm:^6.1.0": version: 6.1.0 resolution: "jsonfile@npm:6.1.0" dependencies: @@ -33946,7 +34108,7 @@ __metadata: languageName: node linkType: hard -"lodash@npm:4.17.21, lodash@npm:^4, lodash@npm:^4.17.14, lodash@npm:^4.17.19, lodash@npm:^4.17.20, lodash@npm:^4.17.21, lodash@npm:^4.17.4, lodash@npm:~4.17.0": +"lodash@npm:4.17.21, lodash@npm:^4, lodash@npm:^4.17.10, lodash@npm:^4.17.14, lodash@npm:^4.17.19, lodash@npm:^4.17.20, lodash@npm:^4.17.21, lodash@npm:^4.17.4, lodash@npm:~4.17.0": version: 4.17.21 resolution: "lodash@npm:4.17.21" checksum: 10c0/d8cbea072bb08655bb4c989da418994b073a608dffa608b09ac04b43a791b12aeae7cd7ad919aa4c925f33b48490b5cfe6c1f71d827956071dae2e7bb3a6b74c @@ -34399,6 +34561,16 @@ __metadata: languageName: node linkType: hard +"markdown-contents@npm:^1.0.11": + version: 1.0.11 + resolution: "markdown-contents@npm:1.0.11" + dependencies: + contents: "npm:^5.0.0" + lodash: "npm:^4.17.10" + checksum: 10c0/e5ed29dab0715c58662f0e2f16ac5c05a6e50482917199b455abde1243c61d12448916bad2f76829a954d76649f3c8817c4b78d6913c229925144d90e0dd2a7e + languageName: node + linkType: hard + "markdown-extensions@npm:^1.0.0": version: 1.1.1 resolution: "markdown-extensions@npm:1.1.1" @@ -34489,6 +34661,15 @@ __metadata: languageName: node linkType: hard +"marked@npm:^13.0.2": + version: 13.0.3 + resolution: "marked@npm:13.0.3" + bin: + marked: bin/marked.js + checksum: 10c0/b1121f420f815206ae5ae109b9b0eb6c21f84d8d459cbe38ffa00543652e091f36a55c2c96ff1414821d8752682af8c0de3f44f0a2a5bd9c8612a4ef520e9b3d + languageName: node + linkType: hard + "matcher-collection@npm:^1.0.0": version: 1.1.2 resolution: "matcher-collection@npm:1.1.2" @@ -36523,7 +36704,7 @@ __metadata: languageName: node linkType: hard -"moment@npm:^2.22.1, moment@npm:^2.29.4": +"moment@npm:^2.22.1, moment@npm:^2.29.4, moment@npm:^2.30.1": version: 2.30.1 resolution: "moment@npm:2.30.1" checksum: 10c0/865e4279418c6de666fca7786607705fd0189d8a7b7624e2e56be99290ac846f90878a6f602e34b4e0455c549b85385b1baf9966845962b313699e7cb847543a @@ -36851,6 +37032,13 @@ __metadata: languageName: node linkType: hard +"natural-orderby@npm:^5.0.0": + version: 5.0.0 + resolution: "natural-orderby@npm:5.0.0" + checksum: 10c0/d4e8b3bf16636eedc0c99a4cd551cd371732dd8c9766f19c8e153946553d82c12527eab182b8e79d640681aa6cb718273b53662ccf88127d4726307b6e645b2b + languageName: node + linkType: hard + "nearley@npm:^2.20.1": version: 2.20.1 resolution: "nearley@npm:2.20.1" @@ -37385,6 +37573,13 @@ __metadata: languageName: node linkType: hard +"normalize-url@npm:^8.0.0": + version: 8.0.1 + resolution: "normalize-url@npm:8.0.1" + checksum: 10c0/eb439231c4b84430f187530e6fdac605c5048ef4ec556447a10c00a91fc69b52d8d8298d9d608e68d3e0f7dc2d812d3455edf425e0f215993667c3183bcab1ef + languageName: node + linkType: hard + "notion-md-crawler@npm:^1.0.0": version: 1.0.0 resolution: "notion-md-crawler@npm:1.0.0" @@ -37597,6 +37792,13 @@ __metadata: languageName: node linkType: hard +"nwmatcher@npm:>= 1.3.6 < 2.0.0": + version: 1.4.4 + resolution: "nwmatcher@npm:1.4.4" + checksum: 10c0/d035ee045d410cd35e347d35e5674f8f535a479988750a036e0c47c1c30e35680501e9d12b4a1ba51e7a255f235cbf03e06b8b9b2acd10dd78d37a4186169ce0 + languageName: node + linkType: hard + "nwsapi@npm:^2.2.12": version: 2.2.13 resolution: "nwsapi@npm:2.2.13" @@ -38599,6 +38801,13 @@ __metadata: languageName: node linkType: hard +"parse5@npm:^1.4.2": + version: 1.5.1 + resolution: "parse5@npm:1.5.1" + checksum: 10c0/fb8f3d6e192b1a9969c18cf1d9c9abeb8aeb077ba9052d806de4c7bd782f4ccfb198642d45bef7e8d24985ea453c98b07d292fa25363a8d51ec972ee640b1984 + languageName: node + linkType: hard + "parse5@npm:^7.0.0, parse5@npm:^7.1.2": version: 7.2.1 resolution: "parse5@npm:7.2.1" @@ -40515,6 +40724,13 @@ __metadata: languageName: node linkType: hard +"ramda@npm:^0.26.1": + version: 0.26.1 + resolution: "ramda@npm:0.26.1" + checksum: 10c0/af591bdb593a7bd4c715af306f9a1c591ed0eccabc9bb5166dd17e68b182e6ff313b35c057f9dc300715d060c3ed2f56e424a42499fe2b27b40446fb447838ba + languageName: node + linkType: hard + "randexp@npm:0.4.6": version: 0.4.6 resolution: "randexp@npm:0.4.6" @@ -41979,7 +42195,7 @@ __metadata: languageName: node linkType: hard -"request@npm:^2.88.2": +"request@npm:^2.55.0, request@npm:^2.88.2": version: 2.88.2 resolution: "request@npm:2.88.2" dependencies: @@ -43438,6 +43654,13 @@ __metadata: languageName: node linkType: hard +"sister@npm:^3.0.1": + version: 3.0.2 + resolution: "sister@npm:3.0.2" + checksum: 10c0/47260b4fd0ccf843e1c1a8a0ed1006dd659cbfe3d165c59d9814faa7ae2773dc3e0ca57fced900a453315ee6ae9def06c394a9707423846e31f96095d39967df + languageName: node + linkType: hard + "sisteransi@npm:^1.0.5": version: 1.0.5 resolution: "sisteransi@npm:1.0.5" @@ -43992,7 +44215,7 @@ __metadata: languageName: node linkType: hard -"stack-trace@npm:0.0.x": +"stack-trace@npm:0.0.x, stack-trace@npm:^0.0.10": version: 0.0.10 resolution: "stack-trace@npm:0.0.10" checksum: 10c0/9ff3dabfad4049b635a85456f927a075c9d0c210e3ea336412d18220b2a86cbb9b13ec46d6c37b70a302a4ea4d49e30e5d4944dd60ae784073f1cde778ac8f4b @@ -44670,6 +44893,17 @@ __metadata: languageName: node linkType: hard +"super-regex@npm:^0.2.0": + version: 0.2.0 + resolution: "super-regex@npm:0.2.0" + dependencies: + clone-regexp: "npm:^3.0.0" + function-timeout: "npm:^0.1.0" + time-span: "npm:^5.1.0" + checksum: 10c0/a8ff56aa521530df098433692c0a4c92353dd2fa3f7187785d654268031cc2876c8acc91e90bbd7b6b1ebabd68fb306f4fa61fc46f9fe0db04ed5f960fc2afc8 + languageName: node + linkType: hard + "superagent@npm:3.8.1": version: 3.8.1 resolution: "superagent@npm:3.8.1" @@ -44814,7 +45048,7 @@ __metadata: languageName: node linkType: hard -"symbol-tree@npm:^3.2.4": +"symbol-tree@npm:>= 3.1.0 < 4.0.0, symbol-tree@npm:^3.2.4": version: 3.2.4 resolution: "symbol-tree@npm:3.2.4" checksum: 10c0/dfbe201ae09ac6053d163578778c53aa860a784147ecf95705de0cd23f42c851e1be7889241495e95c37cabb058edb1052f141387bef68f705afc8f9dd358509 @@ -45303,6 +45537,15 @@ __metadata: languageName: node linkType: hard +"time-span@npm:^5.1.0": + version: 5.1.0 + resolution: "time-span@npm:5.1.0" + dependencies: + convert-hrtime: "npm:^5.0.0" + checksum: 10c0/37b8284c53f4ee320377512ac19e3a034f2b025f5abd6959b8c1d0f69e0f06ab03681df209f2e452d30129e7b1f25bf573fb0f29d57e71f9b4a6b5b99f4c4b9e + languageName: node + linkType: hard + "timers-ext@npm:^0.1.7": version: 0.1.8 resolution: "timers-ext@npm:0.1.8" @@ -45517,6 +45760,16 @@ __metadata: languageName: node linkType: hard +"tough-cookie@npm:^2.0.0, tough-cookie@npm:~2.5.0": + version: 2.5.0 + resolution: "tough-cookie@npm:2.5.0" + dependencies: + psl: "npm:^1.1.28" + punycode: "npm:^2.1.1" + checksum: 10c0/e1cadfb24d40d64ca16de05fa8192bc097b66aeeb2704199b055ff12f450e4f30c927ce250f53d01f39baad18e1c11d66f65e545c5c6269de4c366fafa4c0543 + languageName: node + linkType: hard + "tough-cookie@npm:^4.0.0, tough-cookie@npm:^4.1.4": version: 4.1.4 resolution: "tough-cookie@npm:4.1.4" @@ -45538,16 +45791,6 @@ __metadata: languageName: node linkType: hard -"tough-cookie@npm:~2.5.0": - version: 2.5.0 - resolution: "tough-cookie@npm:2.5.0" - dependencies: - psl: "npm:^1.1.28" - punycode: "npm:^2.1.1" - checksum: 10c0/e1cadfb24d40d64ca16de05fa8192bc097b66aeeb2704199b055ff12f450e4f30c927ce250f53d01f39baad18e1c11d66f65e545c5c6269de4c366fafa4c0543 - languageName: node - linkType: hard - "tr46@npm:^1.0.1": version: 1.0.1 resolution: "tr46@npm:1.0.1" @@ -45575,7 +45818,7 @@ __metadata: languageName: node linkType: hard -"tr46@npm:~0.0.3": +"tr46@npm:~0.0.1, tr46@npm:~0.0.3": version: 0.0.3 resolution: "tr46@npm:0.0.3" checksum: 10c0/047cb209a6b60c742f05c9d3ace8fa510bff609995c129a37ace03476a9b12db4dbf975e74600830ef0796e18882b2381fb5fb1f6b4f96b832c374de3ab91a11 @@ -45770,23 +46013,6 @@ __metadata: languageName: node linkType: hard -"ts-unused-exports@npm:^9.0.3": - version: 9.0.5 - resolution: "ts-unused-exports@npm:9.0.5" - dependencies: - chalk: "npm:^4.0.0" - tsconfig-paths: "npm:^3.9.0" - peerDependencies: - typescript: ">=3.8.3" - peerDependenciesMeta: - typescript: - optional: false - bin: - ts-unused-exports: bin/ts-unused-exports - checksum: 10c0/942732c8f1512defd877ed21bbe61e376a29dbb69ce7e26ce17c8b492e382b8b213836ffb44ecdb104862e42e9741ce43a7ef153eea7ead2d656dc9a815f5d79 - languageName: node - linkType: hard - "tsconfck@npm:^3.0.3": version: 3.1.4 resolution: "tsconfck@npm:3.1.4" @@ -45813,7 +46039,7 @@ __metadata: languageName: node linkType: hard -"tsconfig-paths@npm:^3.15.0, tsconfig-paths@npm:^3.9.0": +"tsconfig-paths@npm:^3.15.0": version: 3.15.0 resolution: "tsconfig-paths@npm:3.15.0" dependencies: @@ -47063,7 +47289,7 @@ __metadata: languageName: node linkType: hard -"url-regex-safe@npm:4.0.0": +"url-regex-safe@npm:4.0.0, url-regex-safe@npm:^4.0.0": version: 4.0.0 resolution: "url-regex-safe@npm:4.0.0" dependencies: @@ -47078,6 +47304,13 @@ __metadata: languageName: node linkType: hard +"url-regexp@npm:^1.0.2": + version: 1.0.2 + resolution: "url-regexp@npm:1.0.2" + checksum: 10c0/13ac9a52a5ae50dab216c0cf0095151fcd3a3ec418499d45e488d1d2d2faa5d75698296d6175b9a4cb400d5b289185b20d9ca982c026bfa763a23a86ffb6517d + languageName: node + linkType: hard + "url-template@npm:^2.0.8": version: 2.0.8 resolution: "url-template@npm:2.0.8" @@ -48111,6 +48344,15 @@ __metadata: languageName: node linkType: hard +"whatwg-url-compat@npm:~0.6.5": + version: 0.6.5 + resolution: "whatwg-url-compat@npm:0.6.5" + dependencies: + tr46: "npm:~0.0.1" + checksum: 10c0/61686aaf984f01ee920d63255e5e168478e29c79a64ec7236403ead7512caaa3bad3a2ee14922b7458d114de3df9c0457f0eeabd55cc16528464ed22b4e017a8 + languageName: node + linkType: hard + "whatwg-url@npm:^13.0.0": version: 13.0.0 resolution: "whatwg-url@npm:13.0.0" @@ -48577,6 +48819,13 @@ __metadata: languageName: node linkType: hard +"xml-name-validator@npm:>= 2.0.1 < 3.0.0": + version: 2.0.1 + resolution: "xml-name-validator@npm:2.0.1" + checksum: 10c0/e6d83e177352b8ba0bf723e0c1a058ee0e016cfec0ec270c3ccd2da70b2573ffa6204c5e36911078f59e1a48b4cf5836f2911cfceabecd66975e1d53d5bb448e + languageName: node + linkType: hard + "xml-name-validator@npm:^5.0.0": version: 5.0.0 resolution: "xml-name-validator@npm:5.0.0" @@ -48631,6 +48880,13 @@ __metadata: languageName: node linkType: hard +"xmlhttprequest@npm:>= 1.6.0 < 2.0.0": + version: 1.8.0 + resolution: "xmlhttprequest@npm:1.8.0" + checksum: 10c0/c890661562e4cb6c36a126071e956047164296f58b0058ab28a9c9f1c3b46a65bf421a242d3449363a2aadc3d9769146160b10a501710d476a17d77d41a5c99e + languageName: node + linkType: hard + "xpath@npm:^0.0.34": version: 0.0.34 resolution: "xpath@npm:0.0.34" From faf82814a2d3686e69abba4e9301c8220590c7cd Mon Sep 17 00:00:00 2001 From: "hash-worker[bot]" <180894564+hash-worker[bot]@users.noreply.github.com> Date: Fri, 20 Dec 2024 11:07:42 +0000 Subject: [PATCH 076/159] Update npm package `@changesets/changelog-github` to v0.5.0 (#5041) Co-authored-by: hash-worker[bot] <180894564+hash-worker[bot]@users.noreply.github.com> --- package.json | 2 +- yarn.lock | 29 ++++++++++++++++++----------- 2 files changed, 19 insertions(+), 12 deletions(-) diff --git a/package.json b/package.json index 260ad86a0af..a9695db3b79 100644 --- a/package.json +++ b/package.json @@ -100,7 +100,7 @@ "react-dom": "18.3.1" }, "devDependencies": { - "@changesets/changelog-github": "0.4.8", + "@changesets/changelog-github": "0.5.0", "@changesets/cli": "patch:@changesets/cli@npm%3A2.26.0#~/.yarn/patches/@changesets-cli-npm-2.26.0-49d5c5f72d.patch", "@sentry/cli": "^2.39.1", "@taplo/cli": "0.7.0", diff --git a/yarn.lock b/yarn.lock index b787a307bad..ad54c60ad5c 100644 --- a/yarn.lock +++ b/yarn.lock @@ -5345,14 +5345,14 @@ __metadata: languageName: node linkType: hard -"@changesets/changelog-github@npm:0.4.8": - version: 0.4.8 - resolution: "@changesets/changelog-github@npm:0.4.8" +"@changesets/changelog-github@npm:0.5.0": + version: 0.5.0 + resolution: "@changesets/changelog-github@npm:0.5.0" dependencies: - "@changesets/get-github-info": "npm:^0.5.2" - "@changesets/types": "npm:^5.2.1" + "@changesets/get-github-info": "npm:^0.6.0" + "@changesets/types": "npm:^6.0.0" dotenv: "npm:^8.1.0" - checksum: 10c0/e8bf1c8f769594be5d79cb2c2d23c9d0d9042e706cd0534da92b3dd96e5fa8c17fd6fb6c1bbfd1dc0432beabeafc83667909b633fcd5652bda5947ddfceabafa + checksum: 10c0/fc6a6947185af6f1c7543c572ca6e46d733188586ab873c75476f389fb11c675df1c230a56394d490aa9a7f13bdf88d23541265deeda77f167d06b0cc3206923 languageName: node linkType: hard @@ -5492,13 +5492,13 @@ __metadata: languageName: node linkType: hard -"@changesets/get-github-info@npm:^0.5.2": - version: 0.5.2 - resolution: "@changesets/get-github-info@npm:0.5.2" +"@changesets/get-github-info@npm:^0.6.0": + version: 0.6.0 + resolution: "@changesets/get-github-info@npm:0.6.0" dependencies: dataloader: "npm:^1.4.0" node-fetch: "npm:^2.5.0" - checksum: 10c0/702c001d939be544490db4903c63d60a38404348bf6658632e9a8e204b1a96289a604a27aa00da67322331e4cfe3592e7175dbd88736449c203f4664a7c69824 + checksum: 10c0/21fde8a8cb48091a8ea8be37defbc0dca5defe10a097025968b273076657f354032803a5db31ffe0fa86ab089383faa981ab674489d31e38bf7bc4dcf981ad79 languageName: node linkType: hard @@ -5616,6 +5616,13 @@ __metadata: languageName: node linkType: hard +"@changesets/types@npm:^6.0.0": + version: 6.0.0 + resolution: "@changesets/types@npm:6.0.0" + checksum: 10c0/e755f208792547e3b9ece15ce4da22466267da810c6fd87d927a1b8cec4d7fb7f0eea0d1a7585747676238e3e4ba1ffdabe016ccb05cfa537b4e4b03ec399f41 + languageName: node + linkType: hard + "@changesets/write@npm:^0.2.3": version: 0.2.3 resolution: "@changesets/write@npm:0.2.3" @@ -30040,7 +30047,7 @@ __metadata: version: 0.0.0-use.local resolution: "hash@workspace:." dependencies: - "@changesets/changelog-github": "npm:0.4.8" + "@changesets/changelog-github": "npm:0.5.0" "@changesets/cli": "patch:@changesets/cli@npm%3A2.26.0#~/.yarn/patches/@changesets-cli-npm-2.26.0-49d5c5f72d.patch" "@sentry/cli": "npm:^2.39.1" "@taplo/cli": "npm:0.7.0" From fd2ff488418a26182e48cd42dda8066e7b246d5b Mon Sep 17 00:00:00 2001 From: "hash-worker[bot]" <180894564+hash-worker[bot]@users.noreply.github.com> Date: Fri, 20 Dec 2024 11:39:13 +0000 Subject: [PATCH 077/159] Update material-ui monorepo to v5.16.12 (#5941) Co-authored-by: hash-worker[bot] <180894564+hash-worker[bot]@users.noreply.github.com> Co-authored-by: Ciaran Morinan --- apps/hash-frontend/package.json | 6 +- apps/hashdotdesign/package.json | 4 +- apps/hashdotdev/package.json | 6 +- apps/plugin-browser/package.json | 2 +- blocks/address/package.json | 2 +- blocks/ai-chat/package.json | 2 +- blocks/ai-image/package.json | 2 +- blocks/ai-text/package.json | 2 +- blocks/chart/package.json | 2 +- blocks/faq/package.json | 2 +- blocks/how-to/package.json | 2 +- blocks/kanban-board/package.json | 2 +- blocks/shuffle/package.json | 4 +- blocks/table/package.json | 2 +- .../block-design-system/package.json | 8 +- libs/@hashintel/design-system/package.json | 8 +- libs/@hashintel/query-editor/package.json | 4 +- libs/@hashintel/type-editor/package.json | 4 +- yarn.lock | 151 +++++++++--------- 19 files changed, 111 insertions(+), 104 deletions(-) diff --git a/apps/hash-frontend/package.json b/apps/hash-frontend/package.json index 581bf9c1801..d164fb5ca51 100644 --- a/apps/hash-frontend/package.json +++ b/apps/hash-frontend/package.json @@ -45,9 +45,9 @@ "@local/hash-isomorphic-utils": "0.0.0-private", "@local/hash-subgraph": "0.0.0-private", "@local/status": "0.0.0-private", - "@mui/icons-material": "5.16.11", - "@mui/material": "5.16.11", - "@mui/system": "5.16.8", + "@mui/icons-material": "5.16.12", + "@mui/material": "5.16.12", + "@mui/system": "5.16.12", "@ory/client": "1.1.41", "@ory/integrations": "1.1.4", "@popperjs/core": "2.11.8", diff --git a/apps/hashdotdesign/package.json b/apps/hashdotdesign/package.json index 46ebd9f8d08..f4fced23961 100644 --- a/apps/hashdotdesign/package.json +++ b/apps/hashdotdesign/package.json @@ -30,8 +30,8 @@ "@emotion/cache": "11.14.0", "@emotion/react": "11.14.0", "@emotion/styled": "11.14.0", - "@mui/material": "5.16.11", - "@mui/system": "5.16.8", + "@mui/material": "5.16.12", + "@mui/system": "5.16.12", "react": "^18.2.0", "react-dom": "^18.2.0" } diff --git a/apps/hashdotdev/package.json b/apps/hashdotdev/package.json index 9e12192902f..21d5e4b1313 100644 --- a/apps/hashdotdev/package.json +++ b/apps/hashdotdev/package.json @@ -26,9 +26,9 @@ "@emotion/styled": "11.14.0", "@fortawesome/free-solid-svg-icons": "6.7.2", "@matejmazur/react-katex": "3.1.3", - "@mui/icons-material": "5.16.11", - "@mui/material": "5.16.11", - "@mui/system": "5.16.8", + "@mui/icons-material": "5.16.12", + "@mui/material": "5.16.12", + "@mui/system": "5.16.12", "axios": "1.7.9", "calculation-block": "0.2.2", "clsx": "1.2.1", diff --git a/apps/plugin-browser/package.json b/apps/plugin-browser/package.json index 163fad74a92..b01bb4ae26b 100755 --- a/apps/plugin-browser/package.json +++ b/apps/plugin-browser/package.json @@ -35,7 +35,7 @@ "@local/hash-graph-types": "0.0.0-private", "@local/hash-isomorphic-utils": "0.0.0-private", "@local/hash-subgraph": "0.0.0-private", - "@mui/material": "5.16.11", + "@mui/material": "5.16.12", "@sentry/browser": "7.120.2", "bowser": "2.11.0", "date-fns": "4.1.0", diff --git a/blocks/address/package.json b/blocks/address/package.json index 14755be2775..238704d6bcf 100644 --- a/blocks/address/package.json +++ b/blocks/address/package.json @@ -37,7 +37,7 @@ "@fortawesome/free-solid-svg-icons": "6.7.2", "@hashintel/block-design-system": "0.0.2", "@hashintel/design-system": "0.0.8", - "@mui/material": "5.16.11", + "@mui/material": "5.16.12", "lodash.debounce": "4.0.8", "react-sizeme": "3.0.2", "rooks": "7.14.1", diff --git a/blocks/ai-chat/package.json b/blocks/ai-chat/package.json index c623a35a195..3bbe928578e 100644 --- a/blocks/ai-chat/package.json +++ b/blocks/ai-chat/package.json @@ -32,7 +32,7 @@ "@blockprotocol/service": "0.1.4", "@hashintel/block-design-system": "0.0.2", "@hashintel/design-system": "0.0.8", - "@mui/material": "5.16.11", + "@mui/material": "5.16.12", "react-sizeme": "3.0.2", "react-transition-group": "4.4.5", "react-type-animation": "3.2.0", diff --git a/blocks/ai-image/package.json b/blocks/ai-image/package.json index a26b5ffb836..eb2de6d88f3 100644 --- a/blocks/ai-image/package.json +++ b/blocks/ai-image/package.json @@ -35,7 +35,7 @@ "@blockprotocol/service": "0.1.4", "@hashintel/block-design-system": "0.0.2", "@hashintel/design-system": "0.0.8", - "@mui/material": "5.16.11", + "@mui/material": "5.16.12", "react-sizeme": "3.0.2", "uuid": "9.0.1" }, diff --git a/blocks/ai-text/package.json b/blocks/ai-text/package.json index 555e83ed518..56b358bc37d 100644 --- a/blocks/ai-text/package.json +++ b/blocks/ai-text/package.json @@ -31,7 +31,7 @@ "@blockprotocol/service": "0.1.4", "@hashintel/block-design-system": "0.0.2", "@hashintel/design-system": "0.0.8", - "@mui/material": "5.16.11" + "@mui/material": "5.16.12" }, "devDependencies": { "@local/eslint": "0.0.0-private", diff --git a/blocks/chart/package.json b/blocks/chart/package.json index 7d6a1981368..85e37dc3453 100644 --- a/blocks/chart/package.json +++ b/blocks/chart/package.json @@ -31,7 +31,7 @@ "@hashintel/block-design-system": "0.0.2", "@hashintel/design-system": "0.0.8", "@local/hash-isomorphic-utils": "0.0.0-private", - "@mui/material": "5.16.11", + "@mui/material": "5.16.12", "echarts": "5.5.1", "lodash.debounce": "4.0.8", "react-hook-form": "7.54.1" diff --git a/blocks/faq/package.json b/blocks/faq/package.json index 5d52f7cc69f..85b3130cf8d 100644 --- a/blocks/faq/package.json +++ b/blocks/faq/package.json @@ -34,7 +34,7 @@ "@blockprotocol/graph": "0.3.4", "@hashintel/block-design-system": "0.0.2", "@hashintel/design-system": "0.0.8", - "@mui/material": "5.16.11", + "@mui/material": "5.16.12", "uuid": "9.0.1" }, "devDependencies": { diff --git a/blocks/how-to/package.json b/blocks/how-to/package.json index 994d228a0a2..9aba5bcf7a7 100644 --- a/blocks/how-to/package.json +++ b/blocks/how-to/package.json @@ -34,7 +34,7 @@ "@blockprotocol/graph": "0.3.4", "@hashintel/block-design-system": "0.0.2", "@hashintel/design-system": "0.0.8", - "@mui/material": "5.16.11", + "@mui/material": "5.16.12", "react-sizeme": "3.0.2", "uuid": "9.0.1" }, diff --git a/blocks/kanban-board/package.json b/blocks/kanban-board/package.json index c1c049853c6..607a9e3be3b 100644 --- a/blocks/kanban-board/package.json +++ b/blocks/kanban-board/package.json @@ -37,7 +37,7 @@ "@dnd-kit/utilities": "3.2.2", "@hashintel/block-design-system": "0.0.2", "@hashintel/design-system": "0.0.8", - "@mui/material": "5.16.11", + "@mui/material": "5.16.12", "clsx": "1.2.1", "lodash.clonedeep": "4.5.0", "lodash.debounce": "4.0.8", diff --git a/blocks/shuffle/package.json b/blocks/shuffle/package.json index 84a5321ecf5..074d5dd8dbe 100644 --- a/blocks/shuffle/package.json +++ b/blocks/shuffle/package.json @@ -32,8 +32,8 @@ "@dnd-kit/sortable": "7.0.2", "@dnd-kit/utilities": "3.2.2", "@hashintel/design-system": "0.0.8", - "@mui/icons-material": "5.16.11", - "@mui/material": "5.16.11", + "@mui/icons-material": "5.16.12", + "@mui/material": "5.16.12", "immer": "9.0.21", "lodash.isequal": "4.5.0", "uuid": "9.0.1" diff --git a/blocks/table/package.json b/blocks/table/package.json index c348f74dd8a..a2925a03f2e 100644 --- a/blocks/table/package.json +++ b/blocks/table/package.json @@ -36,7 +36,7 @@ "@hashintel/block-design-system": "0.0.2", "@hashintel/design-system": "0.0.8", "@local/hash-isomorphic-utils": "0.0.0-private", - "@mui/material": "5.16.11", + "@mui/material": "5.16.12", "clsx": "1.2.1", "immer": "9.0.21", "lodash.debounce": "4.0.8", diff --git a/libs/@hashintel/block-design-system/package.json b/libs/@hashintel/block-design-system/package.json index 670f86af004..910ed38b1d5 100644 --- a/libs/@hashintel/block-design-system/package.json +++ b/libs/@hashintel/block-design-system/package.json @@ -41,8 +41,8 @@ "@emotion/styled": "11.14.0", "@local/eslint": "0.0.0-private", "@local/tsconfig": "0.0.0-private", - "@mui/material": "5.16.11", - "@mui/system": "5.16.8", + "@mui/material": "5.16.12", + "@mui/system": "5.16.12", "@types/react": "18.3.17", "@types/react-dom": "18.3.5", "@types/react-syntax-highlighter": "15.5.13", @@ -55,8 +55,8 @@ "peerDependencies": { "@emotion/react": "11.14.0", "@emotion/styled": "11.14.0", - "@mui/material": "5.16.11", - "@mui/system": "5.16.8", + "@mui/material": "5.16.12", + "@mui/system": "5.16.12", "react": "^18.2.0", "react-dom": "^18.2.0" } diff --git a/libs/@hashintel/design-system/package.json b/libs/@hashintel/design-system/package.json index f00a4f36cc7..9dab1a1e027 100644 --- a/libs/@hashintel/design-system/package.json +++ b/libs/@hashintel/design-system/package.json @@ -56,8 +56,8 @@ "@emotion/styled": "11.14.0", "@local/eslint": "0.0.0-private", "@local/tsconfig": "0.0.0-private", - "@mui/material": "5.16.11", - "@mui/system": "5.16.8", + "@mui/material": "5.16.12", + "@mui/system": "5.16.12", "@storybook/react": "7.6.20", "@types/react": "18.3.17", "@types/react-dom": "18.3.5", @@ -71,8 +71,8 @@ "@emotion/cache": "11.14.0", "@emotion/react": "11.14.0", "@emotion/styled": "11.14.0", - "@mui/material": "5.16.11", - "@mui/system": "5.16.8", + "@mui/material": "5.16.12", + "@mui/system": "5.16.12", "react": "^18.2.0", "react-dom": "^18.2.0" } diff --git a/libs/@hashintel/query-editor/package.json b/libs/@hashintel/query-editor/package.json index 7d176c11089..41d8ea4ba22 100644 --- a/libs/@hashintel/query-editor/package.json +++ b/libs/@hashintel/query-editor/package.json @@ -29,8 +29,8 @@ }, "devDependencies": { "@local/eslint": "0.0.0-private", - "@mui/material": "5.16.11", - "@mui/system": "5.16.8", + "@mui/material": "5.16.12", + "@mui/system": "5.16.12", "eslint": "9.17.0", "eslint-plugin-storybook": "0.11.1", "react": "18.3.1", diff --git a/libs/@hashintel/type-editor/package.json b/libs/@hashintel/type-editor/package.json index a22b739ad4b..044899ad855 100644 --- a/libs/@hashintel/type-editor/package.json +++ b/libs/@hashintel/type-editor/package.json @@ -36,8 +36,8 @@ }, "devDependencies": { "@local/eslint": "0.0.0-private", - "@mui/material": "5.16.11", - "@mui/system": "5.16.8", + "@mui/material": "5.16.12", + "@mui/system": "5.16.12", "@types/lodash.memoize": "4.1.9", "@types/lodash.uniqueid": "4.0.9", "eslint": "9.17.0", diff --git a/yarn.lock b/yarn.lock index ad54c60ad5c..9199796c058 100644 --- a/yarn.lock +++ b/yarn.lock @@ -494,9 +494,9 @@ __metadata: "@local/hash-subgraph": "npm:0.0.0-private" "@local/status": "npm:0.0.0-private" "@local/tsconfig": "npm:0.0.0-private" - "@mui/icons-material": "npm:5.16.11" - "@mui/material": "npm:5.16.11" - "@mui/system": "npm:5.16.8" + "@mui/icons-material": "npm:5.16.12" + "@mui/material": "npm:5.16.12" + "@mui/system": "npm:5.16.12" "@next/bundle-analyzer": "npm:12.3.4" "@ory/client": "npm:1.1.41" "@ory/integrations": "npm:1.1.4" @@ -710,8 +710,8 @@ __metadata: "@emotion/cache": 11.14.0 "@emotion/react": 11.14.0 "@emotion/styled": 11.14.0 - "@mui/material": 5.16.11 - "@mui/system": 5.16.8 + "@mui/material": 5.16.12 + "@mui/system": 5.16.12 react: ^18.2.0 react-dom: ^18.2.0 languageName: unknown @@ -730,9 +730,9 @@ __metadata: "@local/eslint": "npm:0.0.0-private" "@local/tsconfig": "npm:0.0.0-private" "@matejmazur/react-katex": "npm:3.1.3" - "@mui/icons-material": "npm:5.16.11" - "@mui/material": "npm:5.16.11" - "@mui/system": "npm:5.16.8" + "@mui/icons-material": "npm:5.16.12" + "@mui/material": "npm:5.16.12" + "@mui/system": "npm:5.16.12" "@types/d3": "npm:7.4.3" "@types/fs-extra": "npm:9.0.13" "@types/gtag.js": "npm:0.0.20" @@ -807,7 +807,7 @@ __metadata: "@local/hash-isomorphic-utils": "npm:0.0.0-private" "@local/hash-subgraph": "npm:0.0.0-private" "@local/status": "npm:0.0.0-private" - "@mui/material": "npm:5.16.11" + "@mui/material": "npm:5.16.12" "@pmmmwh/react-refresh-webpack-plugin": "npm:0.5.15" "@sentry/browser": "npm:7.120.2" "@sentry/webpack-plugin": "npm:2.22.7" @@ -4639,7 +4639,7 @@ __metadata: "@hashintel/block-design-system": "npm:0.0.2" "@hashintel/design-system": "npm:0.0.8" "@local/eslint": "npm:0.0.0-private" - "@mui/material": "npm:5.16.11" + "@mui/material": "npm:5.16.12" "@types/lodash.debounce": "npm:4.0.9" "@types/react-dom": "npm:18.3.5" "@types/uuid": "npm:10.0.0" @@ -4671,7 +4671,7 @@ __metadata: "@hashintel/design-system": "npm:0.0.8" "@local/eslint": "npm:0.0.0-private" "@local/tsconfig": "npm:0.0.0-private" - "@mui/material": "npm:5.16.11" + "@mui/material": "npm:5.16.12" "@types/react-dom": "npm:18.3.5" "@types/uuid": "npm:10.0.0" block-scripts: "npm:0.3.4" @@ -4701,7 +4701,7 @@ __metadata: "@hashintel/design-system": "npm:0.0.8" "@local/eslint": "npm:0.0.0-private" "@local/tsconfig": "npm:0.0.0-private" - "@mui/material": "npm:5.16.11" + "@mui/material": "npm:5.16.12" "@types/react-dom": "npm:18.3.5" "@types/uuid": "npm:10.0.0" block-scripts: "npm:0.3.4" @@ -4729,7 +4729,7 @@ __metadata: "@hashintel/design-system": "npm:0.0.8" "@local/eslint": "npm:0.0.0-private" "@local/tsconfig": "npm:0.0.0-private" - "@mui/material": "npm:5.16.11" + "@mui/material": "npm:5.16.12" "@types/react-dom": "npm:18.3.5" block-scripts: "npm:0.3.4" eslint: "npm:9.17.0" @@ -4778,7 +4778,7 @@ __metadata: "@local/eslint": "npm:0.0.0-private" "@local/hash-isomorphic-utils": "npm:0.0.0-private" "@local/tsconfig": "npm:0.0.0-private" - "@mui/material": "npm:5.16.11" + "@mui/material": "npm:5.16.12" "@types/lodash.debounce": "npm:4.0.9" "@types/react-dom": "npm:18.3.5" "@types/react-is": "npm:19.0.0" @@ -4899,7 +4899,7 @@ __metadata: "@hashintel/block-design-system": "npm:0.0.2" "@hashintel/design-system": "npm:0.0.8" "@local/eslint": "npm:0.0.0-private" - "@mui/material": "npm:5.16.11" + "@mui/material": "npm:5.16.12" "@types/react-dom": "npm:18.3.5" "@types/uuid": "npm:10.0.0" block-scripts: "npm:0.3.4" @@ -4946,7 +4946,7 @@ __metadata: "@hashintel/block-design-system": "npm:0.0.2" "@hashintel/design-system": "npm:0.0.8" "@local/eslint": "npm:0.0.0-private" - "@mui/material": "npm:5.16.11" + "@mui/material": "npm:5.16.12" "@types/react-dom": "npm:18.3.5" "@types/uuid": "npm:10.0.0" block-scripts: "npm:0.3.4" @@ -4999,7 +4999,7 @@ __metadata: "@hashintel/design-system": "npm:0.0.8" "@local/eslint": "npm:0.0.0-private" "@local/tsconfig": "npm:0.0.0-private" - "@mui/material": "npm:5.16.11" + "@mui/material": "npm:5.16.12" "@types/lodash.clonedeep": "npm:4.5.9" "@types/lodash.debounce": "npm:4.0.9" "@types/lodash.isequal": "npm:4.5.8" @@ -5097,8 +5097,8 @@ __metadata: "@hashintel/design-system": "npm:0.0.8" "@local/eslint": "npm:0.0.0-private" "@local/tsconfig": "npm:0.0.0-private" - "@mui/icons-material": "npm:5.16.11" - "@mui/material": "npm:5.16.11" + "@mui/icons-material": "npm:5.16.12" + "@mui/material": "npm:5.16.12" "@types/lodash.isequal": "npm:4.5.8" "@types/uuid": "npm:10.0.0" block-scripts: "npm:0.3.4" @@ -5128,7 +5128,7 @@ __metadata: "@local/eslint": "npm:0.0.0-private" "@local/hash-isomorphic-utils": "npm:0.0.0-private" "@local/tsconfig": "npm:0.0.0-private" - "@mui/material": "npm:5.16.11" + "@mui/material": "npm:5.16.12" "@types/lodash.debounce": "npm:4.0.9" "@types/lodash.isequal": "npm:4.5.8" "@types/lodash.uniqueid": "npm:4.0.9" @@ -5871,7 +5871,7 @@ __metadata: languageName: node linkType: hard -"@emotion/cache@npm:11.14.0, @emotion/cache@npm:^11.11.0, @emotion/cache@npm:^11.13.5, @emotion/cache@npm:^11.14.0": +"@emotion/cache@npm:11.14.0, @emotion/cache@npm:^11.13.5, @emotion/cache@npm:^11.14.0": version: 11.14.0 resolution: "@emotion/cache@npm:11.14.0" dependencies: @@ -7907,8 +7907,8 @@ __metadata: "@local/hash-isomorphic-utils": "npm:0.0.0-private" "@local/hash-subgraph": "npm:0.0.0-private" "@local/tsconfig": "npm:0.0.0-private" - "@mui/material": "npm:5.16.11" - "@mui/system": "npm:5.16.8" + "@mui/material": "npm:5.16.12" + "@mui/system": "npm:5.16.12" "@types/react": "npm:18.3.17" "@types/react-dom": "npm:18.3.5" "@types/react-syntax-highlighter": "npm:15.5.13" @@ -7923,8 +7923,8 @@ __metadata: peerDependencies: "@emotion/react": 11.14.0 "@emotion/styled": 11.14.0 - "@mui/material": 5.16.11 - "@mui/system": 5.16.8 + "@mui/material": 5.16.12 + "@mui/system": 5.16.12 react: ^18.2.0 react-dom: ^18.2.0 languageName: unknown @@ -7944,8 +7944,8 @@ __metadata: "@local/eslint": "npm:0.0.0-private" "@local/hash-isomorphic-utils": "npm:0.0.0-private" "@local/tsconfig": "npm:0.0.0-private" - "@mui/material": "npm:5.16.11" - "@mui/system": "npm:5.16.8" + "@mui/material": "npm:5.16.12" + "@mui/system": "npm:5.16.12" "@storybook/react": "npm:7.6.20" "@types/react": "npm:18.3.17" "@types/react-dom": "npm:18.3.5" @@ -7961,8 +7961,8 @@ __metadata: "@emotion/cache": 11.14.0 "@emotion/react": 11.14.0 "@emotion/styled": 11.14.0 - "@mui/material": 5.16.11 - "@mui/system": 5.16.8 + "@mui/material": 5.16.12 + "@mui/system": 5.16.12 react: ^18.2.0 react-dom: ^18.2.0 languageName: unknown @@ -7978,8 +7978,8 @@ __metadata: "@fortawesome/free-solid-svg-icons": "npm:6.7.2" "@hashintel/design-system": "npm:0.0.8" "@local/eslint": "npm:0.0.0-private" - "@mui/material": "npm:5.16.11" - "@mui/system": "npm:5.16.8" + "@mui/material": "npm:5.16.12" + "@mui/system": "npm:5.16.12" clsx: "npm:1.2.1" eslint: "npm:9.17.0" eslint-plugin-storybook: "npm:0.11.1" @@ -8008,8 +8008,8 @@ __metadata: "@local/eslint": "npm:0.0.0-private" "@local/hash-isomorphic-utils": "npm:0.0.0-private" "@local/hash-subgraph": "npm:0.0.0-private" - "@mui/material": "npm:5.16.11" - "@mui/system": "npm:5.16.8" + "@mui/material": "npm:5.16.12" + "@mui/system": "npm:5.16.12" "@types/lodash.memoize": "npm:4.1.9" "@types/lodash.uniqueid": "npm:4.0.9" clsx: "npm:1.2.1" @@ -9904,16 +9904,16 @@ __metadata: languageName: node linkType: hard -"@mui/core-downloads-tracker@npm:^5.11.8, @mui/core-downloads-tracker@npm:^5.16.11": - version: 5.16.11 - resolution: "@mui/core-downloads-tracker@npm:5.16.11" - checksum: 10c0/a004e13b0ca1856322ca8045c6d88710123702b56c1b66cfb87835f3a729804e3e47b92fefdeadd7a70a0584411781ca987793ad33e36237b35d34b0d1cd38f4 +"@mui/core-downloads-tracker@npm:^5.11.8, @mui/core-downloads-tracker@npm:^5.16.12": + version: 5.16.12 + resolution: "@mui/core-downloads-tracker@npm:5.16.12" + checksum: 10c0/939aa1cc16ddd15c141f40fb3bfc9209d31ca909ebfd0353989290314cb8901007ddac4e12b31eaebde816f41a33eed4dfb77c7179a87b99e9b627cb66576604 languageName: node linkType: hard -"@mui/icons-material@npm:5.16.11": - version: 5.16.11 - resolution: "@mui/icons-material@npm:5.16.11" +"@mui/icons-material@npm:5.16.12": + version: 5.16.12 + resolution: "@mui/icons-material@npm:5.16.12" dependencies: "@babel/runtime": "npm:^7.23.9" peerDependencies: @@ -9923,7 +9923,7 @@ __metadata: peerDependenciesMeta: "@types/react": optional: true - checksum: 10c0/de2e41a5ac35b36896131341d612f43e639dac67da2dfdf9b1c3578c919fda09fba4aeae4c2a43de24022e4118476145a4c903b5f19705165c71ac784da85123 + checksum: 10c0/5e8552296781bb06ffe7026d9c823a14331c2b132b7610e6216f43c074d5ecbac7b1e9e99dffd98ffb769543cc3798dcfcc5aac54bd093773f8577994f1fffa4 languageName: node linkType: hard @@ -9960,21 +9960,21 @@ __metadata: languageName: node linkType: hard -"@mui/material@npm:5.16.11, @mui/material@npm:^5.0.0, @mui/material@npm:^5.10.4": - version: 5.16.11 - resolution: "@mui/material@npm:5.16.11" +"@mui/material@npm:5.16.12, @mui/material@npm:^5.0.0, @mui/material@npm:^5.10.4": + version: 5.16.12 + resolution: "@mui/material@npm:5.16.12" dependencies: "@babel/runtime": "npm:^7.23.9" - "@mui/core-downloads-tracker": "npm:^5.16.11" - "@mui/system": "npm:^5.16.8" + "@mui/core-downloads-tracker": "npm:^5.16.12" + "@mui/system": "npm:^5.16.12" "@mui/types": "npm:^7.2.15" - "@mui/utils": "npm:^5.16.8" + "@mui/utils": "npm:^5.16.12" "@popperjs/core": "npm:^2.11.8" "@types/react-transition-group": "npm:^4.4.10" clsx: "npm:^2.1.0" csstype: "npm:^3.1.3" prop-types: "npm:^15.8.1" - react-is: "npm:^18.3.1" + react-is: "npm:^19.0.0" react-transition-group: "npm:^4.4.5" peerDependencies: "@emotion/react": ^11.5.0 @@ -9989,16 +9989,16 @@ __metadata: optional: true "@types/react": optional: true - checksum: 10c0/ea83b160547136dd5e0f44556d1db29d35ddd4098e0966b7d713d7ae8211355873d2f07e2edd3d0089e24bbf9aac7eb50ff372077aa88b359f6e560c4601c483 + checksum: 10c0/e0e41f191a5f482b8cdddc14d6a0938e0fa798fec5f9107a3f360292d0fd8b91a59742a36c7d47a3e43efc798933b9eaf7e32208fd124354a0dd0d6bbacf1079 languageName: node linkType: hard -"@mui/private-theming@npm:^5.16.8": - version: 5.16.8 - resolution: "@mui/private-theming@npm:5.16.8" +"@mui/private-theming@npm:^5.16.12": + version: 5.16.12 + resolution: "@mui/private-theming@npm:5.16.12" dependencies: "@babel/runtime": "npm:^7.23.9" - "@mui/utils": "npm:^5.16.8" + "@mui/utils": "npm:^5.16.12" prop-types: "npm:^15.8.1" peerDependencies: "@types/react": ^17.0.0 || ^18.0.0 || ^19.0.0 @@ -10006,16 +10006,16 @@ __metadata: peerDependenciesMeta: "@types/react": optional: true - checksum: 10c0/737e6930be1dbd1dff01702e6583b8a507ca01a4a0ec140d766985b7ebaf8c444d78da52cdada89989728be444d4cd13509ba8950c4397af87c4fc8c8162741b + checksum: 10c0/bb7ddde1878a888c517072b7bf330ecf657a1286b5b8b2f969b793fe69c6e17180124469cf3cd68256d165531b3eb8e48aa446fbaf5b62759fa1dd094ac33af0 languageName: node linkType: hard -"@mui/styled-engine@npm:^5.16.8": - version: 5.16.8 - resolution: "@mui/styled-engine@npm:5.16.8" +"@mui/styled-engine@npm:^5.16.12": + version: 5.16.12 + resolution: "@mui/styled-engine@npm:5.16.12" dependencies: "@babel/runtime": "npm:^7.23.9" - "@emotion/cache": "npm:^11.11.0" + "@emotion/cache": "npm:^11.13.5" csstype: "npm:^3.1.3" prop-types: "npm:^15.8.1" peerDependencies: @@ -10027,19 +10027,19 @@ __metadata: optional: true "@emotion/styled": optional: true - checksum: 10c0/9c1866cf94fed61013324458be623f2de0c0cb6be065730c12441e798172a08389524b4b011c9e5a120bcc50c07cc7a835d365bd75a8b60f9a553d1de9c8af20 + checksum: 10c0/8404556edf2f9212c78291ce8ab6f1cc277a58f4b341031578ba0e0f81407172735af95050dda8a4f510b811267f2abf4d8a7f3dcab934c59b687ce748052148 languageName: node linkType: hard -"@mui/system@npm:5.16.8, @mui/system@npm:^5.11.8, @mui/system@npm:^5.16.8": - version: 5.16.8 - resolution: "@mui/system@npm:5.16.8" +"@mui/system@npm:5.16.12, @mui/system@npm:^5.11.8, @mui/system@npm:^5.16.12": + version: 5.16.12 + resolution: "@mui/system@npm:5.16.12" dependencies: "@babel/runtime": "npm:^7.23.9" - "@mui/private-theming": "npm:^5.16.8" - "@mui/styled-engine": "npm:^5.16.8" + "@mui/private-theming": "npm:^5.16.12" + "@mui/styled-engine": "npm:^5.16.12" "@mui/types": "npm:^7.2.15" - "@mui/utils": "npm:^5.16.8" + "@mui/utils": "npm:^5.16.12" clsx: "npm:^2.1.0" csstype: "npm:^3.1.3" prop-types: "npm:^15.8.1" @@ -10055,7 +10055,7 @@ __metadata: optional: true "@types/react": optional: true - checksum: 10c0/9b950b606fb8dd3ca4a737c2d945e0b7b30236d3857977ffc6e0dd9bc0781e00693b3690fcc80d595a6e0ad21a36cab5ed1f64df7a3217e0b033d961d91a7e51 + checksum: 10c0/5278496b355b66fe7c7913a6663edf1d7c7fa3cbf634cfc0e3ee63e7fed5e73a16b107352ed5919988f644a60d8f3e1bf075f4619b3baba128cbae8ec3c93b77 languageName: node linkType: hard @@ -10071,23 +10071,23 @@ __metadata: languageName: node linkType: hard -"@mui/utils@npm:^5.11.7, @mui/utils@npm:^5.16.8": - version: 5.16.8 - resolution: "@mui/utils@npm:5.16.8" +"@mui/utils@npm:^5.11.7, @mui/utils@npm:^5.16.12": + version: 5.16.12 + resolution: "@mui/utils@npm:5.16.12" dependencies: "@babel/runtime": "npm:^7.23.9" "@mui/types": "npm:^7.2.15" "@types/prop-types": "npm:^15.7.12" clsx: "npm:^2.1.1" prop-types: "npm:^15.8.1" - react-is: "npm:^18.3.1" + react-is: "npm:^19.0.0" peerDependencies: "@types/react": ^17.0.0 || ^18.0.0 || ^19.0.0 react: ^17.0.0 || ^18.0.0 || ^19.0.0 peerDependenciesMeta: "@types/react": optional: true - checksum: 10c0/86a1daf249a1dc766c0babe439c6874e092ce8239bdd67a57e81fc349934bdee0c98ee1833b282286847ffc16966edff88d9e2a47ac98577fb1010245191888a + checksum: 10c0/a406e80972c5516c787b278e1c25b17dbed6971286b2c883011e7af8224a9c228a9faebbdc57b148b7185509b3f0b9838f04fc84d341ee570f81647d1cc36457 languageName: node linkType: hard @@ -41033,7 +41033,7 @@ __metadata: languageName: node linkType: hard -"react-is@npm:^16.12.0 || ^17.0.0 || ^18.0.0, react-is@npm:^18.2.0, react-is@npm:^18.3.1": +"react-is@npm:^16.12.0 || ^17.0.0 || ^18.0.0, react-is@npm:^18.2.0": version: 18.3.1 resolution: "react-is@npm:18.3.1" checksum: 10c0/f2f1e60010c683479e74c63f96b09fb41603527cd131a9959e2aee1e5a8b0caf270b365e5ca77d4a6b18aae659b60a86150bb3979073528877029b35aecd2072 @@ -41054,6 +41054,13 @@ __metadata: languageName: node linkType: hard +"react-is@npm:^19.0.0": + version: 19.0.0 + resolution: "react-is@npm:19.0.0" + checksum: 10c0/d1be8e8500cf04f76df71942a21ef3a71266397a383d7ec8885f35190df818d35c65efd35aed7be47a89ad99aaff2c52e0c4e39e8930844a6b997622e50625a8 + languageName: node + linkType: hard + "react-json-tree@npm:^0.11.2": version: 0.11.2 resolution: "react-json-tree@npm:0.11.2" From 9d0558588fd3b0462550add297791662c5ba760b Mon Sep 17 00:00:00 2001 From: Ciaran Morinan <37743469+CiaranMn@users.noreply.github.com> Date: Fri, 20 Dec 2024 13:03:59 +0000 Subject: [PATCH 078/159] H-3852: Don't crash entities table if an entity's owner is missing (#5983) --- .../src/components/hooks/use-get-owner-for-entity.ts | 11 +++++++++-- 1 file changed, 9 insertions(+), 2 deletions(-) diff --git a/apps/hash-frontend/src/components/hooks/use-get-owner-for-entity.ts b/apps/hash-frontend/src/components/hooks/use-get-owner-for-entity.ts index 2812ea721a4..5a5b11bd8fc 100644 --- a/apps/hash-frontend/src/components/hooks/use-get-owner-for-entity.ts +++ b/apps/hash-frontend/src/components/hooks/use-get-owner-for-entity.ts @@ -1,6 +1,7 @@ import type { EntityId } from "@local/hash-graph-types/entity"; import type { OwnedById } from "@local/hash-graph-types/web"; import { extractOwnedByIdFromEntityId } from "@local/hash-subgraph"; +import * as Sentry from "@sentry/nextjs"; import { useCallback } from "react"; import { useOrgs } from "./use-orgs"; @@ -37,9 +38,15 @@ export const useGetOwnerForEntity = () => { orgs.find((org) => ownedById === org.accountGroupId); if (!owner) { - throw new Error( - `Owner with accountId ${ownedById} not found – possibly a caching issue if it has been created mid-session`, + Sentry.captureException( + new Error( + `Owner with accountId ${ownedById} not found in entities table – possibly a caching issue if it has been created mid-session`, + ), ); + return { + ownedById, + shortname: "unknown", + }; } return { From 96fde7df20b418d352cdbf6340e1ba22578632ad Mon Sep 17 00:00:00 2001 From: Ciaran Morinan <37743469+CiaranMn@users.noreply.github.com> Date: Fri, 20 Dec 2024 14:13:35 +0000 Subject: [PATCH 079/159] H-3832: Upgrade to React 19, Next 15 (#5945) --- .github/actions/warm-up-repo/action.yml | 2 +- .github/workflows/renovate.yml | 2 +- .github/workflows/test.yml | 4 +- ...ckprotocol-core-npm-0.1.3-7c4f062e15.patch | 12 + apps/hash-api/package.json | 2 +- apps/hash-frontend/next-env.d.ts | 2 +- apps/hash-frontend/package.json | 19 +- .../grid/utils/override-custom-renderers.tsx | 8 +- .../grid/utils/use-grid-tooltip.tsx | 2 +- .../components/remote-block/remote-block.tsx | 2 + .../remote-block/use-remote-block.ts | 4 +- .../edit-pinned-entity-types-modal.tsx | 3 +- .../pages/[shortname]/[page-slug].page.tsx | 2 +- .../edit-entity-slide-over.tsx | 4 +- .../[entity-uuid].page/entity-editor.tsx | 2 +- .../property-table/cells/change-type-cell.tsx | 2 +- .../run-flow-modal/manual-trigger-input.tsx | 1 + .../block-context-menu-item.tsx | 10 +- .../comments/comment-block.tsx | 8 +- .../comments/comment-text-field.tsx | 6 +- .../block-collection/create-editor-view.ts | 2 +- .../focus-page-title-plugin.ts | 2 +- .../shared/block-collection/page-context.tsx | 2 +- .../src/pages/shared/entities-table.tsx | 4 +- .../src/pages/shared/entities-visualizer.tsx | 6 +- .../shared/entity-editor-slide-stack.tsx | 2 +- .../pages/shared/entity-graph-visualizer.tsx | 2 +- .../type-slide-over-stack.tsx | 2 +- .../type-slide-over-slide.tsx | 2 +- .../shared/control-components.tsx | 2 +- .../graph-container/shared/graph-context.tsx | 4 +- .../shared/simple-autocomplete.tsx | 2 +- .../shared/use-event-handlers.ts | 6 +- .../src/pages/shared/markdown/elements.tsx | 5 +- .../src/pages/shared/sources-popover.tsx | 2 +- .../src/pages/shared/top-context-bar.tsx | 3 +- .../pages/shared/type-graph-visualizer.tsx | 2 +- .../virtualized-table/header/filter.tsx | 2 +- .../[[...type-kind]].page/types-table.tsx | 7 +- .../src/pages/use-what-changed.ts | 2 +- .../hash-frontend/src/shared/ui/menu-item.tsx | 2 +- .../src/shared/use-entity-icon.tsx | 2 +- .../src/shared/use-memo-compare.ts | 2 +- .../src/shared/use-scroll-lock.ts | 2 +- apps/hashdotdesign/package.json | 8 +- apps/hashdotdev/next-env.d.ts | 2 +- apps/hashdotdev/package.json | 10 +- apps/hashdotdev/src/components/mdx-pre.tsx | 2 +- .../src/components/mdx/info-card-wrapper.tsx | 5 +- .../src/components/mdx/info-card.tsx | 6 +- .../src/components/mdx/shared/util.ts | 4 +- apps/hashdotdev/src/components/pre-footer.tsx | 2 +- .../pages/roadmap/technology-tree-node.tsx | 2 +- apps/plugin-browser/package.json | 12 +- blocks/address/package.json | 13 +- blocks/address/src/app.tsx | 1 + blocks/address/src/use-mapbox.tsx | 3 +- blocks/ai-chat/package.json | 13 +- blocks/ai-chat/src/complete-chat.tsx | 2 + blocks/ai-image/package.json | 13 +- blocks/ai-image/src/app/generate-image.tsx | 2 + blocks/ai-text/package.json | 10 +- blocks/ai-text/src/app/generate-text.tsx | 2 + blocks/callout/package.json | 10 +- blocks/callout/src/app.tsx | 2 + blocks/chart/package.json | 10 +- blocks/chart/src/app.tsx | 1 + blocks/code/package.json | 10 +- blocks/code/src/app.tsx | 3 +- blocks/code/src/editor.tsx | 2 +- blocks/countdown/package.json | 10 +- blocks/countdown/src/app.tsx | 1 + blocks/divider/package.json | 12 +- blocks/embed/package.json | 10 +- blocks/embed/src/app.tsx | 5 + blocks/faq/package.json | 13 +- blocks/faq/src/app.tsx | 1 + blocks/heading/package.json | 10 +- blocks/heading/src/app.tsx | 1 + blocks/how-to/package.json | 13 +- blocks/how-to/src/app.tsx | 1 + blocks/image/package.json | 10 +- blocks/image/src/components/media.tsx | 3 +- blocks/image/src/image.tsx | 1 + blocks/kanban-board/package.json | 10 +- blocks/kanban-board/src/app.tsx | 1 + blocks/minesweeper/package.json | 6 +- blocks/paragraph/package.json | 10 +- blocks/paragraph/src/app.tsx | 1 + blocks/person/package.json | 10 +- blocks/person/src/app.tsx | 6 +- blocks/person/src/dev.tsx | 1 + blocks/shuffle/package.json | 11 +- blocks/shuffle/src/components/item.tsx | 2 +- blocks/shuffle/src/shuffle.tsx | 1 + blocks/table/package.json | 10 +- blocks/table/src/app.tsx | 1 + blocks/table/src/components/grid/grid.tsx | 2 +- blocks/timer/package.json | 10 +- blocks/timer/src/app.tsx | 1 + blocks/video/package.json | 10 +- blocks/video/src/components/media.tsx | 3 +- libs/@blockprotocol/graph/package.json | 6 +- .../graph/src/graph-module-json.ts | 2 +- libs/@blockprotocol/graph/src/react.ts | 4 +- .../type-system/typescript/package.json | 4 +- .../block-design-system/package.json | 12 +- .../src/block-prompt-input.tsx | 2 +- .../src/dropdown-selector.tsx | 2 +- libs/@hashintel/design-system/package.json | 12 +- libs/@hashintel/query-editor/package.json | 8 +- libs/@hashintel/type-editor/package.json | 8 +- .../src/entity-type-editor/link-list-card.tsx | 10 +- .../entity-type-editor/property-list-card.tsx | 10 +- .../expected-value-selector.tsx | 2 +- .../array-min-max-items.tsx | 4 +- .../shared/custom-expected-value-selector.tsx | 4 +- .../shared/insert-type-field.tsx | 4 +- .../shared/multiple-values-cell.tsx | 4 +- libs/@local/advanced-types/package.json | 2 +- libs/@local/hash-backend-utils/package.json | 2 +- .../@local/hash-isomorphic-utils/package.json | 9 +- .../src/create-apollo-client.ts | 2 +- .../src/generate-uuid.ts | 5 +- libs/@local/hash-subgraph/package.json | 3 +- libs/@local/repo-chores/node/package.json | 2 +- package.json | 7 +- tests/hash-backend-load/package.json | 3 +- yarn.lock | 952 ++++++------------ 129 files changed, 683 insertions(+), 905 deletions(-) create mode 100644 .yarn/patches/@blockprotocol-core-npm-0.1.3-7c4f062e15.patch diff --git a/.github/actions/warm-up-repo/action.yml b/.github/actions/warm-up-repo/action.yml index 3a4a6d8fc50..810a4cba3ff 100644 --- a/.github/actions/warm-up-repo/action.yml +++ b/.github/actions/warm-up-repo/action.yml @@ -13,7 +13,7 @@ runs: steps: - uses: actions/setup-node@39370e3970a6d050c480ffad4ff0ed4d3fdee5af # v4.1.0 with: - node-version: 20 ## aligned with Node version on Vercel + node-version: 22 ## aligned with Node version on Vercel # cache: yarn ## Currently disabled because of frequent timeouts - name: Install WASM tools diff --git a/.github/workflows/renovate.yml b/.github/workflows/renovate.yml index 4f9ec7c8323..4599ba31b11 100644 --- a/.github/workflows/renovate.yml +++ b/.github/workflows/renovate.yml @@ -83,7 +83,7 @@ jobs: - name: Install Node.js uses: actions/setup-node@39370e3970a6d050c480ffad4ff0ed4d3fdee5af # v4 with: - node-version: 20 + node-version: 22 - name: Enable corepack uses: ./.github/actions/enable-corepack diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index e2eef518acb..7e3f589db4b 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -387,14 +387,14 @@ jobs: if: matrix.package == '@tests/hash-playwright' && success() || failure() uses: actions/upload-artifact@6f51ac03b9356f520e9adb1b1b7802705f340c2b # v4.5.0 with: - name: ${{ env.TRIMMED_PACKAGE_NAME }}-report + name: ${{ env.TRIMMED_PACKAGE_NAME }}_report path: tests/hash-playwright/playwright-report - name: Upload logs uses: actions/upload-artifact@6f51ac03b9356f520e9adb1b1b7802705f340c2b # v4.5.0 if: success() || failure() with: - name: ${{ env.TRIMMED_PACKAGE_NAME }}-logs + name: ${{ env.TRIMMED_PACKAGE_NAME }}_logs path: | var/api var/logs diff --git a/.yarn/patches/@blockprotocol-core-npm-0.1.3-7c4f062e15.patch b/.yarn/patches/@blockprotocol-core-npm-0.1.3-7c4f062e15.patch new file mode 100644 index 00000000000..0fa19a24dab --- /dev/null +++ b/.yarn/patches/@blockprotocol-core-npm-0.1.3-7c4f062e15.patch @@ -0,0 +1,12 @@ +diff --git a/dist/react.d.ts b/dist/react.d.ts +index 6c42997d24f2b03237bd9b09a0f8ab61940440fd..77023cfce80b6e0af32791d5827a53980610fa2a 100644 +--- a/dist/react.d.ts ++++ b/dist/react.d.ts +@@ -13,6 +13,6 @@ export declare const useModuleConstructor: ({ Handler, + callbacks?: Record | undefined; + element?: HTMLElement | null | undefined; + }, "element"> | undefined; +- ref: RefObject; ++ ref: RefObject; + }) => T; + export {}; diff --git a/apps/hash-api/package.json b/apps/hash-api/package.json index a5b30c6e759..887d496c7fd 100644 --- a/apps/hash-api/package.json +++ b/apps/hash-api/package.json @@ -29,7 +29,7 @@ "@aws-sdk/credential-provider-node": "3.716.0", "@aws-sdk/s3-presigned-post": "3.716.0", "@aws-sdk/s3-request-presigner": "3.716.0", - "@blockprotocol/core": "0.1.3", + "@blockprotocol/core": "patch:@blockprotocol/core@npm%3A0.1.3#~/.yarn/patches/@blockprotocol-core-npm-0.1.3-7c4f062e15.patch", "@blockprotocol/type-system": "0.1.2-canary.0", "@graphql-tools/schema": "8.5.1", "@linear/sdk": "6.0.0", diff --git a/apps/hash-frontend/next-env.d.ts b/apps/hash-frontend/next-env.d.ts index 4f11a03dc6c..52e831b4342 100644 --- a/apps/hash-frontend/next-env.d.ts +++ b/apps/hash-frontend/next-env.d.ts @@ -2,4 +2,4 @@ /// // NOTE: This file should not be edited -// see https://nextjs.org/docs/basic-features/typescript for more information. +// see https://nextjs.org/docs/pages/api-reference/config/typescript for more information. diff --git a/apps/hash-frontend/package.json b/apps/hash-frontend/package.json index d164fb5ca51..610abbc4535 100644 --- a/apps/hash-frontend/package.json +++ b/apps/hash-frontend/package.json @@ -19,7 +19,7 @@ }, "dependencies": { "@apollo/client": "3.10.5", - "@blockprotocol/core": "0.1.3", + "@blockprotocol/core": "patch:@blockprotocol/core@npm%3A0.1.3#~/.yarn/patches/@blockprotocol-core-npm-0.1.3-7c4f062e15.patch", "@blockprotocol/graph": "0.4.0-canary.0", "@blockprotocol/hook": "0.1.3", "@blockprotocol/service": "0.1.4", @@ -72,7 +72,7 @@ "elkjs": "0.9.3", "emoji-mart": "5.6.0", "fractional-indexing": "2.1.0", - "framer-motion": "6.5.1", + "framer-motion": "11.15.0", "graphology": "0.25.4", "graphology-layout": "0.6.1", "graphology-layout-forceatlas2": "0.10.1", @@ -86,7 +86,7 @@ "marked": "4.3.0", "material-ui-popup-state": "4.1.0", "millify": "6.1.0", - "next": "13.5.5", + "next": "15.1.0", "next-seo": "6.6.0", "nextjs-progressbar": "0.0.16", "notistack": "2.0.8", @@ -101,9 +101,9 @@ "prosemirror-state": "1.4.3", "prosemirror-transform": "1.7.0", "prosemirror-view": "patch:prosemirror-view@npm%3A1.29.1#~/.yarn/patches/prosemirror-view-npm-1.29.1-ff37db4eea.patch", - "react": "18.3.1", + "react": "19.0.0", "react-beautiful-dnd": "13.1.1", - "react-dom": "18.3.1", + "react-dom": "19.0.0", "react-dropzone": "14.3.5", "react-full-screen": "1.1.1", "react-hook-form": "7.54.1", @@ -123,7 +123,7 @@ "signia-react": "0.1.5", "url-regex-safe": "4.0.0", "use-font-face-observer": "1.2.2", - "uuid": "9.0.1" + "uuid": "11.0.3" }, "devDependencies": { "@graphql-codegen/cli": "^5.0.3", @@ -132,7 +132,7 @@ "@graphql-codegen/typescript-operations": "2.5.13", "@local/eslint": "0.0.0-private", "@local/tsconfig": "0.0.0-private", - "@next/bundle-analyzer": "12.3.4", + "@next/bundle-analyzer": "15.1.0", "@types/dotenv-flow": "3.3.3", "@types/gapi": "0.0.47", "@types/google.accounts": "0.0.15", @@ -141,12 +141,11 @@ "@types/jsonpath": "0.2.4", "@types/lodash": "4.17.13", "@types/papaparse": "5.3.15", - "@types/react": "18.3.17", + "@types/react": "19.0.1", "@types/react-beautiful-dnd": "13.1.8", - "@types/react-dom": "18.3.5", + "@types/react-dom": "19.0.2", "@types/react-window": "1.8.8", "@types/url-regex-safe": "1.0.2", - "@types/uuid": "10.0.0", "@welldone-software/why-did-you-render": "8.0.3", "eslint": "9.17.0", "graphology-types": "0.24.8", diff --git a/apps/hash-frontend/src/components/grid/utils/override-custom-renderers.tsx b/apps/hash-frontend/src/components/grid/utils/override-custom-renderers.tsx index c47696cd722..ac0dac68b66 100644 --- a/apps/hash-frontend/src/components/grid/utils/override-custom-renderers.tsx +++ b/apps/hash-frontend/src/components/grid/utils/override-custom-renderers.tsx @@ -1,6 +1,6 @@ import type { DataEditorProps } from "@glideapps/glide-data-grid"; import { isObjectEditorCallbackResult } from "@glideapps/glide-data-grid"; -import type { MutableRefObject, PropsWithChildren } from "react"; +import type { PropsWithChildren, RefObject } from "react"; import { useEditBarContext } from "../../../shared/edit-bar-scroller"; import { useScrollLock } from "../../../shared/use-scroll-lock"; @@ -28,7 +28,7 @@ const ScrollLockWrapper = ({ children }: PropsWithChildren) => { */ export const overrideCustomRenderers = ( customRenderers: DataEditorProps["customRenderers"], - tableIdRef: MutableRefObject, + tableIdRef: RefObject, ): DataEditorProps["customRenderers"] => { return customRenderers?.map( ({ draw, provideEditor, onClick, ...restFields }) => { @@ -57,11 +57,11 @@ export const overrideCustomRenderers = ( return { ...editorProps, - editor: (props, context) => { + editor: (props) => { if (isObjectEditorCallbackResult(editorProps)) { return ( - {editorProps.editor(props, context)} + {editorProps.editor(props)} ); } diff --git a/apps/hash-frontend/src/components/grid/utils/use-grid-tooltip.tsx b/apps/hash-frontend/src/components/grid/utils/use-grid-tooltip.tsx index 881d8b63968..3a85641bdf4 100644 --- a/apps/hash-frontend/src/components/grid/utils/use-grid-tooltip.tsx +++ b/apps/hash-frontend/src/components/grid/utils/use-grid-tooltip.tsx @@ -14,7 +14,7 @@ import type { } from "./use-grid-tooltip/types"; export const useGridTooltip = ( - gridRef: RefObject, + gridRef: RefObject, ): UseGridTooltipResponse => { const popupState = usePopupState({ variant: "popover", diff --git a/apps/hash-frontend/src/components/remote-block/remote-block.tsx b/apps/hash-frontend/src/components/remote-block/remote-block.tsx index 9ec4415e745..5ca64746677 100644 --- a/apps/hash-frontend/src/components/remote-block/remote-block.tsx +++ b/apps/hash-frontend/src/components/remote-block/remote-block.tsx @@ -107,8 +107,10 @@ export const RemoteBlock: FunctionComponent = ({ graphModule.registerCallbacks(graphCallbacks); }, [graphCallbacks, graphModule]); + /* @ts-expect-error –– @todo H-3839 packages in BP repo needs updating */ useServiceEmbedderModule(wrapperRef, { callbacks: serviceModuleCallbacks }); + /* @ts-expect-error –– @todo H-3839 packages in BP repo needs updating */ useHookEmbedderModule(wrapperRef, { callbacks: { // eslint-disable-next-line @typescript-eslint/require-await -- async is required upstream diff --git a/apps/hash-frontend/src/components/remote-block/use-remote-block.ts b/apps/hash-frontend/src/components/remote-block/use-remote-block.ts index 6a72252f017..2e4255dc048 100644 --- a/apps/hash-frontend/src/components/remote-block/use-remote-block.ts +++ b/apps/hash-frontend/src/components/remote-block/use-remote-block.ts @@ -76,9 +76,9 @@ export const useRemoteBlock: UseRemoteBlockHook = ( } }); - const onBlockLoadedRef = useRef<() => void>(); + const onBlockLoadedRef = useRef<() => void>(null); useEffect(() => { - onBlockLoadedRef.current = onBlockLoaded; + onBlockLoadedRef.current = onBlockLoaded ?? null; }); const loadedRef = useRef(false); diff --git a/apps/hash-frontend/src/pages/[shortname].page/edit-pinned-entity-types-modal.tsx b/apps/hash-frontend/src/pages/[shortname].page/edit-pinned-entity-types-modal.tsx index c4c4f726e7f..0dd206009a7 100644 --- a/apps/hash-frontend/src/pages/[shortname].page/edit-pinned-entity-types-modal.tsx +++ b/apps/hash-frontend/src/pages/[shortname].page/edit-pinned-entity-types-modal.tsx @@ -60,7 +60,7 @@ const useDraggableInPortal = () => { }; }, [element]); - return (render: (provided: DraggableProvided) => ReactElement) => + return (render: (provided: DraggableProvided) => ReactElement) => (provided: DraggableProvided) => { const result = render(provided); @@ -271,6 +271,7 @@ export const EditPinnedEntityTypesModal: FunctionComponent< isDragDisabled={isDragDisabled} index={index} > + {/* @ts-expect-error -- fix maybe is https://github.com/atlassian/react-beautiful-dnd/blob/HEAD/docs/guides/reparenting.md */} {renderDraggable((provided) => ( = () => { fetchPolicy: "cache-and-network", }); - const pageHeaderRef = useRef(); + const pageHeaderRef = useRef(null); // Collab position tracking is disabled. // const collabPositions = useCollabPositions(accountId, pageEntityId); diff --git a/apps/hash-frontend/src/pages/[shortname]/entities/[entity-uuid].page/edit-entity-slide-over.tsx b/apps/hash-frontend/src/pages/[shortname]/entities/[entity-uuid].page/edit-entity-slide-over.tsx index 0eb77acdd95..4759042563a 100644 --- a/apps/hash-frontend/src/pages/[shortname]/entities/[entity-uuid].page/edit-entity-slide-over.tsx +++ b/apps/hash-frontend/src/pages/[shortname]/entities/[entity-uuid].page/edit-entity-slide-over.tsx @@ -82,7 +82,7 @@ export interface EditEntitySlideOverProps { onForward?: () => void; onEntityClick: ( entityId: EntityId, - slideContainerRef?: RefObject, + slideContainerRef?: RefObject, ) => void; onSubmit: () => void; readonly?: boolean; @@ -103,7 +103,7 @@ export interface EditEntitySlideOverProps { /** * If a container ref is provided, the slide will be attached to it (defaults to the MUI default, the body) */ - slideContainerRef?: RefObject; + slideContainerRef?: RefObject; } /** diff --git a/apps/hash-frontend/src/pages/[shortname]/entities/[entity-uuid].page/entity-editor.tsx b/apps/hash-frontend/src/pages/[shortname]/entities/[entity-uuid].page/entity-editor.tsx index 6651ad92df9..c5fc0271d56 100644 --- a/apps/hash-frontend/src/pages/[shortname]/entities/[entity-uuid].page/entity-editor.tsx +++ b/apps/hash-frontend/src/pages/[shortname]/entities/[entity-uuid].page/entity-editor.tsx @@ -52,7 +52,7 @@ export interface EntityEditorProps extends DraftLinkState { * If the editor is loaded inside a slide which is contained in a container other than the body, * the ref to the container. Used to correctly position popups within the editor. */ - slideContainerRef?: RefObject; + slideContainerRef?: RefObject; validationReport: MinimalEntityValidationReport | null; } diff --git a/apps/hash-frontend/src/pages/[shortname]/entities/[entity-uuid].page/entity-editor/properties-section/property-table/cells/change-type-cell.tsx b/apps/hash-frontend/src/pages/[shortname]/entities/[entity-uuid].page/entity-editor/properties-section/property-table/cells/change-type-cell.tsx index 6d0b1d53424..5037917c3c6 100644 --- a/apps/hash-frontend/src/pages/[shortname]/entities/[entity-uuid].page/entity-editor/properties-section/property-table/cells/change-type-cell.tsx +++ b/apps/hash-frontend/src/pages/[shortname]/entities/[entity-uuid].page/entity-editor/properties-section/property-table/cells/change-type-cell.tsx @@ -36,7 +36,7 @@ const changeText = "CHANGE"; const changeTextFont = "700 11px Inter"; export const createRenderChangeTypeCell = ( - gridRef: RefObject, + gridRef: RefObject, ): CustomRenderer => { return { kind: GridCellKind.Custom, diff --git a/apps/hash-frontend/src/pages/[shortname]/shared/flow-visualizer/run-flow-modal/manual-trigger-input.tsx b/apps/hash-frontend/src/pages/[shortname]/shared/flow-visualizer/run-flow-modal/manual-trigger-input.tsx index cf9f795b8a6..129ab5612ba 100644 --- a/apps/hash-frontend/src/pages/[shortname]/shared/flow-visualizer/run-flow-modal/manual-trigger-input.tsx +++ b/apps/hash-frontend/src/pages/[shortname]/shared/flow-visualizer/run-flow-modal/manual-trigger-input.tsx @@ -1,6 +1,7 @@ import { TextField } from "@hashintel/design-system"; import type { SxProps, Theme } from "@mui/material"; import { Switch } from "@mui/material"; +import type { JSX } from "react"; import { EntitySelector } from "../../../../shared/entity-selector"; import { EntityTypeSelector } from "../../../../shared/entity-type-selector"; diff --git a/apps/hash-frontend/src/pages/shared/block-collection/block-context-menu/block-context-menu-item.tsx b/apps/hash-frontend/src/pages/shared/block-collection/block-context-menu/block-context-menu-item.tsx index e16d0cf63ff..e09ca70cfb5 100644 --- a/apps/hash-frontend/src/pages/shared/block-collection/block-context-menu/block-context-menu-item.tsx +++ b/apps/hash-frontend/src/pages/shared/block-collection/block-context-menu/block-context-menu-item.tsx @@ -5,6 +5,7 @@ import { bindFocus, bindHover, bindPopover, + type PopupState, usePopupState, } from "material-ui-popup-state/hooks"; import HoverPopover from "material-ui-popup-state/HoverPopover"; @@ -25,7 +26,7 @@ type BlockContextMenuItemProps = { onClick?: () => void; icon: ReactElement; title: string; - subMenu?: ReactElement; + subMenu?: ReactElement<{ closeMenu?: () => void; popupState?: PopupState }>; subMenuWidth?: number; }; @@ -49,7 +50,7 @@ export const BlockContextMenuItem = forwardRef< // access offsetTop in the useLayoutEffect. Consider using an library to handle merging refs // @see https://github.com/gregberge/react-merge-refs, or better still, use the // useForkRef exported by MUI - const menuItemRef = (ref ?? localRef) as RefObject; + const menuItemRef = (ref ?? localRef) as RefObject; useLayoutEffect(() => { if (subMenu && !subMenuOffsetTop && menuItemRef.current) { @@ -114,7 +115,10 @@ export const BlockContextMenuItem = forwardRef< }, }} > - {cloneElement(subMenu, { + {cloneElement<{ + closeMenu?: () => void; + popupState?: PopupState; + }>(subMenu, { closeMenu, popupState: subMenuPopupState, })} diff --git a/apps/hash-frontend/src/pages/shared/block-collection/comments/comment-block.tsx b/apps/hash-frontend/src/pages/shared/block-collection/comments/comment-block.tsx index bdb66d6d8e2..7aab502d0ac 100644 --- a/apps/hash-frontend/src/pages/shared/block-collection/comments/comment-block.tsx +++ b/apps/hash-frontend/src/pages/shared/block-collection/comments/comment-block.tsx @@ -154,7 +154,9 @@ export const CommentBlock: FunctionComponent = ({ return ( setContainer(ref)} + ref={(ref: HTMLDivElement) => { + setContainer(ref); + }} sx={{ display: "flex", flexDirection: "column", @@ -250,7 +252,6 @@ export const CommentBlock: FunctionComponent = ({ - ({ @@ -323,7 +324,6 @@ export const CommentBlock: FunctionComponent = ({ ) : null} - {!editable && shouldCollapse && !collapsed ? ( = ({ onClick={() => setCollapsed(true)} /> ) : null} - {authenticatedUser.accountId === commentCreatedById ? ( = ({ /> ) : null} - = ({ onClose, onSubmit, }) => { - const viewRef = useRef(); + const viewRef = useRef(null); const [portals, renderPortal] = usePortals(); const { activeWorkspaceOwnedById } = useContext(WorkspaceContext); - const editorContainerRef = useRef(); + const editorContainerRef = useRef(null); const editableRef = useRef(false); const eventsRef = useRef({ onClose, onSubmit, onLineCountChange }); @@ -181,7 +181,7 @@ export const CommentTextField: FunctionComponent = ({ return () => { resizeObserver.unobserve(view.dom); view.destroy(); - viewRef.current = undefined; + viewRef.current = null; }; } }, [onChange, activeWorkspaceOwnedById, renderPortal]); diff --git a/apps/hash-frontend/src/pages/shared/block-collection/create-editor-view.ts b/apps/hash-frontend/src/pages/shared/block-collection/create-editor-view.ts index 2b9455d470e..750662aa4b3 100644 --- a/apps/hash-frontend/src/pages/shared/block-collection/create-editor-view.ts +++ b/apps/hash-frontend/src/pages/shared/block-collection/create-editor-view.ts @@ -147,7 +147,7 @@ export const createEditorView = (params: { isCommentingEnabled: boolean; ownedById: OwnedById; pageEntityId: EntityId; - pageTitleRef?: RefObject; + pageTitleRef?: RefObject; readonly: boolean; renderNode: HTMLElement; renderPortal: RenderPortal; diff --git a/apps/hash-frontend/src/pages/shared/block-collection/focus-page-title-plugin.ts b/apps/hash-frontend/src/pages/shared/block-collection/focus-page-title-plugin.ts index 4a65bb4ef0f..efb33a41325 100644 --- a/apps/hash-frontend/src/pages/shared/block-collection/focus-page-title-plugin.ts +++ b/apps/hash-frontend/src/pages/shared/block-collection/focus-page-title-plugin.ts @@ -2,7 +2,7 @@ import { Plugin } from "prosemirror-state"; import type { RefObject } from "react"; export const createFocusPageTitlePlugin = ( - pageTitleRef: RefObject, + pageTitleRef: RefObject, ) => // eslint-disable-next-line no-restricted-syntax -- prosemirror typing error new Plugin({ diff --git a/apps/hash-frontend/src/pages/shared/block-collection/page-context.tsx b/apps/hash-frontend/src/pages/shared/block-collection/page-context.tsx index 1d76519a1a3..458a8fc93cd 100644 --- a/apps/hash-frontend/src/pages/shared/block-collection/page-context.tsx +++ b/apps/hash-frontend/src/pages/shared/block-collection/page-context.tsx @@ -12,7 +12,7 @@ interface PageContextProps { pageEntityId: EntityId; editorContext: EditorContext | undefined; setEditorContext: (context: EditorContext) => void; - pageTitleRef: RefObject; + pageTitleRef: RefObject; } const PageContext = createContext(null); diff --git a/apps/hash-frontend/src/pages/shared/entities-table.tsx b/apps/hash-frontend/src/pages/shared/entities-table.tsx index b61539f25c7..86c596d3498 100644 --- a/apps/hash-frontend/src/pages/shared/entities-table.tsx +++ b/apps/hash-frontend/src/pages/shared/entities-table.tsx @@ -74,14 +74,14 @@ const emptyTableData = { export const EntitiesTable: FunctionComponent<{ currentlyDisplayedColumnsRef: MutableRefObject; - currentlyDisplayedRowsRef: RefObject; + currentlyDisplayedRowsRef: RefObject; disableTypeClick?: boolean; entities: Entity[]; entityTypes: EntityType[]; filterState: FilterState; handleEntityClick: ( entityId: EntityId, - modalContainerRef?: RefObject, + modalContainerRef?: RefObject, ) => void; hasSomeLinks: boolean; hidePropertiesColumns?: boolean; diff --git a/apps/hash-frontend/src/pages/shared/entities-visualizer.tsx b/apps/hash-frontend/src/pages/shared/entities-visualizer.tsx index 93744b5983c..00a9f8d3746 100644 --- a/apps/hash-frontend/src/pages/shared/entities-visualizer.tsx +++ b/apps/hash-frontend/src/pages/shared/entities-visualizer.tsx @@ -116,7 +116,7 @@ export const EntitiesVisualizer: FunctionComponent<{ const [selectedEntityType, setSelectedEntityType] = useState<{ entityTypeId: VersionedUrl; - slideContainerRef?: RefObject; + slideContainerRef?: RefObject; } | null>(null); const { @@ -266,14 +266,14 @@ export const EntitiesVisualizer: FunctionComponent<{ const [selectedEntity, setSelectedEntity] = useState<{ entityId: EntityId; options?: Pick; - slideContainerRef?: RefObject; + slideContainerRef?: RefObject; subgraph: Subgraph; } | null>(null); const handleEntityClick = useCallback( ( entityId: EntityId, - modalContainerRef?: RefObject, + modalContainerRef?: RefObject, options?: Pick, ) => { if (subgraph) { diff --git a/apps/hash-frontend/src/pages/shared/entity-editor-slide-stack.tsx b/apps/hash-frontend/src/pages/shared/entity-editor-slide-stack.tsx index eb6e9b550da..08f6e701406 100644 --- a/apps/hash-frontend/src/pages/shared/entity-editor-slide-stack.tsx +++ b/apps/hash-frontend/src/pages/shared/entity-editor-slide-stack.tsx @@ -42,7 +42,7 @@ interface EntityEditorSlideStackProps { /** * If a container ref is provided, the slide will be attached to it (defaults to the MUI default, the body) */ - slideContainerRef?: RefObject; + slideContainerRef?: RefObject; } const Slide = (allProps: EditEntitySlideOverProps) => { diff --git a/apps/hash-frontend/src/pages/shared/entity-graph-visualizer.tsx b/apps/hash-frontend/src/pages/shared/entity-graph-visualizer.tsx index ec56a7b9a22..c16c17089bd 100644 --- a/apps/hash-frontend/src/pages/shared/entity-graph-visualizer.tsx +++ b/apps/hash-frontend/src/pages/shared/entity-graph-visualizer.tsx @@ -73,7 +73,7 @@ export const EntityGraphVisualizer = memo( entities?: T[]; onEntityClick?: ( entityId: EntityId, - containerRef?: RefObject, + containerRef?: RefObject, options?: Pick, ) => void; onEntityTypeClick?: (entityTypeId: VersionedUrl) => void; diff --git a/apps/hash-frontend/src/pages/shared/entity-type-page/type-slide-over-stack.tsx b/apps/hash-frontend/src/pages/shared/entity-type-page/type-slide-over-stack.tsx index 3bcedfae082..8f2720a2a31 100644 --- a/apps/hash-frontend/src/pages/shared/entity-type-page/type-slide-over-stack.tsx +++ b/apps/hash-frontend/src/pages/shared/entity-type-page/type-slide-over-stack.tsx @@ -12,7 +12,7 @@ export const TypeSlideOverStack: FunctionComponent<{ /** * If a container ref is provided, the slide will be attached to it (defaults to the MUI default, the body) */ - slideContainerRef?: RefObject; + slideContainerRef?: RefObject; }> = ({ rootTypeId, onClose, slideContainerRef }) => { const [animateOut, setAnimateOut] = useState(false); const [items, setItems] = useState([rootTypeId]); diff --git a/apps/hash-frontend/src/pages/shared/entity-type-page/type-slide-over-stack/type-slide-over-slide.tsx b/apps/hash-frontend/src/pages/shared/entity-type-page/type-slide-over-stack/type-slide-over-slide.tsx index 7bf6e935767..542a35f52e8 100644 --- a/apps/hash-frontend/src/pages/shared/entity-type-page/type-slide-over-stack/type-slide-over-slide.tsx +++ b/apps/hash-frontend/src/pages/shared/entity-type-page/type-slide-over-stack/type-slide-over-slide.tsx @@ -110,7 +110,7 @@ interface TypeSlideOverSlideProps { /** * If a container ref is provided, the slide will be attached to it (defaults to the MUI default, the body) */ - slideContainerRef?: RefObject; + slideContainerRef?: RefObject; typeUrl: VersionedUrl; } diff --git a/apps/hash-frontend/src/pages/shared/graph-visualizer/graph-container/shared/control-components.tsx b/apps/hash-frontend/src/pages/shared/graph-visualizer/graph-container/shared/control-components.tsx index 6e010ea1660..1977c141432 100644 --- a/apps/hash-frontend/src/pages/shared/graph-visualizer/graph-container/shared/control-components.tsx +++ b/apps/hash-frontend/src/pages/shared/graph-visualizer/graph-container/shared/control-components.tsx @@ -89,7 +89,7 @@ export const ControlPanel = ({ open: boolean; onClose: () => void; position: "left" | "right"; - panelRef?: RefObject; + panelRef?: RefObject; title: string; }>) => { return ( diff --git a/apps/hash-frontend/src/pages/shared/graph-visualizer/graph-container/shared/graph-context.tsx b/apps/hash-frontend/src/pages/shared/graph-visualizer/graph-container/shared/graph-context.tsx index b57b8de6eae..026eed77ad1 100644 --- a/apps/hash-frontend/src/pages/shared/graph-visualizer/graph-container/shared/graph-context.tsx +++ b/apps/hash-frontend/src/pages/shared/graph-visualizer/graph-container/shared/graph-context.tsx @@ -27,7 +27,7 @@ export type GraphContextType< configPanelOpen: boolean; filters: GraphVizFilters; filterPanelOpen: boolean; - graphContainerRef: RefObject; + graphContainerRef: RefObject; graphState: GraphState; pathFinderPanelOpen: boolean; refreshGraphHighlights: () => void; @@ -53,7 +53,7 @@ export type GraphContextProviderProps< > = { defaultConfig: GraphVizConfig; defaultFilters?: GraphVizFilters; - graphContainerRef: RefObject; + graphContainerRef: RefObject; } & Pick; export const GraphContextProvider = < diff --git a/apps/hash-frontend/src/pages/shared/graph-visualizer/graph-container/shared/simple-autocomplete.tsx b/apps/hash-frontend/src/pages/shared/graph-visualizer/graph-container/shared/simple-autocomplete.tsx index 79fb6285ffb..b810e207996 100644 --- a/apps/hash-frontend/src/pages/shared/graph-visualizer/graph-container/shared/simple-autocomplete.tsx +++ b/apps/hash-frontend/src/pages/shared/graph-visualizer/graph-container/shared/simple-autocomplete.tsx @@ -85,7 +85,7 @@ export const SimpleAutocomplete = < autoFocus?: boolean; disabled?: boolean; endAdornment?: ReactNode; - inputRef?: RefObject; + inputRef?: RefObject; placeholder: string; options: T[]; sortAlphabetically?: boolean; diff --git a/apps/hash-frontend/src/pages/shared/graph-visualizer/graph-container/shared/use-event-handlers.ts b/apps/hash-frontend/src/pages/shared/graph-visualizer/graph-container/shared/use-event-handlers.ts index 1e79ae37cb3..6bbd960cfa9 100644 --- a/apps/hash-frontend/src/pages/shared/graph-visualizer/graph-container/shared/use-event-handlers.ts +++ b/apps/hash-frontend/src/pages/shared/graph-visualizer/graph-container/shared/use-event-handlers.ts @@ -13,11 +13,11 @@ import type { GraphVizEdge } from "./types"; export type RegisterEventsArgs = { config: GraphVizConfig; - graphContainerRef: RefObject; + graphContainerRef: RefObject; graphState: GraphState; onEdgeClick?: (params: { edgeData: GraphVizEdge; - screenContainerRef?: RefObject; + screenContainerRef?: RefObject; }) => void; onRender?: () => void; onNodeSecondClick?: (params: { @@ -27,7 +27,7 @@ export type RegisterEventsArgs = { * This means that MUI components (and any others) that attach to the body will not be visible. * If this is provided, components should attach any popups/modals to this ref's current element instead. */ - screenContainerRef?: RefObject; + screenContainerRef?: RefObject; }) => void; setConfigPanelOpen: (open: boolean) => void; setFilterPanelOpen: (open: boolean) => void; diff --git a/apps/hash-frontend/src/pages/shared/markdown/elements.tsx b/apps/hash-frontend/src/pages/shared/markdown/elements.tsx index d10398effb7..3f7ba7df584 100644 --- a/apps/hash-frontend/src/pages/shared/markdown/elements.tsx +++ b/apps/hash-frontend/src/pages/shared/markdown/elements.tsx @@ -125,7 +125,10 @@ export const ListItem = ({ children }: HTMLAttributes) => { export const Pre = ({ children }: HTMLAttributes) => { if (isValidElement(children)) { - const childProps: { className?: string; children: string } = children.props; + const childProps = children.props as { + className?: string; + children: string; + }; return ( ; + cellRef: RefObject; open: boolean; onClose: () => void; sources: SourceProvenance[]; diff --git a/apps/hash-frontend/src/pages/shared/top-context-bar.tsx b/apps/hash-frontend/src/pages/shared/top-context-bar.tsx index fb0fb2530d4..972b179773e 100644 --- a/apps/hash-frontend/src/pages/shared/top-context-bar.tsx +++ b/apps/hash-frontend/src/pages/shared/top-context-bar.tsx @@ -18,6 +18,7 @@ import { useMemo, useState } from "react"; import { isItemArchived } from "../../shared/is-archived"; import { isEntityPageEntity } from "../../shared/is-of-type"; import { useSidebarContext } from "../../shared/layout/layout-with-sidebar"; +import type { MenuItemProps } from "../../shared/ui/menu-item"; import type { BreadcrumbsProps } from "./breadcrumbs"; import { Breadcrumbs } from "./breadcrumbs"; import { ArchivedItemBanner } from "./top-context-bar/archived-item-banner"; @@ -102,7 +103,7 @@ const PageRestoredMessageWrapper: FunctionComponent<{ export const TOP_CONTEXT_BAR_HEIGHT = 50; type TopContextBarProps = { - actionMenuItems?: ReactElement[]; + actionMenuItems?: ReactElement[]; crumbs: BreadcrumbsProps["crumbs"]; item?: Entity | EntityTypeWithMetadata; defaultCrumbIcon?: ReactNode; diff --git a/apps/hash-frontend/src/pages/shared/type-graph-visualizer.tsx b/apps/hash-frontend/src/pages/shared/type-graph-visualizer.tsx index dc4c7d0cc39..119f96b9f60 100644 --- a/apps/hash-frontend/src/pages/shared/type-graph-visualizer.tsx +++ b/apps/hash-frontend/src/pages/shared/type-graph-visualizer.tsx @@ -42,7 +42,7 @@ export const TypeGraphVisualizer = ({ }: { onTypeClick: ( typeId: VersionedUrl, - screenContainerRef?: RefObject, + screenContainerRef?: RefObject, ) => void; types: ( | DataTypeWithMetadata diff --git a/apps/hash-frontend/src/pages/shared/virtualized-table/header/filter.tsx b/apps/hash-frontend/src/pages/shared/virtualized-table/header/filter.tsx index b98a85cf12f..e296084c575 100644 --- a/apps/hash-frontend/src/pages/shared/virtualized-table/header/filter.tsx +++ b/apps/hash-frontend/src/pages/shared/virtualized-table/header/filter.tsx @@ -100,7 +100,7 @@ const FilterPopover = ({ open, onClose, }: { - buttonRef: RefObject; + buttonRef: RefObject; isFiltered: boolean; filterDefinition: Filter; filterValue: Filter["initialValue"]; diff --git a/apps/hash-frontend/src/pages/types/[[...type-kind]].page/types-table.tsx b/apps/hash-frontend/src/pages/types/[[...type-kind]].page/types-table.tsx index 71a15302dc0..11e0e6a2c1e 100644 --- a/apps/hash-frontend/src/pages/types/[[...type-kind]].page/types-table.tsx +++ b/apps/hash-frontend/src/pages/types/[[...type-kind]].page/types-table.tsx @@ -124,7 +124,7 @@ export const TypesTable: FunctionComponent<{ const [selectedEntityType, setSelectedEntityType] = useState<{ entityTypeId: VersionedUrl; - slideContainerRef?: RefObject; + slideContainerRef?: RefObject; } | null>(null); const { isSpecialEntityTypeLookup } = useEntityTypesContextRequired(); @@ -480,7 +480,10 @@ export const TypesTable: FunctionComponent<{ const currentlyDisplayedRowsRef = useRef(null); const onTypeClick = useCallback( - (typeId: VersionedUrl, slideContainerRef?: RefObject) => + ( + typeId: VersionedUrl, + slideContainerRef?: RefObject, + ) => setSelectedEntityType({ entityTypeId: typeId, slideContainerRef, diff --git a/apps/hash-frontend/src/pages/use-what-changed.ts b/apps/hash-frontend/src/pages/use-what-changed.ts index ab4fdaaec93..147a58ff26e 100644 --- a/apps/hash-frontend/src/pages/use-what-changed.ts +++ b/apps/hash-frontend/src/pages/use-what-changed.ts @@ -9,7 +9,7 @@ import { useEffect, useRef } from "react"; * as this can cause issues if the dependencies are very large objects/arrays. */ export const useWhatChanged = (dependencies: unknown[], labels: string[]) => { - const previousDepsRef = useRef(); + const previousDepsRef = useRef(null); useEffect(() => { if (previousDepsRef.current) { diff --git a/apps/hash-frontend/src/shared/ui/menu-item.tsx b/apps/hash-frontend/src/shared/ui/menu-item.tsx index 682bc0c9e60..aadca26e1ce 100644 --- a/apps/hash-frontend/src/shared/ui/menu-item.tsx +++ b/apps/hash-frontend/src/shared/ui/menu-item.tsx @@ -13,7 +13,7 @@ export type MenuItemProps = { href?: string; } & BaseMenuItemProps; -export const MenuItem = forwardRef( +export const MenuItem = forwardRef( ({ children, href, ...props }, ref) => { const Component = ( diff --git a/apps/hash-frontend/src/shared/use-entity-icon.tsx b/apps/hash-frontend/src/shared/use-entity-icon.tsx index d62c63af92d..a53c8744cdc 100644 --- a/apps/hash-frontend/src/shared/use-entity-icon.tsx +++ b/apps/hash-frontend/src/shared/use-entity-icon.tsx @@ -7,7 +7,7 @@ import { includesPageEntityTypeId } from "@local/hash-isomorphic-utils/page-enti import { simplifyProperties } from "@local/hash-isomorphic-utils/simplify-properties"; import type { PageProperties } from "@local/hash-isomorphic-utils/system-types/shared"; import { Box } from "@mui/material"; -import type { ReactElement } from "react"; +import type { JSX, ReactElement } from "react"; import { useMemo } from "react"; import { CanvasIcon } from "./icons/canvas-icon"; diff --git a/apps/hash-frontend/src/shared/use-memo-compare.ts b/apps/hash-frontend/src/shared/use-memo-compare.ts index 41978b9690d..caf2db12d28 100644 --- a/apps/hash-frontend/src/shared/use-memo-compare.ts +++ b/apps/hash-frontend/src/shared/use-memo-compare.ts @@ -14,7 +14,7 @@ export const useMemoCompare = ( isReturnUnchanged: (oldValue: Return, newValue: Return) => boolean, ): Return => { const previousDependenciesRef = useRef(dependencies); - const previousValueRef = useRef(); + const previousValueRef = useRef(null); const hasRunOnceRef = useRef(false); let shouldComputeReturn = false; diff --git a/apps/hash-frontend/src/shared/use-scroll-lock.ts b/apps/hash-frontend/src/shared/use-scroll-lock.ts index b1200e13814..ca4f824371d 100644 --- a/apps/hash-frontend/src/shared/use-scroll-lock.ts +++ b/apps/hash-frontend/src/shared/use-scroll-lock.ts @@ -13,7 +13,7 @@ const getScrollbarSizeOfDocument = () => { const useLastScrollbarSize = (element: HTMLElement) => { const [lastScrollbarSize, setLastScrollbarSize] = useState(0); - const observerRef = useRef(); + const observerRef = useRef(null); useEffect(() => { observerRef.current = new ResizeObserver(() => { diff --git a/apps/hashdotdesign/package.json b/apps/hashdotdesign/package.json index f4fced23961..ae20d50dd3c 100644 --- a/apps/hashdotdesign/package.json +++ b/apps/hashdotdesign/package.json @@ -22,8 +22,8 @@ "@storybook/react": "7.6.20", "@storybook/react-webpack5": "7.6.20", "@storybook/testing-library": "0.2.2", - "@types/react": "18.3.17", - "@types/react-dom": "18.3.5", + "@types/react": "19.0.1", + "@types/react-dom": "19.0.2", "storybook": "7.6.20" }, "peerDependencies": { @@ -32,7 +32,7 @@ "@emotion/styled": "11.14.0", "@mui/material": "5.16.12", "@mui/system": "5.16.12", - "react": "^18.2.0", - "react-dom": "^18.2.0" + "react": "^19.0.0", + "react-dom": "^19.0.0" } } diff --git a/apps/hashdotdev/next-env.d.ts b/apps/hashdotdev/next-env.d.ts index 4f11a03dc6c..52e831b4342 100644 --- a/apps/hashdotdev/next-env.d.ts +++ b/apps/hashdotdev/next-env.d.ts @@ -2,4 +2,4 @@ /// // NOTE: This file should not be edited -// see https://nextjs.org/docs/basic-features/typescript for more information. +// see https://nextjs.org/docs/pages/api-reference/config/typescript for more information. diff --git a/apps/hashdotdev/package.json b/apps/hashdotdev/package.json index 21d5e4b1313..c8267ff2162 100644 --- a/apps/hashdotdev/package.json +++ b/apps/hashdotdev/package.json @@ -43,14 +43,14 @@ "katex": "0.16.18", "md5": "2.3.0", "mock-block-dock": "0.0.21", - "next": "13.5.5", + "next": "15.1.0", "next-mdx-remote": "4.4.1", "next-seo": "6.6.0", "nextjs-progressbar": "0.0.16", "plaiceholder": "2.5.0", "prismjs": "1.29.0", - "react": "18.3.1", - "react-dom": "18.3.1", + "react": "19.0.0", + "react-dom": "19.0.0", "react-full-screen": "1.1.1", "react-html-parser": "2.0.2", "remark-gfm": "3.0.1", @@ -74,8 +74,8 @@ "@types/md5": "2.3.5", "@types/node": "22.10.2", "@types/prismjs": "1.26.5", - "@types/react": "18.3.17", - "@types/react-dom": "18.3.5", + "@types/react": "19.0.1", + "@types/react-dom": "19.0.2", "@types/react-html-parser": "2.0.6", "@types/unist": "2.0.11", "babel-loader": "9.2.1", diff --git a/apps/hashdotdev/src/components/mdx-pre.tsx b/apps/hashdotdev/src/components/mdx-pre.tsx index ce4852b996b..f5dbb9bfe3a 100644 --- a/apps/hashdotdev/src/components/mdx-pre.tsx +++ b/apps/hashdotdev/src/components/mdx-pre.tsx @@ -18,7 +18,7 @@ export const MdxPre = ({ children, ...rest }: HTMLAttributes) => { child.type === mdxComponents.code && !otherChildren.length ) { - const childProps: { className: string; children: string } = child.props; + const childProps = child.props as { className: string; children: string }; const isLanguageBlockFunction = childProps.className === "language-block-function"; diff --git a/apps/hashdotdev/src/components/mdx/info-card-wrapper.tsx b/apps/hashdotdev/src/components/mdx/info-card-wrapper.tsx index c34255d93a7..8e8206b22a2 100644 --- a/apps/hashdotdev/src/components/mdx/info-card-wrapper.tsx +++ b/apps/hashdotdev/src/components/mdx/info-card-wrapper.tsx @@ -1,3 +1,4 @@ +import type { SxProps, Theme } from "@mui/material"; import { Box } from "@mui/material"; import type { FunctionComponent, ReactElement, ReactNode } from "react"; import { Children, cloneElement, isValidElement } from "react"; @@ -23,7 +24,9 @@ export const InfoCardWrapper: FunctionComponent = ({ `Expected InfoCardWrapper to contain exactly one InfoCard, got ${infoCardElements.length}`, ); } - const infoCardElement = infoCardElements[0] as ReactElement; + const infoCardElement = infoCardElements[0] as ReactElement<{ + sx: SxProps; + }>; const childrenWithoutInfoCard = childrenAsArray.filter( (child) => child !== infoCardElement, diff --git a/apps/hashdotdev/src/components/mdx/info-card.tsx b/apps/hashdotdev/src/components/mdx/info-card.tsx index 360f99b66d0..5c4d39d1a83 100644 --- a/apps/hashdotdev/src/components/mdx/info-card.tsx +++ b/apps/hashdotdev/src/components/mdx/info-card.tsx @@ -1,6 +1,6 @@ import type { PaperProps } from "@mui/material"; import { Paper, Typography } from "@mui/material"; -import type { FunctionComponent, ReactNode } from "react"; +import type { FunctionComponent, PropsWithChildren, ReactNode } from "react"; import { Children, isValidElement } from "react"; export type InfoCardVariant = "info" | "warning"; @@ -56,7 +56,9 @@ export const InfoCard: FunctionComponent = ({ }), }} > - {isValidElement(child) ? child.props.children : child} + {isValidElement(child) + ? (child.props as PropsWithChildren).children + : child} ); }; diff --git a/apps/hashdotdev/src/components/mdx/shared/util.ts b/apps/hashdotdev/src/components/mdx/shared/util.ts index d85f9be14a4..e3acbb85e29 100644 --- a/apps/hashdotdev/src/components/mdx/shared/util.ts +++ b/apps/hashdotdev/src/components/mdx/shared/util.ts @@ -1,4 +1,4 @@ -import type { ReactElement, ReactNode } from "react"; +import type { PropsWithChildren, ReactElement, ReactNode } from "react"; const isReactElement = (variable: unknown): variable is ReactElement => { return variable instanceof Object && "$$typeof" in variable; @@ -10,7 +10,7 @@ export const stringifyChildren = (node: ReactNode): string => { } else if (Array.isArray(node)) { return node.map(stringifyChildren).join(""); } else if (isReactElement(node)) { - return stringifyChildren(node.props.children as ReactNode); + return stringifyChildren((node.props as PropsWithChildren).children); } return ""; }; diff --git a/apps/hashdotdev/src/components/pre-footer.tsx b/apps/hashdotdev/src/components/pre-footer.tsx index 3dcd0a5e3ac..be90057f04d 100644 --- a/apps/hashdotdev/src/components/pre-footer.tsx +++ b/apps/hashdotdev/src/components/pre-footer.tsx @@ -44,7 +44,7 @@ export const Subscribe: FunctionComponent< const [loading, setLoading] = useState(false); const [userJoined, setUserJoined] = useState(false); const router = useRouter(); - const inputRef = useRef(); + const inputRef = useRef(null); const hashChangeHandler = useCallback((path: string) => { const url = new URL(path, FRONTEND_URL); diff --git a/apps/hashdotdev/src/pages/roadmap/technology-tree-node.tsx b/apps/hashdotdev/src/pages/roadmap/technology-tree-node.tsx index e58a980edcd..d2b28447609 100644 --- a/apps/hashdotdev/src/pages/roadmap/technology-tree-node.tsx +++ b/apps/hashdotdev/src/pages/roadmap/technology-tree-node.tsx @@ -11,7 +11,7 @@ import { variants } from "./variants"; export const technologyTreeNodeWidth = 300; export const TechnologyTreeNode: FunctionComponent<{ - graphWrapperRef: RefObject; + graphWrapperRef: RefObject; x: number; y: number; blurred: boolean; diff --git a/apps/plugin-browser/package.json b/apps/plugin-browser/package.json index b01bb4ae26b..4cc21f47074 100755 --- a/apps/plugin-browser/package.json +++ b/apps/plugin-browser/package.json @@ -42,9 +42,9 @@ "fractional-indexing": "2.1.0", "graphql": "16.10.0", "lodash.debounce": "4.0.8", - "react": "18.3.1", - "react-dom": "18.3.1", - "uuid": "9.0.1", + "react": "19.0.0", + "react-dom": "19.0.0", + "uuid": "11.0.3", "webextension-polyfill": "0.10.0", "ws": "8.18.0" }, @@ -53,7 +53,7 @@ "@babel/plugin-proposal-class-properties": "7.18.6", "@babel/preset-env": "7.26.0", "@babel/preset-react": "7.26.3", - "@blockprotocol/core": "0.1.3", + "@blockprotocol/core": "patch:@blockprotocol/core@npm%3A0.1.3#~/.yarn/patches/@blockprotocol-core-npm-0.1.3-7c4f062e15.patch", "@graphql-codegen/cli": "^5.0.3", "@local/eslint": "0.0.0-private", "@local/hash-graph-client": "0.0.0-private", @@ -63,8 +63,8 @@ "@pmmmwh/react-refresh-webpack-plugin": "0.5.15", "@sentry/webpack-plugin": "2.22.7", "@types/lodash.debounce": "4.0.9", - "@types/react": "18.3.17", - "@types/react-dom": "18.3.5", + "@types/react": "19.0.1", + "@types/react-dom": "19.0.2", "@types/webextension-polyfill": "patch:@types/webextension-polyfill@npm%3A0.10.4#~/.yarn/patches/@types-webextension-polyfill-npm-0.10.4-291152c615.patch", "@types/ws": "8.5.13", "babel-loader": "9.2.1", diff --git a/blocks/address/package.json b/blocks/address/package.json index 238704d6bcf..9e794f37cb2 100644 --- a/blocks/address/package.json +++ b/blocks/address/package.json @@ -41,24 +41,23 @@ "lodash.debounce": "4.0.8", "react-sizeme": "3.0.2", "rooks": "7.14.1", - "uuid": "9.0.1" + "uuid": "11.0.3" }, "devDependencies": { "@local/eslint": "0.0.0-private", "@types/lodash.debounce": "4.0.9", - "@types/react-dom": "18.3.5", - "@types/uuid": "10.0.0", + "@types/react-dom": "19.0.2", "block-scripts": "0.3.4", "eslint": "9.17.0", "mock-block-dock": "0.1.9", "prettier": "3.4.2", - "react": "18.3.1", - "react-dom": "18.3.1", + "react": "19.0.0", + "react-dom": "19.0.0", "typescript": "5.7.2" }, "peerDependencies": { - "react": "^18.0.0", - "react-dom": "^18.0.0" + "react": "^19.0.0", + "react-dom": "^19.0.0" }, "block-scripts": { "port": 63212 diff --git a/blocks/address/src/app.tsx b/blocks/address/src/app.tsx index c833bd6bc58..7de2512a3a5 100644 --- a/blocks/address/src/app.tsx +++ b/blocks/address/src/app.tsx @@ -97,6 +97,7 @@ export const App: BlockComponent = ({ graph: { blockEntitySubgraph, readonly }, }) => { const blockRootRef = useRef(null); + /* @ts-expect-error –– @todo H-3839 packages in BP repo needs updating, or this package updating to use graph in this repo */ const { graphModule } = useGraphBlockModule(blockRootRef); const { rootEntity: blockEntity, linkedEntities } = useEntitySubgraph< AddressBlock, diff --git a/blocks/address/src/use-mapbox.tsx b/blocks/address/src/use-mapbox.tsx index eebaaebd806..e5542b27ad7 100644 --- a/blocks/address/src/use-mapbox.tsx +++ b/blocks/address/src/use-mapbox.tsx @@ -33,7 +33,7 @@ export type Address = { }; export const useMapbox = ( - blockRootRef: RefObject, + blockRootRef: RefObject, zoomLevel: number, shouldFetchImage: boolean, onSelectAddress: (address: Address) => void, @@ -41,6 +41,7 @@ export const useMapbox = ( addressId?: string, ) => { const [selectedAddressLoading, setSelectedAddressLoading] = useState(false); + /* @ts-expect-error –– @todo H-3839 packages in BP repo needs updating */ const { serviceModule } = useServiceBlockModule(blockRootRef); const [sessionToken, setSessionToken] = useSessionstorageState( "mapboxSessionToken", diff --git a/blocks/ai-chat/package.json b/blocks/ai-chat/package.json index 3bbe928578e..33b3ddebb9e 100644 --- a/blocks/ai-chat/package.json +++ b/blocks/ai-chat/package.json @@ -36,24 +36,23 @@ "react-sizeme": "3.0.2", "react-transition-group": "4.4.5", "react-type-animation": "3.2.0", - "uuid": "9.0.1" + "uuid": "11.0.3" }, "devDependencies": { "@local/eslint": "0.0.0-private", "@local/tsconfig": "0.0.0-private", - "@types/react-dom": "18.3.5", - "@types/uuid": "10.0.0", + "@types/react-dom": "19.0.2", "block-scripts": "0.3.4", "eslint": "9.17.0", "mock-block-dock": "0.1.9", "prettier": "3.4.2", - "react": "18.3.1", - "react-dom": "18.3.1", + "react": "19.0.0", + "react-dom": "19.0.0", "typescript": "5.7.2" }, "peerDependencies": { - "react": "^18.0.0", - "react-dom": "^18.0.0" + "react": "^19.0.0", + "react-dom": "^19.0.0" }, "block-scripts": { "devPort": 9090, diff --git a/blocks/ai-chat/src/complete-chat.tsx b/blocks/ai-chat/src/complete-chat.tsx index 6d5872ef873..dbe75396fee 100644 --- a/blocks/ai-chat/src/complete-chat.tsx +++ b/blocks/ai-chat/src/complete-chat.tsx @@ -134,7 +134,9 @@ export const CompleteChat: FunctionComponent<{ }, } = aiChatBlockEntity; + /* @ts-expect-error –– @todo H-3839 packages in BP repo needs updating */ const { serviceModule } = useServiceBlockModule(blockRootRef); + /* @ts-expect-error –– @todo H-3839 packages in BP repo needs updating, or this package updating to use graph in this repo */ const { graphModule } = useGraphBlockModule(blockRootRef); const [chatModel, setChatModel] = useState(defaultChatModelId); diff --git a/blocks/ai-image/package.json b/blocks/ai-image/package.json index eb2de6d88f3..5ff01d87d08 100644 --- a/blocks/ai-image/package.json +++ b/blocks/ai-image/package.json @@ -37,24 +37,23 @@ "@hashintel/design-system": "0.0.8", "@mui/material": "5.16.12", "react-sizeme": "3.0.2", - "uuid": "9.0.1" + "uuid": "11.0.3" }, "devDependencies": { "@local/eslint": "0.0.0-private", "@local/tsconfig": "0.0.0-private", - "@types/react-dom": "18.3.5", - "@types/uuid": "10.0.0", + "@types/react-dom": "19.0.2", "block-scripts": "0.3.4", "eslint": "9.17.0", "mock-block-dock": "0.1.9", "prettier": "3.4.2", - "react": "18.3.1", - "react-dom": "18.3.1", + "react": "19.0.0", + "react-dom": "19.0.0", "typescript": "5.7.2" }, "peerDependencies": { - "react": "^18.0.0", - "react-dom": "^18.0.0" + "react": "^19.0.0", + "react-dom": "^19.0.0" }, "block-scripts": { "port": 63212 diff --git a/blocks/ai-image/src/app/generate-image.tsx b/blocks/ai-image/src/app/generate-image.tsx index 8068293940d..2dad93c0c59 100644 --- a/blocks/ai-image/src/app/generate-image.tsx +++ b/blocks/ai-image/src/app/generate-image.tsx @@ -38,7 +38,9 @@ export const GenerateImage = ({ isMobile?: boolean; }) => { const blockRootRef = useRef(null); + /* @ts-expect-error –– @todo H-3839 packages in BP repo needs updating, or this package updating to use graph in this repo */ const { graphModule } = useGraphBlockModule(blockRootRef); + /* @ts-expect-error –– @todo H-3839 packages in BP repo needs updating */ const { serviceModule } = useServiceBlockModule(blockRootRef); const initialPromptText = blockEntity.properties[promptKey]; diff --git a/blocks/ai-text/package.json b/blocks/ai-text/package.json index 56b358bc37d..c8844f35df2 100644 --- a/blocks/ai-text/package.json +++ b/blocks/ai-text/package.json @@ -36,18 +36,18 @@ "devDependencies": { "@local/eslint": "0.0.0-private", "@local/tsconfig": "0.0.0-private", - "@types/react-dom": "18.3.5", + "@types/react-dom": "19.0.2", "block-scripts": "0.3.4", "eslint": "9.17.0", "mock-block-dock": "0.1.9", "prettier": "3.4.2", - "react": "18.3.1", - "react-dom": "18.3.1", + "react": "19.0.0", + "react-dom": "19.0.0", "typescript": "5.7.2" }, "peerDependencies": { - "react": "^18.0.0", - "react-dom": "^18.0.0" + "react": "^19.0.0", + "react-dom": "^19.0.0" }, "block-scripts": { "devPort": 9090, diff --git a/blocks/ai-text/src/app/generate-text.tsx b/blocks/ai-text/src/app/generate-text.tsx index e94970c63f5..9531f307e67 100644 --- a/blocks/ai-text/src/app/generate-text.tsx +++ b/blocks/ai-text/src/app/generate-text.tsx @@ -39,7 +39,9 @@ export const GenerateText = ({ blockEntity }: { blockEntity: BlockEntity }) => { const inputRef = useRef(null); + /* @ts-expect-error –– @todo H-3839 packages in BP repo needs updating, or this package updating to use graph in this repo */ const { graphModule } = useGraphBlockModule(blockRootRef); + /* @ts-expect-error –– @todo H-3839 packages in BP repo needs updating */ const { serviceModule } = useServiceBlockModule(blockRootRef); const [loading, setLoading] = useState(false); diff --git a/blocks/callout/package.json b/blocks/callout/package.json index 4b0d2f7d74f..62b09cd9e58 100644 --- a/blocks/callout/package.json +++ b/blocks/callout/package.json @@ -33,18 +33,18 @@ "devDependencies": { "@local/eslint": "0.0.0-private", "@local/tsconfig": "0.0.0-private", - "@types/react-dom": "18.3.5", + "@types/react-dom": "19.0.2", "block-scripts": "0.3.4", "eslint": "9.17.0", "mock-block-dock": "0.1.9", "prettier": "3.4.2", - "react": "18.3.1", - "react-dom": "18.3.1", + "react": "19.0.0", + "react-dom": "19.0.0", "typescript": "5.7.2" }, "peerDependencies": { - "react": "^18.2.0", - "react-dom": "^18.2.0" + "react": "^19.0.0", + "react-dom": "^19.0.0" }, "block-scripts": { "devPort": 9090, diff --git a/blocks/callout/src/app.tsx b/blocks/callout/src/app.tsx index e567e75c40f..e1a37e04e0e 100644 --- a/blocks/callout/src/app.tsx +++ b/blocks/callout/src/app.tsx @@ -22,7 +22,9 @@ export const App: BlockComponent = ({ const { entityId } = rootEntity.metadata.recordId; const blockRef = useRef(null); + /* @ts-expect-error –– @todo H-3839 packages in BP repo needs updating, or this package updating to use graph in this repo */ const { graphModule } = useGraphBlockModule(blockRef); + /* @ts-expect-error –– @todo H-3839 packages in BP repo needs updating */ const { hookModule } = useHookBlockModule(blockRef); useHook( diff --git a/blocks/chart/package.json b/blocks/chart/package.json index 85e37dc3453..626d68f199d 100644 --- a/blocks/chart/package.json +++ b/blocks/chart/package.json @@ -42,19 +42,19 @@ "@local/eslint": "0.0.0-private", "@local/tsconfig": "0.0.0-private", "@types/lodash.debounce": "4.0.9", - "@types/react-dom": "18.3.5", + "@types/react-dom": "19.0.2", "@types/react-is": "19.0.0", "block-scripts": "0.3.4", "eslint": "9.17.0", "mock-block-dock": "0.1.9", "prettier": "3.4.2", - "react": "18.3.1", - "react-dom": "18.3.1", + "react": "19.0.0", + "react-dom": "19.0.0", "typescript": "5.7.2" }, "peerDependencies": { - "react": "^18.2.0", - "react-dom": "^18.2.0" + "react": "^19.0.0", + "react-dom": "^19.0.0" }, "block-scripts": { "port": 63212 diff --git a/blocks/chart/src/app.tsx b/blocks/chart/src/app.tsx index 9ed9e0dc1f7..d42ebbcd8f5 100644 --- a/blocks/chart/src/app.tsx +++ b/blocks/chart/src/app.tsx @@ -41,6 +41,7 @@ export const App: BlockComponent = ({ graph: { blockEntitySubgraph, readonly }, }) => { const blockRootRef = useRef(null); + /* @ts-expect-error –– @todo H-3839 packages in BP repo needs updating, or this package updating to use graph in this repo */ const { graphModule } = useGraphBlockModule(blockRootRef); const [displayEditChartDefinition, setDisplayEditChartDefinition] = diff --git a/blocks/code/package.json b/blocks/code/package.json index 677d2579ba8..c3a964437ca 100644 --- a/blocks/code/package.json +++ b/blocks/code/package.json @@ -34,18 +34,18 @@ "@local/eslint": "0.0.0-private", "@local/tsconfig": "0.0.0-private", "@types/prismjs": "1.26.5", - "@types/react-dom": "18.3.5", + "@types/react-dom": "19.0.2", "block-scripts": "0.3.4", "eslint": "9.17.0", "mock-block-dock": "0.1.9", "prettier": "3.4.2", - "react": "18.3.1", - "react-dom": "18.3.1", + "react": "19.0.0", + "react-dom": "19.0.0", "typescript": "5.7.2" }, "peerDependencies": { - "react": "^18.2.0", - "react-dom": "^18.2.0" + "react": "^19.0.0", + "react-dom": "^19.0.0" }, "block-scripts": { "devPort": 9090, diff --git a/blocks/code/src/app.tsx b/blocks/code/src/app.tsx index 087a81a7d96..45f39cbf33f 100644 --- a/blocks/code/src/app.tsx +++ b/blocks/code/src/app.tsx @@ -30,7 +30,8 @@ export const App: BlockComponent = ({ }, } = blockEntity; - const blockRef = useRef(null); + const blockRef = useRef(null); + /* @ts-expect-error –– @todo H-3839 packages in BP repo needs updating, or this package updating to use graph in this repo */ const { graphModule } = useGraphBlockModule(blockRef); const [localData, setLocalData] = useState(() => ({ diff --git a/blocks/code/src/editor.tsx b/blocks/code/src/editor.tsx index 28ec2088a26..df0de714e30 100644 --- a/blocks/code/src/editor.tsx +++ b/blocks/code/src/editor.tsx @@ -9,7 +9,7 @@ type IEditorProps = { content: string; setContent: (content: string) => void; language: LanguageType; - editorRef: RefObject; + editorRef: RefObject; onBlur: () => void; readonly: boolean; }; diff --git a/blocks/countdown/package.json b/blocks/countdown/package.json index 6c08dd9de7e..d05be08149b 100644 --- a/blocks/countdown/package.json +++ b/blocks/countdown/package.json @@ -35,18 +35,18 @@ "@local/eslint": "0.0.0-private", "@local/tsconfig": "0.0.0-private", "@types/react-datepicker": "4.19.6", - "@types/react-dom": "18.3.5", + "@types/react-dom": "19.0.2", "block-scripts": "0.3.4", "eslint": "9.17.0", "mock-block-dock": "0.1.9", "prettier": "3.4.2", - "react": "18.3.1", - "react-dom": "18.3.1", + "react": "19.0.0", + "react-dom": "19.0.0", "typescript": "5.7.2" }, "peerDependencies": { - "react": "^18.2.0", - "react-dom": "^18.2.0" + "react": "^19.0.0", + "react-dom": "^19.0.0" }, "block-scripts": { "devPort": 9090, diff --git a/blocks/countdown/src/app.tsx b/blocks/countdown/src/app.tsx index 45f01b54c1c..5bb008cbb5d 100644 --- a/blocks/countdown/src/app.tsx +++ b/blocks/countdown/src/app.tsx @@ -31,6 +31,7 @@ export const App: BlockComponent = ({ }, } = blockEntity; const blockRef = useRef(null); + /* @ts-expect-error –– @todo H-3839 packages in BP repo needs updating, or this package updating to use graph in this repo */ const { graphModule } = useGraphBlockModule(blockRef); const [localTargetDate, setLocalTargetDate] = useState( !targetDate ? null : new Date(targetDate), diff --git a/blocks/divider/package.json b/blocks/divider/package.json index e74b47d3ead..64cae26ff4e 100644 --- a/blocks/divider/package.json +++ b/blocks/divider/package.json @@ -27,24 +27,24 @@ "serve": "block-scripts serve" }, "dependencies": { - "@blockprotocol/core": "0.1.3", + "@blockprotocol/core": "patch:@blockprotocol/core@npm%3A0.1.3#~/.yarn/patches/@blockprotocol-core-npm-0.1.3-7c4f062e15.patch", "@blockprotocol/graph": "0.3.4" }, "devDependencies": { "@local/eslint": "0.0.0-private", "@local/tsconfig": "0.0.0-private", - "@types/react-dom": "18.3.5", + "@types/react-dom": "19.0.2", "block-scripts": "0.3.4", "eslint": "9.17.0", "mock-block-dock": "0.1.9", "prettier": "3.4.2", - "react": "18.3.1", - "react-dom": "18.3.1", + "react": "19.0.0", + "react-dom": "19.0.0", "typescript": "5.7.2" }, "peerDependencies": { - "react": "^18.2.0", - "react-dom": "^18.2.0" + "react": "^19.0.0", + "react-dom": "^19.0.0" }, "block-scripts": { "devPort": 9090, diff --git a/blocks/embed/package.json b/blocks/embed/package.json index 51665ff885d..a5e6dda7a66 100644 --- a/blocks/embed/package.json +++ b/blocks/embed/package.json @@ -33,18 +33,18 @@ "@local/eslint": "0.0.0-private", "@local/tsconfig": "0.0.0-private", "@types/lodash": "4.17.13", - "@types/react-dom": "18.3.5", + "@types/react-dom": "19.0.2", "block-scripts": "0.0.14", "eslint": "9.17.0", "mock-block-dock": "0.0.10", - "react": "18.3.1", - "react-dom": "18.3.1", + "react": "19.0.0", + "react-dom": "19.0.0", "typescript": "5.7.2" }, "peerDependencies": { "lodash": "4.17.21", - "react": "^18.2.0", - "react-dom": "^18.2.0" + "react": "^19.0.0", + "react-dom": "^19.0.0" }, "block-scripts": { "devPort": 9090, diff --git a/blocks/embed/src/app.tsx b/blocks/embed/src/app.tsx index 01a44561869..2d070cc5b99 100644 --- a/blocks/embed/src/app.tsx +++ b/blocks/embed/src/app.tsx @@ -1,3 +1,8 @@ +/* @todo This package needs updating to use the latest @blockprotocol/graph package in this repo */ +// eslint-disable-next-line @typescript-eslint/ban-ts-comment +// @ts-nocheck +/* eslint-disable */ + import type { BlockProtocolUpdateEntitiesAction } from "blockprotocol"; import type { BlockComponent } from "blockprotocol/react"; import type { Reducer } from "react"; diff --git a/blocks/faq/package.json b/blocks/faq/package.json index 85b3130cf8d..22571dbeb21 100644 --- a/blocks/faq/package.json +++ b/blocks/faq/package.json @@ -35,23 +35,22 @@ "@hashintel/block-design-system": "0.0.2", "@hashintel/design-system": "0.0.8", "@mui/material": "5.16.12", - "uuid": "9.0.1" + "uuid": "11.0.3" }, "devDependencies": { "@local/eslint": "0.0.0-private", - "@types/react-dom": "18.3.5", - "@types/uuid": "10.0.0", + "@types/react-dom": "19.0.2", "block-scripts": "0.3.4", "eslint": "9.17.0", "mock-block-dock": "0.1.9", "prettier": "3.4.2", - "react": "18.3.1", - "react-dom": "18.3.1", + "react": "19.0.0", + "react-dom": "19.0.0", "typescript": "5.7.2" }, "peerDependencies": { - "react": "^18.0.0", - "react-dom": "^18.0.0" + "react": "^19.0.0", + "react-dom": "^19.0.0" }, "block-scripts": { "port": 63212 diff --git a/blocks/faq/src/app.tsx b/blocks/faq/src/app.tsx index 3d8bfbab106..9aa27691fea 100644 --- a/blocks/faq/src/app.tsx +++ b/blocks/faq/src/app.tsx @@ -62,6 +62,7 @@ export const App: BlockComponent = ({ graph: { blockEntitySubgraph, readonly }, }) => { const blockRootRef = useRef(null); + /* @ts-expect-error –– @todo H-3839 packages in BP repo needs updating, or this package updating to use graph in this repo */ const { graphModule } = useGraphBlockModule(blockRootRef); const { rootEntity: blockEntity, linkedEntities } = useEntitySubgraph(blockEntitySubgraph); diff --git a/blocks/heading/package.json b/blocks/heading/package.json index 45cf86f090c..9771d11f100 100644 --- a/blocks/heading/package.json +++ b/blocks/heading/package.json @@ -33,18 +33,18 @@ "devDependencies": { "@local/eslint": "0.0.0-private", "@local/tsconfig": "0.0.0-private", - "@types/react-dom": "18.3.5", + "@types/react-dom": "19.0.2", "block-scripts": "0.3.4", "eslint": "9.17.0", "mock-block-dock": "0.1.9", "prettier": "3.4.2", - "react": "18.3.1", - "react-dom": "18.3.1", + "react": "19.0.0", + "react-dom": "19.0.0", "typescript": "5.7.2" }, "peerDependencies": { - "react": "^18.2.0", - "react-dom": "^18.2.0" + "react": "^19.0.0", + "react-dom": "^19.0.0" }, "block-scripts": { "devPort": 9090, diff --git a/blocks/heading/src/app.tsx b/blocks/heading/src/app.tsx index a8bf33736df..150986d1b74 100644 --- a/blocks/heading/src/app.tsx +++ b/blocks/heading/src/app.tsx @@ -12,6 +12,7 @@ export const App: BlockComponent = ({ const { rootEntity } = useEntitySubgraph(blockEntitySubgraph); const containerRef = useRef(null); const headerRef = useRef(null); + /* @ts-expect-error -- @todo H-3839 hook package in BP repo needs updating for new ref type */ const { hookModule } = useHookBlockModule(containerRef); const { diff --git a/blocks/how-to/package.json b/blocks/how-to/package.json index 9aba5bcf7a7..39e6a0de4d4 100644 --- a/blocks/how-to/package.json +++ b/blocks/how-to/package.json @@ -36,23 +36,22 @@ "@hashintel/design-system": "0.0.8", "@mui/material": "5.16.12", "react-sizeme": "3.0.2", - "uuid": "9.0.1" + "uuid": "11.0.3" }, "devDependencies": { "@local/eslint": "0.0.0-private", - "@types/react-dom": "18.3.5", - "@types/uuid": "10.0.0", + "@types/react-dom": "19.0.2", "block-scripts": "0.3.4", "eslint": "9.17.0", "mock-block-dock": "0.1.9", "prettier": "3.4.2", - "react": "18.3.1", - "react-dom": "18.3.1", + "react": "19.0.0", + "react-dom": "19.0.0", "typescript": "5.7.2" }, "peerDependencies": { - "react": "^18.0.0", - "react-dom": "^18.0.0" + "react": "^19.0.0", + "react-dom": "^19.0.0" }, "block-scripts": { "port": 63212 diff --git a/blocks/how-to/src/app.tsx b/blocks/how-to/src/app.tsx index da56aea82f2..91fb8ee3497 100644 --- a/blocks/how-to/src/app.tsx +++ b/blocks/how-to/src/app.tsx @@ -54,6 +54,7 @@ export const App: BlockComponent = ({ graph: { blockEntitySubgraph, readonly }, }) => { const blockRootRef = useRef(null); + /* @ts-expect-error –– @todo H-3839 packages in BP repo needs updating, or this package updating to use graph in this repo */ const { graphModule } = useGraphBlockModule(blockRootRef); const { rootEntity: blockEntity, linkedEntities } = useEntitySubgraph< BlockEntity, diff --git a/blocks/image/package.json b/blocks/image/package.json index 9ce50a490b1..1930d8f4120 100644 --- a/blocks/image/package.json +++ b/blocks/image/package.json @@ -34,18 +34,18 @@ "devDependencies": { "@local/eslint": "0.0.0-private", "@local/tsconfig": "0.0.0-private", - "@types/react-dom": "18.3.5", + "@types/react-dom": "19.0.2", "block-scripts": "0.3.4", "eslint": "9.17.0", "mock-block-dock": "0.1.9", "prettier": "3.4.2", - "react": "18.3.1", - "react-dom": "18.3.1", + "react": "19.0.0", + "react-dom": "19.0.0", "typescript": "5.7.2" }, "peerDependencies": { - "react": "^18.2.0", - "react-dom": "^18.2.0" + "react": "^19.0.0", + "react-dom": "^19.0.0" }, "block-scripts": { "devPort": 9090, diff --git a/blocks/image/src/components/media.tsx b/blocks/image/src/components/media.tsx index ba921e4f81b..a6f7344d3be 100644 --- a/blocks/image/src/components/media.tsx +++ b/blocks/image/src/components/media.tsx @@ -75,7 +75,7 @@ const useDefaultState = < */ export const Media: FunctionComponent< BlockGraphProperties & { - blockRef: RefObject; + blockRef: RefObject; } > = ({ blockRef, graph: { blockEntitySubgraph, readonly } }) => { const { rootEntity } = useEntitySubgraph(blockEntitySubgraph); @@ -99,6 +99,7 @@ export const Media: FunctionComponent< [propertyIds.width]: initialWidth, } = properties; + /* @ts-expect-error –– @todo H-3839 packages in BP repo needs updating, or this package updating to use graph in this repo */ const { graphModule } = useGraphBlockModule(blockRef); const [draftSrc, setDraftSrc] = useDefaultState( diff --git a/blocks/image/src/image.tsx b/blocks/image/src/image.tsx index 786f8257f81..762ce0ed68e 100644 --- a/blocks/image/src/image.tsx +++ b/blocks/image/src/image.tsx @@ -18,6 +18,7 @@ export const Image: BlockComponent = (props) => { const blockRef = useRef(null); + /* @ts-expect-error -- @todo H-3839 hook package in BP repo needs updating for new ref type */ const { hookModule } = useHookBlockModule(blockRef); useHook( diff --git a/blocks/kanban-board/package.json b/blocks/kanban-board/package.json index 607a9e3be3b..786b53d956e 100644 --- a/blocks/kanban-board/package.json +++ b/blocks/kanban-board/package.json @@ -50,18 +50,18 @@ "@types/lodash.clonedeep": "4.5.9", "@types/lodash.debounce": "4.0.9", "@types/lodash.isequal": "4.5.8", - "@types/react-dom": "18.3.5", + "@types/react-dom": "19.0.2", "block-scripts": "0.3.4", "eslint": "9.17.0", "mock-block-dock": "0.1.9", "prettier": "3.4.2", - "react": "18.3.1", - "react-dom": "18.3.1", + "react": "19.0.0", + "react-dom": "19.0.0", "typescript": "5.7.2" }, "peerDependencies": { - "react": "^18.0.0", - "react-dom": "^18.0.0" + "react": "^19.0.0", + "react-dom": "^19.0.0" }, "block-scripts": { "port": 63212 diff --git a/blocks/kanban-board/src/app.tsx b/blocks/kanban-board/src/app.tsx index de35f856b57..56ef62478f2 100644 --- a/blocks/kanban-board/src/app.tsx +++ b/blocks/kanban-board/src/app.tsx @@ -22,6 +22,7 @@ export const App: BlockComponent = ({ graph: { blockEntitySubgraph, readonly }, }) => { const blockRootRef = useRef(null); + /* @ts-expect-error –– @todo H-3839 packages in BP repo needs updating, or this package updating to use graph in this repo */ const { graphModule } = useGraphBlockModule(blockRootRef); const { rootEntity: blockEntity } = useEntitySubgraph< diff --git a/blocks/minesweeper/package.json b/blocks/minesweeper/package.json index f040bf41474..cb4fbc646cb 100644 --- a/blocks/minesweeper/package.json +++ b/blocks/minesweeper/package.json @@ -28,13 +28,13 @@ "devDependencies": { "@local/eslint": "0.0.0-private", "@local/tsconfig": "0.0.0-private", - "@types/react-dom": "18.3.5", + "@types/react-dom": "19.0.2", "block-scripts": "0.3.4", "eslint": "9.17.0", "mock-block-dock": "0.1.9", "prettier": "3.4.2", - "react": "18.3.1", - "react-dom": "18.3.1", + "react": "19.0.0", + "react-dom": "19.0.0", "typescript": "5.7.2" }, "block-scripts": { diff --git a/blocks/paragraph/package.json b/blocks/paragraph/package.json index ba5c338d969..001f3cffb18 100644 --- a/blocks/paragraph/package.json +++ b/blocks/paragraph/package.json @@ -33,18 +33,18 @@ "devDependencies": { "@local/eslint": "0.0.0-private", "@local/tsconfig": "0.0.0-private", - "@types/react-dom": "18.3.5", + "@types/react-dom": "19.0.2", "block-scripts": "0.3.4", "eslint": "9.17.0", "mock-block-dock": "0.1.9", "prettier": "3.4.2", - "react": "18.3.1", - "react-dom": "18.3.1", + "react": "19.0.0", + "react-dom": "19.0.0", "typescript": "5.7.2" }, "peerDependencies": { - "react": "^18.2.0", - "react-dom": "^18.2.0" + "react": "^19.0.0", + "react-dom": "^19.0.0" }, "block-scripts": { "devPort": 9090, diff --git a/blocks/paragraph/src/app.tsx b/blocks/paragraph/src/app.tsx index 7403eb583f8..aa31fbffdb8 100644 --- a/blocks/paragraph/src/app.tsx +++ b/blocks/paragraph/src/app.tsx @@ -11,6 +11,7 @@ export const App: BlockComponent = ({ }) => { const { rootEntity } = useEntitySubgraph(blockEntitySubgraph); const ref = useRef(null); + /* @ts-expect-error -- @todo H-3839 hook package in BP repo needs updating for new ref type */ const { hookModule } = useHookBlockModule(ref); useHook( diff --git a/blocks/person/package.json b/blocks/person/package.json index 45ad49699ac..05e5728ef37 100644 --- a/blocks/person/package.json +++ b/blocks/person/package.json @@ -32,17 +32,17 @@ "@local/eslint": "0.0.0-private", "@local/tsconfig": "0.0.0-private", "@types/dompurify": "2.4.0", - "@types/react-dom": "18.3.5", + "@types/react-dom": "19.0.2", "block-scripts": "0.0.14", "eslint": "9.17.0", "mock-block-dock": "0.0.38", - "react": "18.3.1", - "react-dom": "18.3.1", + "react": "19.0.0", + "react-dom": "19.0.0", "typescript": "5.7.2" }, "peerDependencies": { - "react": "^18.2.0", - "react-dom": "^18.2.0" + "react": "^19.0.0", + "react-dom": "^19.0.0" }, "block-scripts": { "devPort": 9090, diff --git a/blocks/person/src/app.tsx b/blocks/person/src/app.tsx index 1ba098d00e5..2e942cf7387 100644 --- a/blocks/person/src/app.tsx +++ b/blocks/person/src/app.tsx @@ -1,3 +1,8 @@ +/* @todo This package needs updating to use the latest @blockprotocol/graph package in this repo */ +// eslint-disable-next-line @typescript-eslint/ban-ts-comment +// @ts-nocheck +/* eslint-disable */ + import "./index.css"; import type { BlockComponent } from "@blockprotocol/graph/react"; @@ -100,7 +105,6 @@ export const App: BlockComponent = ({ {safeAnchor && (
- {/* eslint-disable-next-line react/no-danger */}
)} diff --git a/blocks/person/src/dev.tsx b/blocks/person/src/dev.tsx index bcb9369be49..4e240b2fa89 100644 --- a/blocks/person/src/dev.tsx +++ b/blocks/person/src/dev.tsx @@ -24,6 +24,7 @@ const App = () => (
; style?: CSSProperties; - dragOverlay?: RefObject; + dragOverlay?: RefObject; linkedToEntity?: boolean; readonly?: boolean; }; diff --git a/blocks/shuffle/src/shuffle.tsx b/blocks/shuffle/src/shuffle.tsx index 980f5a32218..ddf48d2d531 100644 --- a/blocks/shuffle/src/shuffle.tsx +++ b/blocks/shuffle/src/shuffle.tsx @@ -44,6 +44,7 @@ export const Shuffle: BlockComponent = ({ const items = rootEntity.properties[propertyIds.list]; const blockRootRef = useRef(null); + /* @ts-expect-error –– @todo H-3839 packages in BP repo needs updating, or this package updating to use graph in this repo */ const { graphModule } = useGraphBlockModule(blockRootRef); const [draftItems, setDraftItems] = useState( items?.length ? items : initialItems, diff --git a/blocks/table/package.json b/blocks/table/package.json index a2925a03f2e..227d84b1f76 100644 --- a/blocks/table/package.json +++ b/blocks/table/package.json @@ -53,18 +53,18 @@ "@types/lodash.debounce": "4.0.9", "@types/lodash.isequal": "4.5.8", "@types/lodash.uniqueid": "4.0.9", - "@types/react-dom": "18.3.5", + "@types/react-dom": "19.0.2", "block-scripts": "0.3.4", "eslint": "9.17.0", "mock-block-dock": "0.1.9", "prettier": "3.4.2", - "react": "18.3.1", - "react-dom": "18.3.1", + "react": "19.0.0", + "react-dom": "19.0.0", "typescript": "5.7.2" }, "peerDependencies": { - "react": "^18.0.0", - "react-dom": "^18.0.0" + "react": "^19.0.0", + "react-dom": "^19.0.0" }, "block-scripts": { "port": 63212 diff --git a/blocks/table/src/app.tsx b/blocks/table/src/app.tsx index d8a2ada9889..21777aae279 100644 --- a/blocks/table/src/app.tsx +++ b/blocks/table/src/app.tsx @@ -28,6 +28,7 @@ export const App: BlockComponent = ({ graph: { blockEntitySubgraph, readonly }, }) => { const blockRootRef = useRef(null); + /* @ts-expect-error –– @todo H-3839 packages in BP repo needs updating, or this package updating to use graph in this repo */ const { graphModule } = useGraphBlockModule(blockRootRef); const { rootEntity: blockEntity, linkedEntities } = useEntitySubgraph< diff --git a/blocks/table/src/components/grid/grid.tsx b/blocks/table/src/components/grid/grid.tsx index 402543ea85d..4ff47d075f6 100644 --- a/blocks/table/src/components/grid/grid.tsx +++ b/blocks/table/src/components/grid/grid.tsx @@ -27,7 +27,7 @@ export const Grid = ({ gridRef, ...props }: GridProps) => { useRenderGridPortal(); const uniqueClassNameRef = useRef(uniqueId("glide-data-grid")); - const observerRef = useRef(); + const observerRef = useRef(null); const [scrollbarVisible, setScrollbarVisible] = useState(false); diff --git a/blocks/timer/package.json b/blocks/timer/package.json index 2c2474bc273..e6791ea7b1b 100644 --- a/blocks/timer/package.json +++ b/blocks/timer/package.json @@ -34,18 +34,18 @@ "devDependencies": { "@local/eslint": "0.0.0-private", "@local/tsconfig": "0.0.0-private", - "@types/react-dom": "18.3.5", + "@types/react-dom": "19.0.2", "block-scripts": "0.3.4", "eslint": "9.17.0", "mock-block-dock": "0.1.9", "prettier": "3.4.2", - "react": "18.3.1", - "react-dom": "18.3.1", + "react": "19.0.0", + "react-dom": "19.0.0", "typescript": "5.7.2" }, "peerDependencies": { - "react": "^18.2.0", - "react-dom": "^18.2.0" + "react": "^19.0.0", + "react-dom": "^19.0.0" }, "block-scripts": { "devPort": 9090, diff --git a/blocks/timer/src/app.tsx b/blocks/timer/src/app.tsx index 2d80b392fb5..2890552a63c 100644 --- a/blocks/timer/src/app.tsx +++ b/blocks/timer/src/app.tsx @@ -108,6 +108,7 @@ export const App: BlockComponent = ({ const targetDateTime = getTargetDateTime(timerProgress); const blockRef = useRef(null); + /* @ts-expect-error –– @todo H-3839 packages in BP repo needs updating, or this package updating to use graph in this repo */ const { graphModule } = useGraphBlockModule(blockRef); const externalTimerState = useMemo(() => { diff --git a/blocks/video/package.json b/blocks/video/package.json index 473d138a6ab..c34bcc9bdc5 100644 --- a/blocks/video/package.json +++ b/blocks/video/package.json @@ -33,18 +33,18 @@ "devDependencies": { "@local/eslint": "0.0.0-private", "@local/tsconfig": "0.0.0-private", - "@types/react-dom": "18.3.5", + "@types/react-dom": "19.0.2", "block-scripts": "0.3.4", "eslint": "9.17.0", "mock-block-dock": "0.1.9", "prettier": "3.4.2", - "react": "18.3.1", - "react-dom": "18.3.1", + "react": "19.0.0", + "react-dom": "19.0.0", "typescript": "5.7.2" }, "peerDependencies": { - "react": "^18.2.0", - "react-dom": "^18.2.0" + "react": "^19.0.0", + "react-dom": "^19.0.0" }, "block-scripts": { "devPort": 9090, diff --git a/blocks/video/src/components/media.tsx b/blocks/video/src/components/media.tsx index d0bd025a7ae..0abaccae619 100644 --- a/blocks/video/src/components/media.tsx +++ b/blocks/video/src/components/media.tsx @@ -75,7 +75,7 @@ const useDefaultState = < */ export const Media: FunctionComponent< BlockGraphProperties & { - blockRef: RefObject; + blockRef: RefObject; } > = ({ blockRef, graph: { blockEntitySubgraph, readonly } }) => { const { rootEntity } = useEntitySubgraph(blockEntitySubgraph); @@ -96,6 +96,7 @@ export const Media: FunctionComponent< const { metadata, properties } = rootEntity; const { [propertyIds.caption]: initialCaption } = properties; + /* @ts-expect-error –– @todo H-3839 packages in BP repo needs updating, or this package updating to use graph in this repo */ const { graphModule } = useGraphBlockModule(blockRef); const [draftSrc, setDraftSrc] = useDefaultState( diff --git a/libs/@blockprotocol/graph/package.json b/libs/@blockprotocol/graph/package.json index 67d8de4fe04..79cc19a2aef 100644 --- a/libs/@blockprotocol/graph/package.json +++ b/libs/@blockprotocol/graph/package.json @@ -65,7 +65,7 @@ "lint:tsc": "tsc --noEmit" }, "dependencies": { - "@blockprotocol/core": "0.1.3", + "@blockprotocol/core": "patch:@blockprotocol/core@npm%3A0.1.3#~/.yarn/patches/@blockprotocol-core-npm-0.1.3-7c4f062e15.patch", "@blockprotocol/type-system": "0.1.2-canary.0", "ajv": "8.17.1", "ajv-formats": "3.0.1", @@ -80,12 +80,12 @@ "@local/tsconfig": "0.0.0-private", "@types/lodash.isequal": "4.5.8", "@types/node": "22.10.2", - "@types/react": "18.3.17", + "@types/react": "19.0.1", "eslint": "9.17.0", "rimraf": "6.0.1", "typescript": "5.7.2" }, "peerDependencies": { - "react": "^18.0.0" + "react": "^19.0.0" } } diff --git a/libs/@blockprotocol/graph/src/graph-module-json.ts b/libs/@blockprotocol/graph/src/graph-module-json.ts index 887b5f82d04..502f3b769d0 100644 --- a/libs/@blockprotocol/graph/src/graph-module-json.ts +++ b/libs/@blockprotocol/graph/src/graph-module-json.ts @@ -1,3 +1,3 @@ -import graphModuleJson from "./graph-module.json" assert { type: "json" }; +import graphModuleJson from "./graph-module.json" with { type: "json" }; export { graphModuleJson }; diff --git a/libs/@blockprotocol/graph/src/react.ts b/libs/@blockprotocol/graph/src/react.ts index 654cf2907ad..3312d94389d 100644 --- a/libs/@blockprotocol/graph/src/react.ts +++ b/libs/@blockprotocol/graph/src/react.ts @@ -22,7 +22,7 @@ export type BlockComponent = * Updates to any callbacks after first constructing should be made by calling graphModule.on("messageName", callback); */ export const useGraphBlockModule = ( - ref: RefObject, + ref: RefObject, constructorArgs?: Omit< ConstructorParameters[0], "element" @@ -44,7 +44,7 @@ export const useGraphBlockModule = ( * 2. to register multiple, call graphModule.registerCallbacks({ [messageName]: callback }); */ export const useGraphEmbedderModule = ( - ref: RefObject, + ref: RefObject, constructorArgs: Omit< ConstructorParameters[0], "element" diff --git a/libs/@blockprotocol/type-system/typescript/package.json b/libs/@blockprotocol/type-system/typescript/package.json index 526f1267a1a..185214af356 100644 --- a/libs/@blockprotocol/type-system/typescript/package.json +++ b/libs/@blockprotocol/type-system/typescript/package.json @@ -60,10 +60,10 @@ "@rollup/plugin-typescript": "12.1.2", "@rollup/plugin-wasm": "6.2.2", "@types/node": "22.10.2", - "@types/react": "18.3.17", + "@types/react": "19.0.1", "@vitest/coverage-istanbul": "2.1.8", "eslint": "9.17.0", - "react": "18.3.1", + "react": "19.0.0", "rimraf": "6.0.1", "rollup": "4.28.1", "tslib": "2.8.1", diff --git a/libs/@hashintel/block-design-system/package.json b/libs/@hashintel/block-design-system/package.json index 910ed38b1d5..11651ce642b 100644 --- a/libs/@hashintel/block-design-system/package.json +++ b/libs/@hashintel/block-design-system/package.json @@ -43,13 +43,13 @@ "@local/tsconfig": "0.0.0-private", "@mui/material": "5.16.12", "@mui/system": "5.16.12", - "@types/react": "18.3.17", - "@types/react-dom": "18.3.5", + "@types/react": "19.0.1", + "@types/react-dom": "19.0.2", "@types/react-syntax-highlighter": "15.5.13", "eslint": "9.17.0", "eslint-plugin-storybook": "0.11.1", - "react": "18.3.1", - "react-dom": "18.3.1", + "react": "19.0.0", + "react-dom": "19.0.0", "typescript": "5.7.2" }, "peerDependencies": { @@ -57,7 +57,7 @@ "@emotion/styled": "11.14.0", "@mui/material": "5.16.12", "@mui/system": "5.16.12", - "react": "^18.2.0", - "react-dom": "^18.2.0" + "react": "^19.0.0", + "react-dom": "^19.0.0" } } diff --git a/libs/@hashintel/block-design-system/src/block-prompt-input.tsx b/libs/@hashintel/block-design-system/src/block-prompt-input.tsx index 912c5c41057..0d211c05662 100644 --- a/libs/@hashintel/block-design-system/src/block-prompt-input.tsx +++ b/libs/@hashintel/block-design-system/src/block-prompt-input.tsx @@ -39,7 +39,7 @@ export const BlockPromptInput = forwardRef< }, ref, ) => { - const inputRef = useRef(); + const inputRef = useRef(null); const [hasMultipleLines, setHasMultipleLines] = useState(false); const calculateMultipleLines = useCallback(() => { diff --git a/libs/@hashintel/block-design-system/src/dropdown-selector.tsx b/libs/@hashintel/block-design-system/src/dropdown-selector.tsx index 45b0bbaf333..5a8ac972969 100644 --- a/libs/@hashintel/block-design-system/src/dropdown-selector.tsx +++ b/libs/@hashintel/block-design-system/src/dropdown-selector.tsx @@ -10,7 +10,7 @@ import { selectClasses, Typography, } from "@mui/material"; -import type { ReactNode } from "react"; +import type { JSX, ReactNode } from "react"; import { useMemo, useState } from "react"; export interface Option { diff --git a/libs/@hashintel/design-system/package.json b/libs/@hashintel/design-system/package.json index 9dab1a1e027..ea20db4752a 100644 --- a/libs/@hashintel/design-system/package.json +++ b/libs/@hashintel/design-system/package.json @@ -59,12 +59,12 @@ "@mui/material": "5.16.12", "@mui/system": "5.16.12", "@storybook/react": "7.6.20", - "@types/react": "18.3.17", - "@types/react-dom": "18.3.5", + "@types/react": "19.0.1", + "@types/react-dom": "19.0.2", "eslint": "9.17.0", "eslint-plugin-storybook": "0.11.1", - "react": "18.3.1", - "react-dom": "18.3.1", + "react": "19.0.0", + "react-dom": "19.0.0", "typescript": "5.7.2" }, "peerDependencies": { @@ -73,7 +73,7 @@ "@emotion/styled": "11.14.0", "@mui/material": "5.16.12", "@mui/system": "5.16.12", - "react": "^18.2.0", - "react-dom": "^18.2.0" + "react": "^19.0.0", + "react-dom": "^19.0.0" } } diff --git a/libs/@hashintel/query-editor/package.json b/libs/@hashintel/query-editor/package.json index 41d8ea4ba22..bd0573252d6 100644 --- a/libs/@hashintel/query-editor/package.json +++ b/libs/@hashintel/query-editor/package.json @@ -33,16 +33,16 @@ "@mui/system": "5.16.12", "eslint": "9.17.0", "eslint-plugin-storybook": "0.11.1", - "react": "18.3.1", - "react-dom": "18.3.1", + "react": "19.0.0", + "react-dom": "19.0.0", "react-hook-form": "7.54.1", "typescript": "5.7.2" }, "peerDependencies": { "@mui/material": "^5.14.0", "@mui/system": "^5.14.0", - "react": "^18.0.0", - "react-dom": "^18.0.0", + "react": "^19.0.0", + "react-dom": "^19.0.0", "react-hook-form": "7.54.1" } } diff --git a/libs/@hashintel/type-editor/package.json b/libs/@hashintel/type-editor/package.json index 044899ad855..246ed564cbe 100644 --- a/libs/@hashintel/type-editor/package.json +++ b/libs/@hashintel/type-editor/package.json @@ -42,16 +42,16 @@ "@types/lodash.uniqueid": "4.0.9", "eslint": "9.17.0", "eslint-plugin-storybook": "0.11.1", - "react": "18.3.1", - "react-dom": "18.3.1", + "react": "19.0.0", + "react-dom": "19.0.0", "react-hook-form": "7.54.1", "typescript": "5.7.2" }, "peerDependencies": { "@mui/material": "^5.14.0", "@mui/system": "^5.14.0", - "react": "^18.0.0", - "react-dom": "^18.0.0", + "react": "^19.0.0", + "react-dom": "^19.0.0", "react-hook-form": "7.54.1" } } diff --git a/libs/@hashintel/type-editor/src/entity-type-editor/link-list-card.tsx b/libs/@hashintel/type-editor/src/entity-type-editor/link-list-card.tsx index a3c1561a042..1141009f58b 100644 --- a/libs/@hashintel/type-editor/src/entity-type-editor/link-list-card.tsx +++ b/libs/@hashintel/type-editor/src/entity-type-editor/link-list-card.tsx @@ -4,7 +4,13 @@ import { LinkTypeIcon, StyledPlusCircleIcon, } from "@hashintel/design-system"; -import { Box, TableBody, TableCell, TableHead } from "@mui/material"; +import { + Box, + TableBody, + TableCell, + TableFooter, + TableHead, +} from "@mui/material"; import { bindTrigger, usePopupState } from "material-ui-popup-state/hooks"; import { useCallback, @@ -406,7 +412,7 @@ export const LinkListCard = () => { )} {isReadonly || !ontologyFunctions ? ( - + ) : ( 0}> {addingNewLink ? ( diff --git a/libs/@hashintel/type-editor/src/entity-type-editor/property-list-card.tsx b/libs/@hashintel/type-editor/src/entity-type-editor/property-list-card.tsx index 6e9a5ddd95f..6f03895f29b 100644 --- a/libs/@hashintel/type-editor/src/entity-type-editor/property-list-card.tsx +++ b/libs/@hashintel/type-editor/src/entity-type-editor/property-list-card.tsx @@ -9,7 +9,13 @@ import { PropertyTypeIcon, StyledPlusCircleIcon, } from "@hashintel/design-system"; -import { Box, Checkbox, TableBody, TableCell, TableHead } from "@mui/material"; +import { + Checkbox, + TableBody, + TableCell, + TableFooter, + TableHead, +} from "@mui/material"; import { bindTrigger, usePopupState } from "material-ui-popup-state/hooks"; import { useCallback, @@ -409,7 +415,7 @@ export const PropertyListCard = () => { )} {isReadonly ? ( - + ) : ( 0}> {addingNewProperty ? ( diff --git a/libs/@hashintel/type-editor/src/entity-type-editor/property-list-card/property-type-form/expected-value-selector.tsx b/libs/@hashintel/type-editor/src/entity-type-editor/property-list-card/property-type-form/expected-value-selector.tsx index 77e77833430..ae9604eee56 100644 --- a/libs/@hashintel/type-editor/src/entity-type-editor/property-list-card/property-type-form/expected-value-selector.tsx +++ b/libs/@hashintel/type-editor/src/entity-type-editor/property-list-card/property-type-form/expected-value-selector.tsx @@ -182,7 +182,7 @@ export const ExpectedValueSelector = ({ }, }); - const inputRef = useRef(); + const inputRef = useRef(null); const [inputValue, setInputValue] = useState(""); diff --git a/libs/@hashintel/type-editor/src/entity-type-editor/property-list-card/property-type-form/expected-value-selector/custom-expected-value-builder/array-expected-value-builder/array-min-max-items.tsx b/libs/@hashintel/type-editor/src/entity-type-editor/property-list-card/property-type-form/expected-value-selector/custom-expected-value-builder/array-expected-value-builder/array-min-max-items.tsx index a2f33e0d0fe..55868513829 100644 --- a/libs/@hashintel/type-editor/src/entity-type-editor/property-list-card/property-type-form/expected-value-selector/custom-expected-value-builder/array-expected-value-builder/array-min-max-items.tsx +++ b/libs/@hashintel/type-editor/src/entity-type-editor/property-list-card/property-type-form/expected-value-selector/custom-expected-value-builder/array-expected-value-builder/array-min-max-items.tsx @@ -77,8 +77,8 @@ export const ArrayMinMaxItems: FunctionComponent = ({ const [maxItemsWidth, setMaxItemsWidth] = useState(0); const [maxItemsHovered, setMaxItemsHovered] = useState(false); - const minItemsInputRef = useRef(); - const maxItemsInputRef = useRef(); + const minItemsInputRef = useRef(null); + const maxItemsInputRef = useRef(null); const setInputSize = useCallback(() => { setMinItemsWidth(minItemsInputRef.current?.value.length ?? 1); diff --git a/libs/@hashintel/type-editor/src/entity-type-editor/property-list-card/property-type-form/expected-value-selector/shared/custom-expected-value-selector.tsx b/libs/@hashintel/type-editor/src/entity-type-editor/property-list-card/property-type-form/expected-value-selector/shared/custom-expected-value-selector.tsx index 2272d1788c5..be837ff0a4c 100644 --- a/libs/@hashintel/type-editor/src/entity-type-editor/property-list-card/property-type-form/expected-value-selector/shared/custom-expected-value-selector.tsx +++ b/libs/@hashintel/type-editor/src/entity-type-editor/property-list-card/property-type-form/expected-value-selector/shared/custom-expected-value-selector.tsx @@ -36,7 +36,9 @@ export const CustomExpectedValueSelector = < return ( setAutocompleteElem(ref)} + ref={(ref: HTMLDivElement) => { + setAutocompleteElem(ref); + }} value={value} multiple popupIcon={null} diff --git a/libs/@hashintel/type-editor/src/entity-type-editor/shared/insert-type-field.tsx b/libs/@hashintel/type-editor/src/entity-type-editor/shared/insert-type-field.tsx index 772df1f1c50..d2205645e31 100644 --- a/libs/@hashintel/type-editor/src/entity-type-editor/shared/insert-type-field.tsx +++ b/libs/@hashintel/type-editor/src/entity-type-editor/shared/insert-type-field.tsx @@ -24,7 +24,9 @@ export type InsertTypeFieldProps = { * width of the table when sticky. However, the selector should be the width * of the first two columns. This emulates that. */ -const useTableColumnWidth = (tableRowRef: RefObject) => { +const useTableColumnWidth = ( + tableRowRef: RefObject, +) => { const [columnWidth, setColumnWidth] = useState(null); useLayoutEffect(() => { diff --git a/libs/@hashintel/type-editor/src/entity-type-editor/shared/multiple-values-cell.tsx b/libs/@hashintel/type-editor/src/entity-type-editor/shared/multiple-values-cell.tsx index 62b213beea8..05dea2c91b6 100644 --- a/libs/@hashintel/type-editor/src/entity-type-editor/shared/multiple-values-cell.tsx +++ b/libs/@hashintel/type-editor/src/entity-type-editor/shared/multiple-values-cell.tsx @@ -239,7 +239,9 @@ export const MultipleValuesCell = ({ return ( <> setAnchorEl(ref)} + ref={(ref: HTMLDivElement) => { + setAnchorEl(ref); + }} sx={{ p: "0 !important", position: "relative", diff --git a/libs/@local/advanced-types/package.json b/libs/@local/advanced-types/package.json index 2d98e73bc8c..e96e9d7baa9 100644 --- a/libs/@local/advanced-types/package.json +++ b/libs/@local/advanced-types/package.json @@ -25,7 +25,7 @@ "@local/eslint": "0.0.0-private", "@local/tsconfig": "0.0.0-private", "eslint": "9.17.0", - "react": "18.3.1", + "react": "19.0.0", "rimraf": "6.0.1", "typescript": "5.7.2" } diff --git a/libs/@local/hash-backend-utils/package.json b/libs/@local/hash-backend-utils/package.json index 3a0542d17be..7060f72ff10 100644 --- a/libs/@local/hash-backend-utils/package.json +++ b/libs/@local/hash-backend-utils/package.json @@ -25,7 +25,7 @@ "dependencies": { "@aws-sdk/client-s3": "3.716.0", "@aws-sdk/s3-request-presigner": "3.716.0", - "@blockprotocol/core": "0.1.3", + "@blockprotocol/core": "patch:@blockprotocol/core@npm%3A0.1.3#~/.yarn/patches/@blockprotocol-core-npm-0.1.3-7c4f062e15.patch", "@blockprotocol/graph": "0.4.0-canary.0", "@blockprotocol/type-system": "0.1.2-canary.0", "@linear/sdk": "6.0.0", diff --git a/libs/@local/hash-isomorphic-utils/package.json b/libs/@local/hash-isomorphic-utils/package.json index 83de35a1b32..e19e7f20fce 100644 --- a/libs/@local/hash-isomorphic-utils/package.json +++ b/libs/@local/hash-isomorphic-utils/package.json @@ -26,7 +26,7 @@ }, "dependencies": { "@apollo/client": "3.10.5", - "@blockprotocol/core": "0.1.3", + "@blockprotocol/core": "patch:@blockprotocol/core@npm%3A0.1.3#~/.yarn/patches/@blockprotocol-core-npm-0.1.3-7c4f062e15.patch", "@blockprotocol/graph": "0.4.0-canary.0", "@local/advanced-types": "0.0.0-private", "@local/hash-graph-client": "0.0.0-private", @@ -38,7 +38,6 @@ "apollo-server-express": "3.9.0", "fix-esm-import-path": "1.10.1", "fractional-indexing": "2.1.0", - "id128": "1.6.6", "immer": "9.0.21", "jsonschema": "1.4.1", "lodash-es": "4.17.21", @@ -52,7 +51,7 @@ "prosemirror-view": "patch:prosemirror-view@npm%3A1.29.1#~/.yarn/patches/prosemirror-view-npm-1.29.1-ff37db4eea.patch", "serialize-error": "11.0.3", "tsx": "4.19.2", - "uuid": "9.0.1" + "uuid": "11.0.3" }, "devDependencies": { "@blockprotocol/type-system": "0.1.2-canary.0", @@ -69,9 +68,9 @@ "@vitest/coverage-istanbul": "2.1.8", "eslint": "9.17.0", "graphql": "16.10.0", - "next": "13.5.5", + "next": "15.1.0", "prettier": "3.4.2", - "react": "18.3.1", + "react": "19.0.0", "rimraf": "6.0.1", "typescript": "5.7.2", "vitest": "2.1.8" diff --git a/libs/@local/hash-isomorphic-utils/src/create-apollo-client.ts b/libs/@local/hash-isomorphic-utils/src/create-apollo-client.ts index 12ba61a08b9..00a2b9fbe19 100644 --- a/libs/@local/hash-isomorphic-utils/src/create-apollo-client.ts +++ b/libs/@local/hash-isomorphic-utils/src/create-apollo-client.ts @@ -9,7 +9,7 @@ import { onError } from "@apollo/client/link/error"; import * as Sentry from "@sentry/browser"; import { apiGraphQLEndpoint } from "./environment.js"; -import possibleTypes from "./graphql/fragment-types.gen.json" assert { type: "json" }; +import possibleTypes from "./graphql/fragment-types.gen.json" with { type: "json" }; import { hashClientHeaderKey } from "./http-requests.js"; const errorLink = onError(({ graphQLErrors, operation }) => { diff --git a/libs/@local/hash-isomorphic-utils/src/generate-uuid.ts b/libs/@local/hash-isomorphic-utils/src/generate-uuid.ts index 5f99d55cbd3..29c60045acd 100644 --- a/libs/@local/hash-isomorphic-utils/src/generate-uuid.ts +++ b/libs/@local/hash-isomorphic-utils/src/generate-uuid.ts @@ -1,4 +1,3 @@ -import id128 from "id128"; +import { v4 as uuidv4 } from "uuid"; -export const generateUuid = () => - id128.Uuid4.generate().toCanonical().toLowerCase(); +export const generateUuid = () => uuidv4(); diff --git a/libs/@local/hash-subgraph/package.json b/libs/@local/hash-subgraph/package.json index c832ff8022d..edfeb3d4a14 100644 --- a/libs/@local/hash-subgraph/package.json +++ b/libs/@local/hash-subgraph/package.json @@ -36,11 +36,10 @@ "@local/hash-graph-client": "0.0.0-private", "@local/hash-graph-sdk": "0.0.0-private", "@local/hash-graph-types": "0.0.0-private", - "uuid": "9.0.1" + "uuid": "11.0.3" }, "devDependencies": { "@local/eslint": "0.0.0-private", - "@types/uuid": "10.0.0", "@vitest/coverage-istanbul": "2.1.8", "eslint": "9.17.0", "rimraf": "6.0.1", diff --git a/libs/@local/repo-chores/node/package.json b/libs/@local/repo-chores/node/package.json index c38df69b98f..be164d20b78 100644 --- a/libs/@local/repo-chores/node/package.json +++ b/libs/@local/repo-chores/node/package.json @@ -10,7 +10,7 @@ "lint:tsc": "tsc --noEmit" }, "dependencies": { - "@blockprotocol/core": "0.1.3", + "@blockprotocol/core": "patch:@blockprotocol/core@npm%3A0.1.3#~/.yarn/patches/@blockprotocol-core-npm-0.1.3-7c4f062e15.patch", "chalk": "4.1.2", "envalid": "7.3.1", "execa": "5.1.1", diff --git a/package.json b/package.json index a9695db3b79..a4d2a1e5dc9 100644 --- a/package.json +++ b/package.json @@ -73,6 +73,7 @@ }, "resolutions": { "@artilleryio/int-commons@npm:2.11.0": "patch:@artilleryio/int-commons@npm%3A2.11.0#~/.yarn/patches/@artilleryio-int-commons-npm-2.11.0-5b69c05121.patch", + "@blockprotocol/core@npm:0.1.3": "patch:@blockprotocol/core@npm%3A0.1.3#~/.yarn/patches/@blockprotocol-core-npm-0.1.3-7c4f062e15.patch", "@changesets/assemble-release-plan@npm:^5.2.3": "patch:@changesets/assemble-release-plan@npm%3A5.2.4#~/.yarn/patches/@changesets-assemble-release-plan-npm-5.2.4-2920e4dc4c.patch", "@changesets/assemble-release-plan@npm:^5.2.4": "patch:@changesets/assemble-release-plan@npm%3A5.2.4#~/.yarn/patches/@changesets-assemble-release-plan-npm-5.2.4-2920e4dc4c.patch", "@changesets/get-dependents-graph@npm:^1.3.5": "patch:@changesets/get-dependents-graph@npm%3A1.3.6#~/.yarn/patches/@changesets-get-dependents-graph-npm-1.3.6-ddd5f64f78.patch", @@ -87,7 +88,7 @@ "@tldraw/editor@npm:2.0.0-alpha.12": "patch:@tldraw/editor@npm%3A2.0.0-alpha.12#~/.yarn/patches/@tldraw-editor-npm-2.0.0-alpha.12-ba59bf001c.patch", "@tldraw/tlschema@npm:2.0.0-alpha.12": "patch:@tldraw/tlschema@npm%3A2.0.0-alpha.12#~/.yarn/patches/@tldraw-tlschema-npm-2.0.0-alpha.12-13bf88407b.patch", "@types/express": "4.17.21", - "@types/react": "18.3.17", + "@types/react": "19.0.1", "blockprotocol@npm:0.0.10": "patch:blockprotocol@npm%3A0.0.12#~/.yarn/patches/blockprotocol-npm-0.0.12-2558a31f0a.patch", "prosemirror-model@npm:>=1.0.0": "patch:prosemirror-model@npm%3A1.18.2#~/.yarn/patches/prosemirror-model-npm-1.18.2-479d845b52.patch", "prosemirror-model@npm:^1.0.0": "patch:prosemirror-model@npm%3A1.18.2#~/.yarn/patches/prosemirror-model-npm-1.18.2-479d845b52.patch", @@ -96,8 +97,8 @@ "prosemirror-model@npm:^1.21.0": "patch:prosemirror-model@npm%3A1.18.2#~/.yarn/patches/prosemirror-model-npm-1.18.2-479d845b52.patch", "prosemirror-view@npm:^1.1.0": "patch:prosemirror-view@npm%3A1.29.1#~/.yarn/patches/prosemirror-view-npm-1.29.1-ff37db4eea.patch", "prosemirror-view@npm:^1.27.0": "patch:prosemirror-view@npm%3A1.29.1#~/.yarn/patches/prosemirror-view-npm-1.29.1-ff37db4eea.patch", - "react": "18.3.1", - "react-dom": "18.3.1" + "react": "19.0.0", + "react-dom": "19.0.0" }, "devDependencies": { "@changesets/changelog-github": "0.5.0", diff --git a/tests/hash-backend-load/package.json b/tests/hash-backend-load/package.json index 89489a4b2f0..88755ec1f72 100644 --- a/tests/hash-backend-load/package.json +++ b/tests/hash-backend-load/package.json @@ -45,7 +45,7 @@ "@ory/client": "1.1.41", "artillery": "2.0.20", "dotenv-flow": "3.3.0", - "uuid": "9.0.1" + "uuid": "11.0.3" }, "devDependencies": { "@apps/hash-api": "0.0.0-private", @@ -55,7 +55,6 @@ "@rollup/plugin-node-resolve": "16.0.0", "@rollup/plugin-typescript": "12.1.2", "@types/dotenv-flow": "3.3.3", - "@types/uuid": "10.0.0", "eslint": "9.17.0", "rimraf": "6.0.1", "rollup": "4.28.1", diff --git a/yarn.lock b/yarn.lock index 9199796c058..4a0add8a2bd 100644 --- a/yarn.lock +++ b/yarn.lock @@ -350,7 +350,7 @@ __metadata: "@aws-sdk/credential-provider-node": "npm:3.716.0" "@aws-sdk/s3-presigned-post": "npm:3.716.0" "@aws-sdk/s3-request-presigner": "npm:3.716.0" - "@blockprotocol/core": "npm:0.1.3" + "@blockprotocol/core": "patch:@blockprotocol/core@npm%3A0.1.3#~/.yarn/patches/@blockprotocol-core-npm-0.1.3-7c4f062e15.patch" "@blockprotocol/graph": "npm:0.4.0-canary.0" "@blockprotocol/type-system": "npm:0.1.2-canary.0" "@graphql-codegen/cli": "npm:^5.0.3" @@ -462,7 +462,7 @@ __metadata: resolution: "@apps/hash-frontend@workspace:apps/hash-frontend" dependencies: "@apollo/client": "npm:3.10.5" - "@blockprotocol/core": "npm:0.1.3" + "@blockprotocol/core": "patch:@blockprotocol/core@npm%3A0.1.3#~/.yarn/patches/@blockprotocol-core-npm-0.1.3-7c4f062e15.patch" "@blockprotocol/graph": "npm:0.4.0-canary.0" "@blockprotocol/hook": "npm:0.1.3" "@blockprotocol/service": "npm:0.1.4" @@ -497,7 +497,7 @@ __metadata: "@mui/icons-material": "npm:5.16.12" "@mui/material": "npm:5.16.12" "@mui/system": "npm:5.16.12" - "@next/bundle-analyzer": "npm:12.3.4" + "@next/bundle-analyzer": "npm:15.1.0" "@ory/client": "npm:1.1.41" "@ory/integrations": "npm:1.1.4" "@popperjs/core": "npm:2.11.8" @@ -522,12 +522,11 @@ __metadata: "@types/lodash": "npm:4.17.13" "@types/papaparse": "npm:5.3.15" "@types/prismjs": "npm:1.26.5" - "@types/react": "npm:18.3.17" + "@types/react": "npm:19.0.1" "@types/react-beautiful-dnd": "npm:13.1.8" - "@types/react-dom": "npm:18.3.5" + "@types/react-dom": "npm:19.0.2" "@types/react-window": "npm:1.8.8" "@types/url-regex-safe": "npm:1.0.2" - "@types/uuid": "npm:10.0.0" "@welldone-software/why-did-you-render": "npm:8.0.3" axios: "npm:1.7.9" buffer: "npm:6.0.3" @@ -538,7 +537,7 @@ __metadata: emoji-mart: "npm:5.6.0" eslint: "npm:9.17.0" fractional-indexing: "npm:2.1.0" - framer-motion: "npm:6.5.1" + framer-motion: "npm:11.15.0" graphology: "npm:0.25.4" graphology-layout: "npm:0.6.1" graphology-layout-forceatlas2: "npm:0.10.1" @@ -553,7 +552,7 @@ __metadata: marked: "npm:4.3.0" material-ui-popup-state: "npm:4.1.0" millify: "npm:6.1.0" - next: "npm:13.5.5" + next: "npm:15.1.0" next-seo: "npm:6.6.0" nextjs-progressbar: "npm:0.0.16" notistack: "npm:2.0.8" @@ -568,9 +567,9 @@ __metadata: prosemirror-state: "npm:1.4.3" prosemirror-transform: "npm:1.7.0" prosemirror-view: "patch:prosemirror-view@npm%3A1.29.1#~/.yarn/patches/prosemirror-view-npm-1.29.1-ff37db4eea.patch" - react: "npm:18.3.1" + react: "npm:19.0.0" react-beautiful-dnd: "npm:13.1.1" - react-dom: "npm:18.3.1" + react-dom: "npm:19.0.0" react-dropzone: "npm:14.3.5" react-full-screen: "npm:1.1.1" react-hook-form: "npm:7.54.1" @@ -593,7 +592,7 @@ __metadata: typescript: "npm:5.7.2" url-regex-safe: "npm:4.0.0" use-font-face-observer: "npm:1.2.2" - uuid: "npm:9.0.1" + uuid: "npm:11.0.3" wait-on: "npm:8.0.1" webpack: "npm:5.97.1" languageName: unknown @@ -703,8 +702,8 @@ __metadata: "@storybook/react": "npm:7.6.20" "@storybook/react-webpack5": "npm:7.6.20" "@storybook/testing-library": "npm:0.2.2" - "@types/react": "npm:18.3.17" - "@types/react-dom": "npm:18.3.5" + "@types/react": "npm:19.0.1" + "@types/react-dom": "npm:19.0.2" storybook: "npm:7.6.20" peerDependencies: "@emotion/cache": 11.14.0 @@ -712,8 +711,8 @@ __metadata: "@emotion/styled": 11.14.0 "@mui/material": 5.16.12 "@mui/system": 5.16.12 - react: ^18.2.0 - react-dom: ^18.2.0 + react: ^19.0.0 + react-dom: ^19.0.0 languageName: unknown linkType: soft @@ -740,8 +739,8 @@ __metadata: "@types/md5": "npm:2.3.5" "@types/node": "npm:22.10.2" "@types/prismjs": "npm:1.26.5" - "@types/react": "npm:18.3.17" - "@types/react-dom": "npm:18.3.5" + "@types/react": "npm:19.0.1" + "@types/react-dom": "npm:19.0.2" "@types/react-html-parser": "npm:2.0.6" "@types/unist": "npm:2.0.11" axios: "npm:1.7.9" @@ -762,14 +761,14 @@ __metadata: katex: "npm:0.16.18" md5: "npm:2.3.0" mock-block-dock: "npm:0.0.21" - next: "npm:13.5.5" + next: "npm:15.1.0" next-mdx-remote: "npm:4.4.1" next-seo: "npm:6.6.0" nextjs-progressbar: "npm:0.0.16" plaiceholder: "npm:2.5.0" prismjs: "npm:1.29.0" - react: "npm:18.3.1" - react-dom: "npm:18.3.1" + react: "npm:19.0.0" + react-dom: "npm:19.0.0" react-full-screen: "npm:1.1.1" react-html-parser: "npm:2.0.2" remark-gfm: "npm:3.0.1" @@ -794,7 +793,7 @@ __metadata: "@babel/plugin-proposal-private-property-in-object": "npm:^7.16.7" "@babel/preset-env": "npm:7.26.0" "@babel/preset-react": "npm:7.26.3" - "@blockprotocol/core": "npm:0.1.3" + "@blockprotocol/core": "patch:@blockprotocol/core@npm%3A0.1.3#~/.yarn/patches/@blockprotocol-core-npm-0.1.3-7c4f062e15.patch" "@blockprotocol/graph": "npm:0.4.0-canary.0" "@graphql-codegen/cli": "npm:^5.0.3" "@hashintel/block-design-system": "npm:0.0.2" @@ -812,8 +811,8 @@ __metadata: "@sentry/browser": "npm:7.120.2" "@sentry/webpack-plugin": "npm:2.22.7" "@types/lodash.debounce": "npm:4.0.9" - "@types/react": "npm:18.3.17" - "@types/react-dom": "npm:18.3.5" + "@types/react": "npm:19.0.1" + "@types/react-dom": "npm:19.0.2" "@types/webextension-polyfill": "patch:@types/webextension-polyfill@npm%3A0.10.4#~/.yarn/patches/@types-webextension-polyfill-npm-0.10.4-291152c615.patch" "@types/ws": "npm:8.5.13" babel-loader: "npm:9.2.1" @@ -833,8 +832,8 @@ __metadata: html-webpack-plugin: "npm:5.6.3" lodash.debounce: "npm:4.0.8" process: "npm:0.11.10" - react: "npm:18.3.1" - react-dom: "npm:18.3.1" + react: "npm:19.0.0" + react-dom: "npm:19.0.0" react-refresh: "npm:0.16.0" react-refresh-typescript: "npm:2.0.9" rimraf: "npm:6.0.1" @@ -847,7 +846,7 @@ __metadata: tsconfig-paths-webpack-plugin: "npm:4.2.0" type-fest: "npm:3.13.1" typescript: "npm:5.7.2" - uuid: "npm:9.0.1" + uuid: "npm:11.0.3" webextension-polyfill: "npm:0.10.0" webpack: "npm:5.97.1" webpack-cli: "npm:4.10.0" @@ -4439,6 +4438,18 @@ __metadata: languageName: node linkType: hard +"@blockprotocol/core@patch:@blockprotocol/core@npm%3A0.1.3#~/.yarn/patches/@blockprotocol-core-npm-0.1.3-7c4f062e15.patch": + version: 0.1.3 + resolution: "@blockprotocol/core@patch:@blockprotocol/core@npm%3A0.1.3#~/.yarn/patches/@blockprotocol-core-npm-0.1.3-7c4f062e15.patch::version=0.1.3&hash=fc55b8" + dependencies: + es-module-lexer: "npm:^0.10.5" + uuid: "npm:^8.3.2" + peerDependencies: + react: ^18.0.0 + checksum: 10c0/b4532d9c8e19b44ddf6a079210d2c6f6bc92e860f0c3b8462328e87c2cf1e044556755260edcc6af4170e6d059810a36d9f3803c7f569f8c249f4040346d65b2 + languageName: node + linkType: hard + "@blockprotocol/graph@npm:0.0.13": version: 0.0.13 resolution: "@blockprotocol/graph@npm:0.0.13" @@ -4520,13 +4531,13 @@ __metadata: resolution: "@blockprotocol/graph@workspace:libs/@blockprotocol/graph" dependencies: "@apidevtools/json-schema-ref-parser": "npm:11.7.3" - "@blockprotocol/core": "npm:0.1.3" + "@blockprotocol/core": "patch:@blockprotocol/core@npm%3A0.1.3#~/.yarn/patches/@blockprotocol-core-npm-0.1.3-7c4f062e15.patch" "@blockprotocol/type-system": "npm:0.1.2-canary.0" "@local/eslint": "npm:0.0.0-private" "@local/tsconfig": "npm:0.0.0-private" "@types/lodash.isequal": "npm:4.5.8" "@types/node": "npm:22.10.2" - "@types/react": "npm:18.3.17" + "@types/react": "npm:19.0.1" ajv: "npm:8.17.1" ajv-formats: "npm:3.0.1" eslint: "npm:9.17.0" @@ -4536,7 +4547,7 @@ __metadata: rimraf: "npm:6.0.1" typescript: "npm:5.7.2" peerDependencies: - react: ^18.0.0 + react: ^19.0.0 languageName: unknown linkType: soft @@ -4615,10 +4626,10 @@ __metadata: "@rollup/plugin-typescript": "npm:12.1.2" "@rollup/plugin-wasm": "npm:6.2.2" "@types/node": "npm:22.10.2" - "@types/react": "npm:18.3.17" + "@types/react": "npm:19.0.1" "@vitest/coverage-istanbul": "npm:2.1.8" eslint: "npm:9.17.0" - react: "npm:18.3.1" + react: "npm:19.0.0" rimraf: "npm:6.0.1" rollup: "npm:4.28.1" tslib: "npm:2.8.1" @@ -4641,22 +4652,21 @@ __metadata: "@local/eslint": "npm:0.0.0-private" "@mui/material": "npm:5.16.12" "@types/lodash.debounce": "npm:4.0.9" - "@types/react-dom": "npm:18.3.5" - "@types/uuid": "npm:10.0.0" + "@types/react-dom": "npm:19.0.2" block-scripts: "npm:0.3.4" eslint: "npm:9.17.0" lodash.debounce: "npm:4.0.8" mock-block-dock: "npm:0.1.9" prettier: "npm:3.4.2" - react: "npm:18.3.1" - react-dom: "npm:18.3.1" + react: "npm:19.0.0" + react-dom: "npm:19.0.0" react-sizeme: "npm:3.0.2" rooks: "npm:7.14.1" typescript: "npm:5.7.2" - uuid: "npm:9.0.1" + uuid: "npm:11.0.3" peerDependencies: - react: ^18.0.0 - react-dom: ^18.0.0 + react: ^19.0.0 + react-dom: ^19.0.0 languageName: unknown linkType: soft @@ -4672,22 +4682,21 @@ __metadata: "@local/eslint": "npm:0.0.0-private" "@local/tsconfig": "npm:0.0.0-private" "@mui/material": "npm:5.16.12" - "@types/react-dom": "npm:18.3.5" - "@types/uuid": "npm:10.0.0" + "@types/react-dom": "npm:19.0.2" block-scripts: "npm:0.3.4" eslint: "npm:9.17.0" mock-block-dock: "npm:0.1.9" prettier: "npm:3.4.2" - react: "npm:18.3.1" - react-dom: "npm:18.3.1" + react: "npm:19.0.0" + react-dom: "npm:19.0.0" react-sizeme: "npm:3.0.2" react-transition-group: "npm:4.4.5" react-type-animation: "npm:3.2.0" typescript: "npm:5.7.2" - uuid: "npm:9.0.1" + uuid: "npm:11.0.3" peerDependencies: - react: ^18.0.0 - react-dom: ^18.0.0 + react: ^19.0.0 + react-dom: ^19.0.0 languageName: unknown linkType: soft @@ -4702,20 +4711,19 @@ __metadata: "@local/eslint": "npm:0.0.0-private" "@local/tsconfig": "npm:0.0.0-private" "@mui/material": "npm:5.16.12" - "@types/react-dom": "npm:18.3.5" - "@types/uuid": "npm:10.0.0" + "@types/react-dom": "npm:19.0.2" block-scripts: "npm:0.3.4" eslint: "npm:9.17.0" mock-block-dock: "npm:0.1.9" prettier: "npm:3.4.2" - react: "npm:18.3.1" - react-dom: "npm:18.3.1" + react: "npm:19.0.0" + react-dom: "npm:19.0.0" react-sizeme: "npm:3.0.2" typescript: "npm:5.7.2" - uuid: "npm:9.0.1" + uuid: "npm:11.0.3" peerDependencies: - react: ^18.0.0 - react-dom: ^18.0.0 + react: ^19.0.0 + react-dom: ^19.0.0 languageName: unknown linkType: soft @@ -4730,17 +4738,17 @@ __metadata: "@local/eslint": "npm:0.0.0-private" "@local/tsconfig": "npm:0.0.0-private" "@mui/material": "npm:5.16.12" - "@types/react-dom": "npm:18.3.5" + "@types/react-dom": "npm:19.0.2" block-scripts: "npm:0.3.4" eslint: "npm:9.17.0" mock-block-dock: "npm:0.1.9" prettier: "npm:3.4.2" - react: "npm:18.3.1" - react-dom: "npm:18.3.1" + react: "npm:19.0.0" + react-dom: "npm:19.0.0" typescript: "npm:5.7.2" peerDependencies: - react: ^18.0.0 - react-dom: ^18.0.0 + react: ^19.0.0 + react-dom: ^19.0.0 languageName: unknown linkType: soft @@ -4752,17 +4760,17 @@ __metadata: "@blockprotocol/hook": "npm:0.1.3" "@local/eslint": "npm:0.0.0-private" "@local/tsconfig": "npm:0.0.0-private" - "@types/react-dom": "npm:18.3.5" + "@types/react-dom": "npm:19.0.2" block-scripts: "npm:0.3.4" eslint: "npm:9.17.0" mock-block-dock: "npm:0.1.9" prettier: "npm:3.4.2" - react: "npm:18.3.1" - react-dom: "npm:18.3.1" + react: "npm:19.0.0" + react-dom: "npm:19.0.0" typescript: "npm:5.7.2" peerDependencies: - react: ^18.2.0 - react-dom: ^18.2.0 + react: ^19.0.0 + react-dom: ^19.0.0 languageName: unknown linkType: soft @@ -4780,7 +4788,7 @@ __metadata: "@local/tsconfig": "npm:0.0.0-private" "@mui/material": "npm:5.16.12" "@types/lodash.debounce": "npm:4.0.9" - "@types/react-dom": "npm:18.3.5" + "@types/react-dom": "npm:19.0.2" "@types/react-is": "npm:19.0.0" block-scripts: "npm:0.3.4" echarts: "npm:5.5.1" @@ -4788,13 +4796,13 @@ __metadata: lodash.debounce: "npm:4.0.8" mock-block-dock: "npm:0.1.9" prettier: "npm:3.4.2" - react: "npm:18.3.1" - react-dom: "npm:18.3.1" + react: "npm:19.0.0" + react-dom: "npm:19.0.0" react-hook-form: "npm:7.54.1" typescript: "npm:5.7.2" peerDependencies: - react: ^18.2.0 - react-dom: ^18.2.0 + react: ^19.0.0 + react-dom: ^19.0.0 languageName: unknown linkType: soft @@ -4806,18 +4814,18 @@ __metadata: "@local/eslint": "npm:0.0.0-private" "@local/tsconfig": "npm:0.0.0-private" "@types/prismjs": "npm:1.26.5" - "@types/react-dom": "npm:18.3.5" + "@types/react-dom": "npm:19.0.2" block-scripts: "npm:0.3.4" eslint: "npm:9.17.0" mock-block-dock: "npm:0.1.9" prettier: "npm:3.4.2" prismjs: "npm:1.29.0" - react: "npm:18.3.1" - react-dom: "npm:18.3.1" + react: "npm:19.0.0" + react-dom: "npm:19.0.0" typescript: "npm:5.7.2" peerDependencies: - react: ^18.2.0 - react-dom: ^18.2.0 + react: ^19.0.0 + react-dom: ^19.0.0 languageName: unknown linkType: soft @@ -4829,19 +4837,19 @@ __metadata: "@local/eslint": "npm:0.0.0-private" "@local/tsconfig": "npm:0.0.0-private" "@types/react-datepicker": "npm:4.19.6" - "@types/react-dom": "npm:18.3.5" + "@types/react-dom": "npm:19.0.2" block-scripts: "npm:0.3.4" date-fns: "npm:4.1.0" eslint: "npm:9.17.0" mock-block-dock: "npm:0.1.9" prettier: "npm:3.4.2" - react: "npm:18.3.1" + react: "npm:19.0.0" react-datepicker: "npm:4.25.0" - react-dom: "npm:18.3.1" + react-dom: "npm:19.0.0" typescript: "npm:5.7.2" peerDependencies: - react: ^18.2.0 - react-dom: ^18.2.0 + react: ^19.0.0 + react-dom: ^19.0.0 languageName: unknown linkType: soft @@ -4849,21 +4857,21 @@ __metadata: version: 0.0.0-use.local resolution: "@blocks/divider@workspace:blocks/divider" dependencies: - "@blockprotocol/core": "npm:0.1.3" + "@blockprotocol/core": "patch:@blockprotocol/core@npm%3A0.1.3#~/.yarn/patches/@blockprotocol-core-npm-0.1.3-7c4f062e15.patch" "@blockprotocol/graph": "npm:0.3.4" "@local/eslint": "npm:0.0.0-private" "@local/tsconfig": "npm:0.0.0-private" - "@types/react-dom": "npm:18.3.5" + "@types/react-dom": "npm:19.0.2" block-scripts: "npm:0.3.4" eslint: "npm:9.17.0" mock-block-dock: "npm:0.1.9" prettier: "npm:3.4.2" - react: "npm:18.3.1" - react-dom: "npm:18.3.1" + react: "npm:19.0.0" + react-dom: "npm:19.0.0" typescript: "npm:5.7.2" peerDependencies: - react: ^18.2.0 - react-dom: ^18.2.0 + react: ^19.0.0 + react-dom: ^19.0.0 languageName: unknown linkType: soft @@ -4874,20 +4882,20 @@ __metadata: "@local/eslint": "npm:0.0.0-private" "@local/tsconfig": "npm:0.0.0-private" "@types/lodash": "npm:4.17.13" - "@types/react-dom": "npm:18.3.5" + "@types/react-dom": "npm:19.0.2" block-scripts: "npm:0.0.14" blockprotocol: "patch:blockprotocol@npm%3A0.0.12#~/.yarn/patches/blockprotocol-npm-0.0.12-2558a31f0a.patch" eslint: "npm:9.17.0" lodash: "npm:4.17.21" mock-block-dock: "npm:0.0.10" - react: "npm:18.3.1" - react-dom: "npm:18.3.1" + react: "npm:19.0.0" + react-dom: "npm:19.0.0" twind: "npm:0.16.19" typescript: "npm:5.7.2" peerDependencies: lodash: 4.17.21 - react: ^18.2.0 - react-dom: ^18.2.0 + react: ^19.0.0 + react-dom: ^19.0.0 languageName: unknown linkType: soft @@ -4900,19 +4908,18 @@ __metadata: "@hashintel/design-system": "npm:0.0.8" "@local/eslint": "npm:0.0.0-private" "@mui/material": "npm:5.16.12" - "@types/react-dom": "npm:18.3.5" - "@types/uuid": "npm:10.0.0" + "@types/react-dom": "npm:19.0.2" block-scripts: "npm:0.3.4" eslint: "npm:9.17.0" mock-block-dock: "npm:0.1.9" prettier: "npm:3.4.2" - react: "npm:18.3.1" - react-dom: "npm:18.3.1" + react: "npm:19.0.0" + react-dom: "npm:19.0.0" typescript: "npm:5.7.2" - uuid: "npm:9.0.1" + uuid: "npm:11.0.3" peerDependencies: - react: ^18.0.0 - react-dom: ^18.0.0 + react: ^19.0.0 + react-dom: ^19.0.0 languageName: unknown linkType: soft @@ -4924,17 +4931,17 @@ __metadata: "@blockprotocol/hook": "npm:0.1.3" "@local/eslint": "npm:0.0.0-private" "@local/tsconfig": "npm:0.0.0-private" - "@types/react-dom": "npm:18.3.5" + "@types/react-dom": "npm:19.0.2" block-scripts: "npm:0.3.4" eslint: "npm:9.17.0" mock-block-dock: "npm:0.1.9" prettier: "npm:3.4.2" - react: "npm:18.3.1" - react-dom: "npm:18.3.1" + react: "npm:19.0.0" + react-dom: "npm:19.0.0" typescript: "npm:5.7.2" peerDependencies: - react: ^18.2.0 - react-dom: ^18.2.0 + react: ^19.0.0 + react-dom: ^19.0.0 languageName: unknown linkType: soft @@ -4947,20 +4954,19 @@ __metadata: "@hashintel/design-system": "npm:0.0.8" "@local/eslint": "npm:0.0.0-private" "@mui/material": "npm:5.16.12" - "@types/react-dom": "npm:18.3.5" - "@types/uuid": "npm:10.0.0" + "@types/react-dom": "npm:19.0.2" block-scripts: "npm:0.3.4" eslint: "npm:9.17.0" mock-block-dock: "npm:0.1.9" prettier: "npm:3.4.2" - react: "npm:18.3.1" - react-dom: "npm:18.3.1" + react: "npm:19.0.0" + react-dom: "npm:19.0.0" react-sizeme: "npm:3.0.2" typescript: "npm:5.7.2" - uuid: "npm:9.0.1" + uuid: "npm:11.0.3" peerDependencies: - react: ^18.0.0 - react-dom: ^18.0.0 + react: ^19.0.0 + react-dom: ^19.0.0 languageName: unknown linkType: soft @@ -4972,18 +4978,18 @@ __metadata: "@blockprotocol/hook": "npm:0.1.3" "@local/eslint": "npm:0.0.0-private" "@local/tsconfig": "npm:0.0.0-private" - "@types/react-dom": "npm:18.3.5" + "@types/react-dom": "npm:19.0.2" block-scripts: "npm:0.3.4" eslint: "npm:9.17.0" mock-block-dock: "npm:0.1.9" prettier: "npm:3.4.2" - react: "npm:18.3.1" - react-dom: "npm:18.3.1" + react: "npm:19.0.0" + react-dom: "npm:19.0.0" twind: "npm:0.16.19" typescript: "npm:5.7.2" peerDependencies: - react: ^18.2.0 - react-dom: ^18.2.0 + react: ^19.0.0 + react-dom: ^19.0.0 languageName: unknown linkType: soft @@ -5003,7 +5009,7 @@ __metadata: "@types/lodash.clonedeep": "npm:4.5.9" "@types/lodash.debounce": "npm:4.0.9" "@types/lodash.isequal": "npm:4.5.8" - "@types/react-dom": "npm:18.3.5" + "@types/react-dom": "npm:19.0.2" block-scripts: "npm:0.3.4" clsx: "npm:1.2.1" eslint: "npm:9.17.0" @@ -5012,13 +5018,13 @@ __metadata: lodash.isequal: "npm:4.5.0" mock-block-dock: "npm:0.1.9" prettier: "npm:3.4.2" - react: "npm:18.3.1" - react-dom: "npm:18.3.1" + react: "npm:19.0.0" + react-dom: "npm:19.0.0" react-textarea-autosize: "npm:8.5.6" typescript: "npm:5.7.2" peerDependencies: - react: ^18.0.0 - react-dom: ^18.0.0 + react: ^19.0.0 + react-dom: ^19.0.0 languageName: unknown linkType: soft @@ -5029,15 +5035,15 @@ __metadata: "@blockprotocol/graph": "npm:0.3.4" "@local/eslint": "npm:0.0.0-private" "@local/tsconfig": "npm:0.0.0-private" - "@types/react-dom": "npm:18.3.5" + "@types/react-dom": "npm:19.0.2" block-scripts: "npm:0.3.4" eslint: "npm:9.17.0" lit: "npm:2.8.0" mine-sweeper-tag: "npm:1.0.6" mock-block-dock: "npm:0.1.9" prettier: "npm:3.4.2" - react: "npm:18.3.1" - react-dom: "npm:18.3.1" + react: "npm:19.0.0" + react-dom: "npm:19.0.0" typescript: "npm:5.7.2" languageName: unknown linkType: soft @@ -5050,17 +5056,17 @@ __metadata: "@blockprotocol/hook": "npm:0.1.3" "@local/eslint": "npm:0.0.0-private" "@local/tsconfig": "npm:0.0.0-private" - "@types/react-dom": "npm:18.3.5" + "@types/react-dom": "npm:19.0.2" block-scripts: "npm:0.3.4" eslint: "npm:9.17.0" mock-block-dock: "npm:0.1.9" prettier: "npm:3.4.2" - react: "npm:18.3.1" - react-dom: "npm:18.3.1" + react: "npm:19.0.0" + react-dom: "npm:19.0.0" typescript: "npm:5.7.2" peerDependencies: - react: ^18.2.0 - react-dom: ^18.2.0 + react: ^19.0.0 + react-dom: ^19.0.0 languageName: unknown linkType: soft @@ -5072,17 +5078,17 @@ __metadata: "@local/eslint": "npm:0.0.0-private" "@local/tsconfig": "npm:0.0.0-private" "@types/dompurify": "npm:2.4.0" - "@types/react-dom": "npm:18.3.5" + "@types/react-dom": "npm:19.0.2" block-scripts: "npm:0.0.14" dompurify: "npm:2.5.8" eslint: "npm:9.17.0" mock-block-dock: "npm:0.0.38" - react: "npm:18.3.1" - react-dom: "npm:18.3.1" + react: "npm:19.0.0" + react-dom: "npm:19.0.0" typescript: "npm:5.7.2" peerDependencies: - react: ^18.2.0 - react-dom: ^18.2.0 + react: ^19.0.0 + react-dom: ^19.0.0 languageName: unknown linkType: soft @@ -5100,20 +5106,19 @@ __metadata: "@mui/icons-material": "npm:5.16.12" "@mui/material": "npm:5.16.12" "@types/lodash.isequal": "npm:4.5.8" - "@types/uuid": "npm:10.0.0" block-scripts: "npm:0.3.4" eslint: "npm:9.17.0" immer: "npm:9.0.21" lodash.isequal: "npm:4.5.0" mock-block-dock: "npm:0.1.9" prettier: "npm:3.4.2" - react: "npm:18.3.1" - react-dom: "npm:18.3.1" + react: "npm:19.0.0" + react-dom: "npm:19.0.0" typescript: "npm:5.7.2" - uuid: "npm:9.0.1" + uuid: "npm:11.0.3" peerDependencies: - react: ^18.2.0 - react-dom: ^18.2.0 + react: ^19.0.0 + react-dom: ^19.0.0 languageName: unknown linkType: soft @@ -5132,7 +5137,7 @@ __metadata: "@types/lodash.debounce": "npm:4.0.9" "@types/lodash.isequal": "npm:4.5.8" "@types/lodash.uniqueid": "npm:4.0.9" - "@types/react-dom": "npm:18.3.5" + "@types/react-dom": "npm:19.0.2" block-scripts: "npm:0.3.4" clsx: "npm:1.2.1" eslint: "npm:9.17.0" @@ -5142,16 +5147,16 @@ __metadata: lodash.uniqueid: "npm:4.0.1" mock-block-dock: "npm:0.1.9" prettier: "npm:3.4.2" - react: "npm:18.3.1" + react: "npm:19.0.0" react-device-detect: "npm:2.2.3" - react-dom: "npm:18.3.1" + react-dom: "npm:19.0.0" react-laag: "npm:2.0.5" react-sizeme: "npm:3.0.2" rooks: "npm:7.14.1" typescript: "npm:5.7.2" peerDependencies: - react: ^18.0.0 - react-dom: ^18.0.0 + react: ^19.0.0 + react-dom: ^19.0.0 languageName: unknown linkType: soft @@ -5162,19 +5167,19 @@ __metadata: "@blockprotocol/graph": "npm:0.3.4" "@local/eslint": "npm:0.0.0-private" "@local/tsconfig": "npm:0.0.0-private" - "@types/react-dom": "npm:18.3.5" + "@types/react-dom": "npm:19.0.2" block-scripts: "npm:0.3.4" date-fns: "npm:4.1.0" duration-fns: "npm:3.0.2" eslint: "npm:9.17.0" mock-block-dock: "npm:0.1.9" prettier: "npm:3.4.2" - react: "npm:18.3.1" - react-dom: "npm:18.3.1" + react: "npm:19.0.0" + react-dom: "npm:19.0.0" typescript: "npm:5.7.2" peerDependencies: - react: ^18.2.0 - react-dom: ^18.2.0 + react: ^19.0.0 + react-dom: ^19.0.0 languageName: unknown linkType: soft @@ -5185,18 +5190,18 @@ __metadata: "@blockprotocol/graph": "npm:0.3.4" "@local/eslint": "npm:0.0.0-private" "@local/tsconfig": "npm:0.0.0-private" - "@types/react-dom": "npm:18.3.5" + "@types/react-dom": "npm:19.0.2" block-scripts: "npm:0.3.4" eslint: "npm:9.17.0" mock-block-dock: "npm:0.1.9" prettier: "npm:3.4.2" - react: "npm:18.3.1" - react-dom: "npm:18.3.1" + react: "npm:19.0.0" + react-dom: "npm:19.0.0" twind: "npm:0.16.19" typescript: "npm:5.7.2" peerDependencies: - react: ^18.2.0 - react-dom: ^18.2.0 + react: ^19.0.0 + react-dom: ^19.0.0 languageName: unknown linkType: soft @@ -5913,15 +5918,6 @@ __metadata: languageName: node linkType: hard -"@emotion/is-prop-valid@npm:^0.8.2": - version: 0.8.8 - resolution: "@emotion/is-prop-valid@npm:0.8.8" - dependencies: - "@emotion/memoize": "npm:0.7.4" - checksum: 10c0/f6be625f067c7fa56a12a4edaf090715616dc4fc7803c87212831f38c969350107b9709b1be54100e53153b18d9fa068eb4bf4f9ac66a37a8edf1bac9b64e279 - languageName: node - linkType: hard - "@emotion/is-prop-valid@npm:^1.2.0, @emotion/is-prop-valid@npm:^1.3.0": version: 1.3.1 resolution: "@emotion/is-prop-valid@npm:1.3.1" @@ -5931,13 +5927,6 @@ __metadata: languageName: node linkType: hard -"@emotion/memoize@npm:0.7.4": - version: 0.7.4 - resolution: "@emotion/memoize@npm:0.7.4" - checksum: 10c0/b2376548fc147b43afd1ff005a80a1a025bd7eb4fb759fdb23e96e5ff290ee8ba16628a332848d600fb91c3cdc319eee5395fa33d8875e5d5a8c4ce18cddc18e - languageName: node - linkType: hard - "@emotion/memoize@npm:^0.8.1": version: 0.8.1 resolution: "@emotion/memoize@npm:0.8.1" @@ -7909,14 +7898,14 @@ __metadata: "@local/tsconfig": "npm:0.0.0-private" "@mui/material": "npm:5.16.12" "@mui/system": "npm:5.16.12" - "@types/react": "npm:18.3.17" - "@types/react-dom": "npm:18.3.5" + "@types/react": "npm:19.0.1" + "@types/react-dom": "npm:19.0.2" "@types/react-syntax-highlighter": "npm:15.5.13" eslint: "npm:9.17.0" eslint-plugin-storybook: "npm:0.11.1" lowlight: "npm:2.9.0" - react: "npm:18.3.1" - react-dom: "npm:18.3.1" + react: "npm:19.0.0" + react-dom: "npm:19.0.0" react-syntax-highlighter: "npm:15.6.1" react-type-animation: "npm:3.2.0" typescript: "npm:5.7.2" @@ -7925,8 +7914,8 @@ __metadata: "@emotion/styled": 11.14.0 "@mui/material": 5.16.12 "@mui/system": 5.16.12 - react: ^18.2.0 - react-dom: ^18.2.0 + react: ^19.0.0 + react-dom: ^19.0.0 languageName: unknown linkType: soft @@ -7947,14 +7936,14 @@ __metadata: "@mui/material": "npm:5.16.12" "@mui/system": "npm:5.16.12" "@storybook/react": "npm:7.6.20" - "@types/react": "npm:18.3.17" - "@types/react-dom": "npm:18.3.5" + "@types/react": "npm:19.0.1" + "@types/react-dom": "npm:19.0.2" clsx: "npm:1.2.1" echarts: "npm:5.5.1" eslint: "npm:9.17.0" eslint-plugin-storybook: "npm:0.11.1" - react: "npm:18.3.1" - react-dom: "npm:18.3.1" + react: "npm:19.0.0" + react-dom: "npm:19.0.0" react-loading-skeleton: "npm:3.5.0" typescript: "npm:5.7.2" peerDependencies: @@ -7963,8 +7952,8 @@ __metadata: "@emotion/styled": 11.14.0 "@mui/material": 5.16.12 "@mui/system": 5.16.12 - react: ^18.2.0 - react-dom: ^18.2.0 + react: ^19.0.0 + react-dom: ^19.0.0 languageName: unknown linkType: soft @@ -7983,15 +7972,15 @@ __metadata: clsx: "npm:1.2.1" eslint: "npm:9.17.0" eslint-plugin-storybook: "npm:0.11.1" - react: "npm:18.3.1" - react-dom: "npm:18.3.1" + react: "npm:19.0.0" + react-dom: "npm:19.0.0" react-hook-form: "npm:7.54.1" typescript: "npm:5.7.2" peerDependencies: "@mui/material": ^5.14.0 "@mui/system": ^5.14.0 - react: ^18.0.0 - react-dom: ^18.0.0 + react: ^19.0.0 + react-dom: ^19.0.0 react-hook-form: 7.54.1 languageName: unknown linkType: soft @@ -8018,8 +8007,8 @@ __metadata: lodash.memoize: "npm:4.1.2" lodash.uniqueid: "npm:4.0.1" material-ui-popup-state: "npm:4.1.0" - react: "npm:18.3.1" - react-dom: "npm:18.3.1" + react: "npm:19.0.0" + react-dom: "npm:19.0.0" react-hook-form: "npm:7.54.1" rooks: "npm:7.14.1" setimmediate: "npm:1.0.5" @@ -8027,8 +8016,8 @@ __metadata: peerDependencies: "@mui/material": ^5.14.0 "@mui/system": ^5.14.0 - react: ^18.0.0 - react-dom: ^18.0.0 + react: ^19.0.0 + react-dom: ^19.0.0 react-hook-form: 7.54.1 languageName: unknown linkType: soft @@ -9292,7 +9281,7 @@ __metadata: "@local/eslint": "npm:0.0.0-private" "@local/tsconfig": "npm:0.0.0-private" eslint: "npm:9.17.0" - react: "npm:18.3.1" + react: "npm:19.0.0" rimraf: "npm:6.0.1" typescript: "npm:5.7.2" languageName: unknown @@ -9368,7 +9357,7 @@ __metadata: dependencies: "@aws-sdk/client-s3": "npm:3.716.0" "@aws-sdk/s3-request-presigner": "npm:3.716.0" - "@blockprotocol/core": "npm:0.1.3" + "@blockprotocol/core": "patch:@blockprotocol/core@npm%3A0.1.3#~/.yarn/patches/@blockprotocol-core-npm-0.1.3-7c4f062e15.patch" "@blockprotocol/graph": "npm:0.4.0-canary.0" "@blockprotocol/type-system": "npm:0.1.2-canary.0" "@linear/sdk": "npm:6.0.0" @@ -9467,7 +9456,7 @@ __metadata: resolution: "@local/hash-isomorphic-utils@workspace:libs/@local/hash-isomorphic-utils" dependencies: "@apollo/client": "npm:3.10.5" - "@blockprotocol/core": "npm:0.1.3" + "@blockprotocol/core": "patch:@blockprotocol/core@npm%3A0.1.3#~/.yarn/patches/@blockprotocol-core-npm-0.1.3-7c4f062e15.patch" "@blockprotocol/graph": "npm:0.4.0-canary.0" "@blockprotocol/type-system": "npm:0.1.2-canary.0" "@graphql-codegen/cli": "npm:^5.0.3" @@ -9493,11 +9482,10 @@ __metadata: fix-esm-import-path: "npm:1.10.1" fractional-indexing: "npm:2.1.0" graphql: "npm:16.10.0" - id128: "npm:1.6.6" immer: "npm:9.0.21" jsonschema: "npm:1.4.1" lodash-es: "npm:4.17.21" - next: "npm:13.5.5" + next: "npm:15.1.0" pluralize: "npm:8.0.0" prettier: "npm:3.4.2" prosemirror-commands: "npm:1.3.1" @@ -9507,12 +9495,12 @@ __metadata: prosemirror-state: "npm:1.4.3" prosemirror-transform: "npm:1.7.0" prosemirror-view: "patch:prosemirror-view@npm%3A1.29.1#~/.yarn/patches/prosemirror-view-npm-1.29.1-ff37db4eea.patch" - react: "npm:18.3.1" + react: "npm:19.0.0" rimraf: "npm:6.0.1" serialize-error: "npm:11.0.3" tsx: "npm:4.19.2" typescript: "npm:5.7.2" - uuid: "npm:9.0.1" + uuid: "npm:11.0.3" vitest: "npm:2.1.8" languageName: unknown linkType: soft @@ -9528,12 +9516,11 @@ __metadata: "@local/hash-graph-client": "npm:0.0.0-private" "@local/hash-graph-sdk": "npm:0.0.0-private" "@local/hash-graph-types": "npm:0.0.0-private" - "@types/uuid": "npm:10.0.0" "@vitest/coverage-istanbul": "npm:2.1.8" eslint: "npm:9.17.0" rimraf: "npm:6.0.1" typescript: "npm:5.7.2" - uuid: "npm:9.0.1" + uuid: "npm:11.0.3" vitest: "npm:2.1.8" languageName: unknown linkType: soft @@ -9555,7 +9542,7 @@ __metadata: version: 0.0.0-use.local resolution: "@local/repo-chores@workspace:libs/@local/repo-chores/node" dependencies: - "@blockprotocol/core": "npm:0.1.3" + "@blockprotocol/core": "patch:@blockprotocol/core@npm%3A0.1.3#~/.yarn/patches/@blockprotocol-core-npm-0.1.3-7c4f062e15.patch" "@local/eslint": "npm:0.0.0-private" "@local/tsconfig": "npm:0.0.0-private" "@types/fs-extra": "npm:9.0.13" @@ -9774,71 +9761,6 @@ __metadata: languageName: node linkType: hard -"@motionone/animation@npm:^10.12.0": - version: 10.18.0 - resolution: "@motionone/animation@npm:10.18.0" - dependencies: - "@motionone/easing": "npm:^10.18.0" - "@motionone/types": "npm:^10.17.1" - "@motionone/utils": "npm:^10.18.0" - tslib: "npm:^2.3.1" - checksum: 10c0/83c01ab8ecf5fae221e5012116c4c49d4473ba88ba22197e1d8c1e39364c5c6b9c5271e57ae716fd21f92314d15c63788c48d0a30872ee8d72337e1d98b46834 - languageName: node - linkType: hard - -"@motionone/dom@npm:10.12.0": - version: 10.12.0 - resolution: "@motionone/dom@npm:10.12.0" - dependencies: - "@motionone/animation": "npm:^10.12.0" - "@motionone/generators": "npm:^10.12.0" - "@motionone/types": "npm:^10.12.0" - "@motionone/utils": "npm:^10.12.0" - hey-listen: "npm:^1.0.8" - tslib: "npm:^2.3.1" - checksum: 10c0/1af6cd8d8518ebbd90d74f15443ad94d7d03bf9e7e1455a5cb6768a53ba8dac6906ca121e9c1f42b8d53a8ab7c19d14e4731c10231b5dc7102628f32659faea2 - languageName: node - linkType: hard - -"@motionone/easing@npm:^10.18.0": - version: 10.18.0 - resolution: "@motionone/easing@npm:10.18.0" - dependencies: - "@motionone/utils": "npm:^10.18.0" - tslib: "npm:^2.3.1" - checksum: 10c0/0adf9b7086b0f569d28886890cc0725a489285f2debfcaf27c1c15dfef5736c9f4207cfda14c71b3275f8163777320cb7ff48ad263c7f4ccd31e12a5afc1a952 - languageName: node - linkType: hard - -"@motionone/generators@npm:^10.12.0": - version: 10.18.0 - resolution: "@motionone/generators@npm:10.18.0" - dependencies: - "@motionone/types": "npm:^10.17.1" - "@motionone/utils": "npm:^10.18.0" - tslib: "npm:^2.3.1" - checksum: 10c0/7ed7dda5ac58cd3e8dd347b5539d242d96e02ee16fef921c8d14295a806e6bc429a15291461ec078977bd5f6162677225addd707ca79f808e65bc3599c45c0e9 - languageName: node - linkType: hard - -"@motionone/types@npm:^10.12.0, @motionone/types@npm:^10.17.1": - version: 10.17.1 - resolution: "@motionone/types@npm:10.17.1" - checksum: 10c0/f7b16cd4f0feda0beac10173afa6de7384722f9f24767f78b7aa90f15b8a89d584073a64387b015a8e015a962fa4b47a8ce23621f47708a08676b12bb0d43bbb - languageName: node - linkType: hard - -"@motionone/utils@npm:^10.12.0, @motionone/utils@npm:^10.18.0": - version: 10.18.0 - resolution: "@motionone/utils@npm:10.18.0" - dependencies: - "@motionone/types": "npm:^10.17.1" - hey-listen: "npm:^1.0.8" - tslib: "npm:^2.3.1" - checksum: 10c0/db57dbb6a131fab36dc1eb4e1f3a4575ca97563221663adce54c138de1e1a9eaf4a4a51ddf99fdab0341112159e0190b35cdeddfdbd08ba3ad1e35886a5324bb - languageName: node - linkType: hard - "@msgpackr-extract/msgpackr-extract-darwin-arm64@npm:3.0.3": version: 3.0.3 resolution: "@msgpackr-extract/msgpackr-extract-darwin-arm64@npm:3.0.3" @@ -10211,26 +10133,19 @@ __metadata: languageName: node linkType: hard -"@next/bundle-analyzer@npm:12.3.4": - version: 12.3.4 - resolution: "@next/bundle-analyzer@npm:12.3.4" +"@next/bundle-analyzer@npm:15.1.0": + version: 15.1.0 + resolution: "@next/bundle-analyzer@npm:15.1.0" dependencies: - webpack-bundle-analyzer: "npm:4.3.0" - checksum: 10c0/10e0443e8244a29075bb476b980f37073a554c9722c9c91832d4b36e5b49b6d62c9ec64a5753ede700cba325201adfc8187f19470468de9bb4f0422045fc8666 + webpack-bundle-analyzer: "npm:4.10.1" + checksum: 10c0/6a71ecbc295b86b431d8be860645d590740095207e7240d37db7585b8bb638406e58d3409a55efb5132723eec2a0ba6bd6011186058a54a10e3f559e05d1be1d languageName: node linkType: hard -"@next/env@npm:13.5.5": - version: 13.5.5 - resolution: "@next/env@npm:13.5.5" - checksum: 10c0/6d206625c78c223fdeea6c19a56d88be5e46e85a9651d7a8027957bf42f1504e8f4129083a3ce46b3dd83ec5666bfec38e06eed3d84228a68f4533e63a1255a6 - languageName: node - linkType: hard - -"@next/env@npm:15.0.3": - version: 15.0.3 - resolution: "@next/env@npm:15.0.3" - checksum: 10c0/63582fed80d6a28fff102c935095da71fd57ddf6b5f5d564e85ebdefdeb93298f7f7cf7d813c75b460c6627106717ea959b4c232939e7abb97d73d8b8467d4cd +"@next/env@npm:15.1.0": + version: 15.1.0 + resolution: "@next/env@npm:15.1.0" + checksum: 10c0/5c6d66bcc652696a8dbbe1596194b612dd492e8b27041b738fcb63aa08669754bd7bdd3664ec8b756029a7d7b22187e646409fc1651c5e95d3ae39c3cca62c3d languageName: node linkType: hard @@ -10243,121 +10158,58 @@ __metadata: languageName: node linkType: hard -"@next/swc-darwin-arm64@npm:13.5.5": - version: 13.5.5 - resolution: "@next/swc-darwin-arm64@npm:13.5.5" - conditions: os=darwin & cpu=arm64 - languageName: node - linkType: hard - -"@next/swc-darwin-arm64@npm:15.0.3": - version: 15.0.3 - resolution: "@next/swc-darwin-arm64@npm:15.0.3" +"@next/swc-darwin-arm64@npm:15.1.0": + version: 15.1.0 + resolution: "@next/swc-darwin-arm64@npm:15.1.0" conditions: os=darwin & cpu=arm64 languageName: node linkType: hard -"@next/swc-darwin-x64@npm:13.5.5": - version: 13.5.5 - resolution: "@next/swc-darwin-x64@npm:13.5.5" +"@next/swc-darwin-x64@npm:15.1.0": + version: 15.1.0 + resolution: "@next/swc-darwin-x64@npm:15.1.0" conditions: os=darwin & cpu=x64 languageName: node linkType: hard -"@next/swc-darwin-x64@npm:15.0.3": - version: 15.0.3 - resolution: "@next/swc-darwin-x64@npm:15.0.3" - conditions: os=darwin & cpu=x64 - languageName: node - linkType: hard - -"@next/swc-linux-arm64-gnu@npm:13.5.5": - version: 13.5.5 - resolution: "@next/swc-linux-arm64-gnu@npm:13.5.5" - conditions: os=linux & cpu=arm64 & libc=glibc - languageName: node - linkType: hard - -"@next/swc-linux-arm64-gnu@npm:15.0.3": - version: 15.0.3 - resolution: "@next/swc-linux-arm64-gnu@npm:15.0.3" +"@next/swc-linux-arm64-gnu@npm:15.1.0": + version: 15.1.0 + resolution: "@next/swc-linux-arm64-gnu@npm:15.1.0" conditions: os=linux & cpu=arm64 & libc=glibc languageName: node linkType: hard -"@next/swc-linux-arm64-musl@npm:13.5.5": - version: 13.5.5 - resolution: "@next/swc-linux-arm64-musl@npm:13.5.5" +"@next/swc-linux-arm64-musl@npm:15.1.0": + version: 15.1.0 + resolution: "@next/swc-linux-arm64-musl@npm:15.1.0" conditions: os=linux & cpu=arm64 & libc=musl languageName: node linkType: hard -"@next/swc-linux-arm64-musl@npm:15.0.3": - version: 15.0.3 - resolution: "@next/swc-linux-arm64-musl@npm:15.0.3" - conditions: os=linux & cpu=arm64 & libc=musl - languageName: node - linkType: hard - -"@next/swc-linux-x64-gnu@npm:13.5.5": - version: 13.5.5 - resolution: "@next/swc-linux-x64-gnu@npm:13.5.5" - conditions: os=linux & cpu=x64 & libc=glibc - languageName: node - linkType: hard - -"@next/swc-linux-x64-gnu@npm:15.0.3": - version: 15.0.3 - resolution: "@next/swc-linux-x64-gnu@npm:15.0.3" +"@next/swc-linux-x64-gnu@npm:15.1.0": + version: 15.1.0 + resolution: "@next/swc-linux-x64-gnu@npm:15.1.0" conditions: os=linux & cpu=x64 & libc=glibc languageName: node linkType: hard -"@next/swc-linux-x64-musl@npm:13.5.5": - version: 13.5.5 - resolution: "@next/swc-linux-x64-musl@npm:13.5.5" +"@next/swc-linux-x64-musl@npm:15.1.0": + version: 15.1.0 + resolution: "@next/swc-linux-x64-musl@npm:15.1.0" conditions: os=linux & cpu=x64 & libc=musl languageName: node linkType: hard -"@next/swc-linux-x64-musl@npm:15.0.3": - version: 15.0.3 - resolution: "@next/swc-linux-x64-musl@npm:15.0.3" - conditions: os=linux & cpu=x64 & libc=musl - languageName: node - linkType: hard - -"@next/swc-win32-arm64-msvc@npm:13.5.5": - version: 13.5.5 - resolution: "@next/swc-win32-arm64-msvc@npm:13.5.5" +"@next/swc-win32-arm64-msvc@npm:15.1.0": + version: 15.1.0 + resolution: "@next/swc-win32-arm64-msvc@npm:15.1.0" conditions: os=win32 & cpu=arm64 languageName: node linkType: hard -"@next/swc-win32-arm64-msvc@npm:15.0.3": - version: 15.0.3 - resolution: "@next/swc-win32-arm64-msvc@npm:15.0.3" - conditions: os=win32 & cpu=arm64 - languageName: node - linkType: hard - -"@next/swc-win32-ia32-msvc@npm:13.5.5": - version: 13.5.5 - resolution: "@next/swc-win32-ia32-msvc@npm:13.5.5" - conditions: os=win32 & cpu=ia32 - languageName: node - linkType: hard - -"@next/swc-win32-x64-msvc@npm:13.5.5": - version: 13.5.5 - resolution: "@next/swc-win32-x64-msvc@npm:13.5.5" - conditions: os=win32 & cpu=x64 - languageName: node - linkType: hard - -"@next/swc-win32-x64-msvc@npm:15.0.3": - version: 15.0.3 - resolution: "@next/swc-win32-x64-msvc@npm:15.0.3" +"@next/swc-win32-x64-msvc@npm:15.1.0": + version: 15.1.0 + resolution: "@next/swc-win32-x64-msvc@npm:15.1.0" conditions: os=win32 & cpu=x64 languageName: node linkType: hard @@ -11392,7 +11244,7 @@ __metadata: languageName: node linkType: hard -"@polka/url@npm:^1.0.0-next.20, @polka/url@npm:^1.0.0-next.24": +"@polka/url@npm:^1.0.0-next.24": version: 1.0.0-next.28 resolution: "@polka/url@npm:1.0.0-next.28" checksum: 10c0/acc5ea62597e4da2fb42dbee02749d07f102ae7d6d2c966bf7e423c79cd65d1621da305af567e6e7c232f3b565e242d1ec932cbb3dcc0db1508d02e9a2cafa2e @@ -16331,21 +16183,12 @@ __metadata: languageName: node linkType: hard -"@swc/helpers@npm:0.5.13": - version: 0.5.13 - resolution: "@swc/helpers@npm:0.5.13" - dependencies: - tslib: "npm:^2.4.0" - checksum: 10c0/b9df578401fc62405da9a6c31e79e447a2fd90f68b25b1daee12f2caf2821991bb89106f0397bc1acb4c4d84a8ce079d04b60b65f534496952e3bf8c9a52f40f - languageName: node - linkType: hard - -"@swc/helpers@npm:0.5.2": - version: 0.5.2 - resolution: "@swc/helpers@npm:0.5.2" +"@swc/helpers@npm:0.5.15": + version: 0.5.15 + resolution: "@swc/helpers@npm:0.5.15" dependencies: - tslib: "npm:^2.4.0" - checksum: 10c0/b6fa49bcf6c00571d0eb7837b163f8609960d4d77538160585e27ed167361e9776bd6e5eb9646ffac2fb4d43c58df9ca50dab9d96ab097e6591bc82a75fd1164 + tslib: "npm:^2.8.0" + checksum: 10c0/33002f74f6f885f04c132960835fdfc474186983ea567606db62e86acd0680ca82f34647e8e610f4e1e422d1c16fce729dde22cd3b797ab1fd9061a825dabca4 languageName: node linkType: hard @@ -16900,14 +16743,13 @@ __metadata: "@rollup/plugin-node-resolve": "npm:16.0.0" "@rollup/plugin-typescript": "npm:12.1.2" "@types/dotenv-flow": "npm:3.3.3" - "@types/uuid": "npm:10.0.0" artillery: "npm:2.0.20" dotenv-flow: "npm:3.3.0" eslint: "npm:9.17.0" rimraf: "npm:6.0.1" rollup: "npm:4.28.1" typescript: "npm:5.7.2" - uuid: "npm:9.0.1" + uuid: "npm:11.0.3" languageName: unknown linkType: soft @@ -18430,7 +18272,7 @@ __metadata: languageName: node linkType: hard -"@types/prop-types@npm:*, @types/prop-types@npm:^15.7.12": +"@types/prop-types@npm:^15.7.12": version: 15.7.13 resolution: "@types/prop-types@npm:15.7.13" checksum: 10c0/1b20fc67281902c6743379960247bc161f3f0406ffc0df8e7058745a85ea1538612109db0406290512947f9632fe9e10e7337bf0ce6338a91d6c948df16a7c61 @@ -18472,12 +18314,12 @@ __metadata: languageName: node linkType: hard -"@types/react-dom@npm:18.3.5": - version: 18.3.5 - resolution: "@types/react-dom@npm:18.3.5" +"@types/react-dom@npm:19.0.2": + version: 19.0.2 + resolution: "@types/react-dom@npm:19.0.2" peerDependencies: - "@types/react": ^18.0.0 - checksum: 10c0/b163d35a6b32a79f5782574a7aeb12a31a647e248792bf437e6d596e2676961c394c5e3c6e91d1ce44ae90441dbaf93158efb4f051c0d61e2612f1cb04ce4faa + "@types/react": ^19.0.0 + checksum: 10c0/3d0c7b78dbe8df64ea769f30af990a5950173a8321c745fe11094d765423f7964c3519dca6e7cd36b4be6521c8efc690bdd3b79b327b229dd1e9d5a8bad677dd languageName: node linkType: hard @@ -18539,13 +18381,12 @@ __metadata: languageName: node linkType: hard -"@types/react@npm:18.3.17": - version: 18.3.17 - resolution: "@types/react@npm:18.3.17" +"@types/react@npm:19.0.1": + version: 19.0.1 + resolution: "@types/react@npm:19.0.1" dependencies: - "@types/prop-types": "npm:*" csstype: "npm:^3.0.2" - checksum: 10c0/475191e9cd0ab5bef35cc1868295d6526cd78b25c1bb816f0747a1e92261688305f81c0e29aff52e6ea70397f133e34c399dc936cb5072f1acf465d9daacc0da + checksum: 10c0/25eb69114abb9a6d5fc4414ee584388275bbc9ac32976449cf58b95fe9880efe6b3f936c3842be9bed8c571546a9752e8d3e2095288381e9c809269f5f574f2e languageName: node linkType: hard @@ -18756,13 +18597,6 @@ __metadata: languageName: node linkType: hard -"@types/uuid@npm:10.0.0": - version: 10.0.0 - resolution: "@types/uuid@npm:10.0.0" - checksum: 10c0/9a1404bf287164481cb9b97f6bb638f78f955be57c40c6513b7655160beb29df6f84c915aaf4089a1559c216557dc4d2f79b48d978742d3ae10b937420ddac60 - languageName: node - linkType: hard - "@types/uuid@npm:^9.0.1": version: 9.0.8 resolution: "@types/uuid@npm:9.0.8" @@ -22281,7 +22115,7 @@ __metadata: languageName: node linkType: hard -"caniuse-lite@npm:^1.0.30001406, caniuse-lite@npm:^1.0.30001579, caniuse-lite@npm:^1.0.30001669": +"caniuse-lite@npm:^1.0.30001579, caniuse-lite@npm:^1.0.30001669": version: 1.0.30001684 resolution: "caniuse-lite@npm:1.0.30001684" checksum: 10c0/446485ca3d9caf408a339a44636a86a2b119ec247492393ae661cd93dccd6668401dd2dfec1e149be4e44563cd1e23351b44453a52fa2c2f19e2bf3287c865f6 @@ -28670,33 +28504,25 @@ __metadata: languageName: node linkType: hard -"framer-motion@npm:6.5.1": - version: 6.5.1 - resolution: "framer-motion@npm:6.5.1" - dependencies: - "@emotion/is-prop-valid": "npm:^0.8.2" - "@motionone/dom": "npm:10.12.0" - framesync: "npm:6.0.1" - hey-listen: "npm:^1.0.8" - popmotion: "npm:11.0.3" - style-value-types: "npm:5.0.0" - tslib: "npm:^2.1.0" +"framer-motion@npm:11.15.0": + version: 11.15.0 + resolution: "framer-motion@npm:11.15.0" + dependencies: + motion-dom: "npm:^11.14.3" + motion-utils: "npm:^11.14.3" + tslib: "npm:^2.4.0" peerDependencies: - react: ">=16.8 || ^17.0.0 || ^18.0.0" - react-dom: ">=16.8 || ^17.0.0 || ^18.0.0" - dependenciesMeta: + "@emotion/is-prop-valid": "*" + react: ^18.0.0 || ^19.0.0 + react-dom: ^18.0.0 || ^19.0.0 + peerDependenciesMeta: "@emotion/is-prop-valid": optional: true - checksum: 10c0/69d64f7ac878eb5a0d90f1ccbaaee76f7731b276c4369fdce7d283fa92cca35ea05c42ad2da0c6c0ab4bb180b7fa4f511b6928bdb43818f6feaf245531d3df5a - languageName: node - linkType: hard - -"framesync@npm:6.0.1": - version: 6.0.1 - resolution: "framesync@npm:6.0.1" - dependencies: - tslib: "npm:^2.1.0" - checksum: 10c0/ce84ce548a8612be070204b9cf3ce7258acead2d51df05586995340e501d1439dfc1f9402ede921a9c0dde854d80fd46e97c699a3657f8d7abd5bc705553bf2b + react: + optional: true + react-dom: + optional: true + checksum: 10c0/59f1c1eea09a5cbda346624a7d700bdb1ccff8a8528ed145009db974283064c3a4e55ca9eaaf4950494f254f6233c37634735b9bd8463b25ffeef624030894d6 languageName: node linkType: hard @@ -30206,13 +30032,6 @@ __metadata: languageName: node linkType: hard -"hey-listen@npm:^1.0.8": - version: 1.0.8 - resolution: "hey-listen@npm:1.0.8" - checksum: 10c0/38db3028b4756f3d536c0f6a92da53bad577ab649b06dddfd0a4d953f9a46bbc6a7f693c8c5b466a538d6d23dbc469260c848427f0de14198a2bbecbac37b39e - languageName: node - linkType: hard - "highlight.js@npm:^10.4.1, highlight.js@npm:~10.7.0": version: 10.7.3 resolution: "highlight.js@npm:10.7.3" @@ -30845,13 +30664,6 @@ __metadata: languageName: node linkType: hard -"id128@npm:1.6.6": - version: 1.6.6 - resolution: "id128@npm:1.6.6" - checksum: 10c0/89859015d58376091a52749830f1651e5459cddbcef447e80f17525a1c69370885aff4bdb4fac48065dc0d7798659efbe6597b3733cc985904b1ff5e909eb99b - languageName: node - linkType: hard - "idb@npm:^7.1.0, idb@npm:^7.1.1": version: 7.1.1 resolution: "idb@npm:7.1.1" @@ -36780,6 +36592,20 @@ __metadata: languageName: node linkType: hard +"motion-dom@npm:^11.14.3": + version: 11.14.3 + resolution: "motion-dom@npm:11.14.3" + checksum: 10c0/14989aba2981dcf618dc77d202ac35325366e645fd9e57c6942d88d0696263bbe7d0680da2e5f84e93339a67255bdbfebb8a4994a46584a661dd9a1e136fa7a1 + languageName: node + linkType: hard + +"motion-utils@npm:^11.14.3": + version: 11.14.3 + resolution: "motion-utils@npm:11.14.3" + checksum: 10c0/7459bcb27311b72b416b2618cbfd56bad7d0fbec27736529e3f45a561fa78c43bf82e05338d9d9b765649b57d1c693821e83b30c6ba449d6f7f66c5245f072fb + languageName: node + linkType: hard + "mqtt-packet@npm:^9.0.1": version: 9.0.1 resolution: "mqtt-packet@npm:9.0.1" @@ -36826,13 +36652,6 @@ __metadata: languageName: node linkType: hard -"mrmime@npm:^1.0.0": - version: 1.0.1 - resolution: "mrmime@npm:1.0.1" - checksum: 10c0/ab071441da76fd23b3b0d1823d77aacf8679d379a4a94cacd83e487d3d906763b277f3203a594c613602e31ab5209c26a8119b0477c4541ef8555b293a9db6d3 - languageName: node - linkType: hard - "mrmime@npm:^2.0.0": version: 2.0.0 resolution: "mrmime@npm:2.0.0" @@ -37124,76 +36943,21 @@ __metadata: languageName: node linkType: hard -"next@npm:13.5.5": - version: 13.5.5 - resolution: "next@npm:13.5.5" +"next@npm:15.1.0, next@npm:>=12.0.10": + version: 15.1.0 + resolution: "next@npm:15.1.0" dependencies: - "@next/env": "npm:13.5.5" - "@next/swc-darwin-arm64": "npm:13.5.5" - "@next/swc-darwin-x64": "npm:13.5.5" - "@next/swc-linux-arm64-gnu": "npm:13.5.5" - "@next/swc-linux-arm64-musl": "npm:13.5.5" - "@next/swc-linux-x64-gnu": "npm:13.5.5" - "@next/swc-linux-x64-musl": "npm:13.5.5" - "@next/swc-win32-arm64-msvc": "npm:13.5.5" - "@next/swc-win32-ia32-msvc": "npm:13.5.5" - "@next/swc-win32-x64-msvc": "npm:13.5.5" - "@swc/helpers": "npm:0.5.2" - busboy: "npm:1.6.0" - caniuse-lite: "npm:^1.0.30001406" - postcss: "npm:8.4.31" - styled-jsx: "npm:5.1.1" - watchpack: "npm:2.4.0" - peerDependencies: - "@opentelemetry/api": ^1.1.0 - react: ^18.2.0 - react-dom: ^18.2.0 - sass: ^1.3.0 - dependenciesMeta: - "@next/swc-darwin-arm64": - optional: true - "@next/swc-darwin-x64": - optional: true - "@next/swc-linux-arm64-gnu": - optional: true - "@next/swc-linux-arm64-musl": - optional: true - "@next/swc-linux-x64-gnu": - optional: true - "@next/swc-linux-x64-musl": - optional: true - "@next/swc-win32-arm64-msvc": - optional: true - "@next/swc-win32-ia32-msvc": - optional: true - "@next/swc-win32-x64-msvc": - optional: true - peerDependenciesMeta: - "@opentelemetry/api": - optional: true - sass: - optional: true - bin: - next: dist/bin/next - checksum: 10c0/21d8546a4941ef43fb4b8cde7cd62cceee13f27b34a92bbc48daf10943485bebb9e5af3c06c95dd3d8a483d0d05faa675eaba81c85e063ff1cf2bd5092d5e720 - languageName: node - linkType: hard - -"next@npm:>=12.0.10": - version: 15.0.3 - resolution: "next@npm:15.0.3" - dependencies: - "@next/env": "npm:15.0.3" - "@next/swc-darwin-arm64": "npm:15.0.3" - "@next/swc-darwin-x64": "npm:15.0.3" - "@next/swc-linux-arm64-gnu": "npm:15.0.3" - "@next/swc-linux-arm64-musl": "npm:15.0.3" - "@next/swc-linux-x64-gnu": "npm:15.0.3" - "@next/swc-linux-x64-musl": "npm:15.0.3" - "@next/swc-win32-arm64-msvc": "npm:15.0.3" - "@next/swc-win32-x64-msvc": "npm:15.0.3" + "@next/env": "npm:15.1.0" + "@next/swc-darwin-arm64": "npm:15.1.0" + "@next/swc-darwin-x64": "npm:15.1.0" + "@next/swc-linux-arm64-gnu": "npm:15.1.0" + "@next/swc-linux-arm64-musl": "npm:15.1.0" + "@next/swc-linux-x64-gnu": "npm:15.1.0" + "@next/swc-linux-x64-musl": "npm:15.1.0" + "@next/swc-win32-arm64-msvc": "npm:15.1.0" + "@next/swc-win32-x64-msvc": "npm:15.1.0" "@swc/counter": "npm:0.1.3" - "@swc/helpers": "npm:0.5.13" + "@swc/helpers": "npm:0.5.15" busboy: "npm:1.6.0" caniuse-lite: "npm:^1.0.30001579" postcss: "npm:8.4.31" @@ -37203,8 +36967,8 @@ __metadata: "@opentelemetry/api": ^1.1.0 "@playwright/test": ^1.41.2 babel-plugin-react-compiler: "*" - react: ^18.2.0 || 19.0.0-rc-66855b96-20241106 - react-dom: ^18.2.0 || 19.0.0-rc-66855b96-20241106 + react: ^18.2.0 || 19.0.0-rc-de68d2f4-20241204 || ^19.0.0 + react-dom: ^18.2.0 || 19.0.0-rc-de68d2f4-20241204 || ^19.0.0 sass: ^1.3.0 dependenciesMeta: "@next/swc-darwin-arm64": @@ -37236,7 +37000,7 @@ __metadata: optional: true bin: next: dist/bin/next - checksum: 10c0/c5f6a57acb5f29063abc82d4d4417a048d0c2d5216d6ded6aa3fe32d60bb4835ed57dd34e2ef8fdda15579e97205820dc25bf34556b1d942a01a33d9ae7f88db + checksum: 10c0/652a48a6cf6329753da72bec9777c153e88aee8dd1bb709c2c8e6b31b678514d50501e1a58e065464416998bb5d872ce0eaf769e7aacebc2821d36359e63c225 languageName: node linkType: hard @@ -39510,18 +39274,6 @@ __metadata: languageName: node linkType: hard -"popmotion@npm:11.0.3": - version: 11.0.3 - resolution: "popmotion@npm:11.0.3" - dependencies: - framesync: "npm:6.0.1" - hey-listen: "npm:^1.0.8" - style-value-types: "npm:5.0.0" - tslib: "npm:^2.1.0" - checksum: 10c0/ed196cf034c199a2ab6095f047924b38e24f386c33a182970ad6e1769002b72adff34a72ba7ab2cf34ff5bbfd711ef4caf2e9843ebb7a5c9cafa27c50e525f70 - languageName: node - linkType: hard - "portkey-ai@npm:0.1.16": version: 0.1.16 resolution: "portkey-ai@npm:0.1.16" @@ -40918,15 +40670,14 @@ __metadata: languageName: node linkType: hard -"react-dom@npm:18.3.1": - version: 18.3.1 - resolution: "react-dom@npm:18.3.1" +"react-dom@npm:19.0.0": + version: 19.0.0 + resolution: "react-dom@npm:19.0.0" dependencies: - loose-envify: "npm:^1.1.0" - scheduler: "npm:^0.23.2" + scheduler: "npm:^0.25.0" peerDependencies: - react: ^18.3.1 - checksum: 10c0/a752496c1941f958f2e8ac56239172296fcddce1365ce45222d04a1947e0cc5547df3e8447f855a81d6d39f008d7c32eab43db3712077f09e3f67c4874973e85 + react: ^19.0.0 + checksum: 10c0/a36ce7ab507b237ae2759c984cdaad4af4096d8199fb65b3815c16825e5cfeb7293da790a3fc2184b52bfba7ba3ff31c058c01947aff6fd1a3701632aabaa6a9 languageName: node linkType: hard @@ -41461,12 +41212,10 @@ __metadata: languageName: node linkType: hard -"react@npm:18.3.1": - version: 18.3.1 - resolution: "react@npm:18.3.1" - dependencies: - loose-envify: "npm:^1.1.0" - checksum: 10c0/283e8c5efcf37802c9d1ce767f302dd569dd97a70d9bb8c7be79a789b9902451e0d16334b05d73299b20f048cbc3c7d288bbbde10b701fa194e2089c237dbea3 +"react@npm:19.0.0": + version: 19.0.0 + resolution: "react@npm:19.0.0" + checksum: 10c0/9cad8f103e8e3a16d15cb18a0d8115d8bd9f9e1ce3420310aea381eb42aa0a4f812cf047bb5441349257a05fba8a291515691e3cb51267279b2d2c3253f38471 languageName: node linkType: hard @@ -42924,6 +42673,13 @@ __metadata: languageName: node linkType: hard +"scheduler@npm:^0.25.0": + version: 0.25.0 + resolution: "scheduler@npm:0.25.0" + checksum: 10c0/a4bb1da406b613ce72c1299db43759526058fdcc413999c3c3e0db8956df7633acf395cb20eb2303b6a65d658d66b6585d344460abaee8080b4aa931f10eaafe + languageName: node + linkType: hard + "schema-utils@npm:^2.6.5": version: 2.7.1 resolution: "schema-utils@npm:2.7.1" @@ -43646,17 +43402,6 @@ __metadata: languageName: node linkType: hard -"sirv@npm:^1.0.7": - version: 1.0.19 - resolution: "sirv@npm:1.0.19" - dependencies: - "@polka/url": "npm:^1.0.0-next.20" - mrmime: "npm:^1.0.0" - totalist: "npm:^1.0.0" - checksum: 10c0/393cc0471e82d3e754a8c1b2b348a86249db1f686aeb11c17e4217326a8b1a96029d9f1b58362ebb3e511b7b98c47cd43c4305dde98322bb1259d07dec2d4908 - languageName: node - linkType: hard - "sirv@npm:^2.0.3": version: 2.0.4 resolution: "sirv@npm:2.0.4" @@ -44799,16 +44544,6 @@ __metadata: languageName: node linkType: hard -"style-value-types@npm:5.0.0": - version: 5.0.0 - resolution: "style-value-types@npm:5.0.0" - dependencies: - hey-listen: "npm:^1.0.8" - tslib: "npm:^2.1.0" - checksum: 10c0/a7b693269d48c0cab73da6c88eade845e71b5f330541a9ccb6a065468739d9bafdeb34f94fb89581931371275846da53e35989218cbc0c2d1a38f127e4d765fd - languageName: node - linkType: hard - "style-vendorizer@npm:^2.0.0": version: 2.2.3 resolution: "style-vendorizer@npm:2.2.3" @@ -44850,22 +44585,6 @@ __metadata: languageName: node linkType: hard -"styled-jsx@npm:5.1.1": - version: 5.1.1 - resolution: "styled-jsx@npm:5.1.1" - dependencies: - client-only: "npm:0.0.1" - peerDependencies: - react: ">= 16.8.0 || 17.x.x || ^18.0.0-0" - peerDependenciesMeta: - "@babel/core": - optional: true - babel-plugin-macros: - optional: true - checksum: 10c0/42655cdadfa5388f8a48bb282d6b450df7d7b8cf066ac37038bd0499d3c9f084815ebd9ff9dfa12a218fd4441338851db79603498d7557207009c1cf4d609835 - languageName: node - linkType: hard - "styled-jsx@npm:5.1.6, styled-jsx@npm:^5.1.0": version: 5.1.6 resolution: "styled-jsx@npm:5.1.6" @@ -45760,13 +45479,6 @@ __metadata: languageName: node linkType: hard -"totalist@npm:^1.0.0": - version: 1.1.0 - resolution: "totalist@npm:1.1.0" - checksum: 10c0/2adbd4501c8290c2a96617a83dc67dfdd02bcbd360032017e27ccf27bbb09649bbe8dad1c45d97be6874281178aca5b3f62ed059d1eeda77c479cfb8eb3a9266 - languageName: node - linkType: hard - "totalist@npm:^3.0.0": version: 3.0.1 resolution: "totalist@npm:3.0.1" @@ -46125,7 +45837,7 @@ __metadata: languageName: node linkType: hard -"tslib@npm:2.8.1, tslib@npm:^2.0.0, tslib@npm:^2.0.1, tslib@npm:^2.0.3, tslib@npm:^2.1.0, tslib@npm:^2.2.0, tslib@npm:^2.3.0, tslib@npm:^2.3.1, tslib@npm:^2.4.0, tslib@npm:^2.5.0, tslib@npm:^2.6.2, tslib@npm:^2.6.3, tslib@npm:^2.7.0, tslib@npm:^2.8.1": +"tslib@npm:2.8.1, tslib@npm:^2.0.0, tslib@npm:^2.0.1, tslib@npm:^2.0.3, tslib@npm:^2.1.0, tslib@npm:^2.2.0, tslib@npm:^2.3.0, tslib@npm:^2.3.1, tslib@npm:^2.4.0, tslib@npm:^2.5.0, tslib@npm:^2.6.2, tslib@npm:^2.6.3, tslib@npm:^2.7.0, tslib@npm:^2.8.0, tslib@npm:^2.8.1": version: 2.8.1 resolution: "tslib@npm:2.8.1" checksum: 10c0/9c4759110a19c53f992d9aae23aac5ced636e99887b51b9e61def52611732872ff7668757d4e4c61f19691e36f4da981cd9485e869b4a7408d689f6bf1f14e62 @@ -47536,6 +47248,15 @@ __metadata: languageName: node linkType: hard +"uuid@npm:11.0.3, uuid@npm:^11.0.1": + version: 11.0.3 + resolution: "uuid@npm:11.0.3" + bin: + uuid: dist/esm/bin/uuid + checksum: 10c0/cee762fc76d949a2ff9205770334699e0043d52bb766472593a25f150077c9deed821230251ea3d6ab3943a5ea137d2826678797f1d5f6754c7ce5ce27e9f7a6 + languageName: node + linkType: hard + "uuid@npm:8.0.0": version: 8.0.0 resolution: "uuid@npm:8.0.0" @@ -47554,24 +47275,6 @@ __metadata: languageName: node linkType: hard -"uuid@npm:9.0.1, uuid@npm:^9.0.0, uuid@npm:^9.0.1": - version: 9.0.1 - resolution: "uuid@npm:9.0.1" - bin: - uuid: dist/bin/uuid - checksum: 10c0/1607dd32ac7fc22f2d8f77051e6a64845c9bce5cd3dd8aa0070c074ec73e666a1f63c7b4e0f4bf2bc8b9d59dc85a15e17807446d9d2b17c8485fbc2147b27f9b - languageName: node - linkType: hard - -"uuid@npm:^11.0.1": - version: 11.0.3 - resolution: "uuid@npm:11.0.3" - bin: - uuid: dist/esm/bin/uuid - checksum: 10c0/cee762fc76d949a2ff9205770334699e0043d52bb766472593a25f150077c9deed821230251ea3d6ab3943a5ea137d2826678797f1d5f6754c7ce5ce27e9f7a6 - languageName: node - linkType: hard - "uuid@npm:^3.3.2, uuid@npm:^3.4.0": version: 3.4.0 resolution: "uuid@npm:3.4.0" @@ -47581,6 +47284,15 @@ __metadata: languageName: node linkType: hard +"uuid@npm:^9.0.0, uuid@npm:^9.0.1": + version: 9.0.1 + resolution: "uuid@npm:9.0.1" + bin: + uuid: dist/bin/uuid + checksum: 10c0/1607dd32ac7fc22f2d8f77051e6a64845c9bce5cd3dd8aa0070c074ec73e666a1f63c7b4e0f4bf2bc8b9d59dc85a15e17807446d9d2b17c8485fbc2147b27f9b + languageName: node + linkType: hard + "uuidv7@npm:^0.6.3": version: 0.6.3 resolution: "uuidv7@npm:0.6.3" @@ -47954,16 +47666,6 @@ __metadata: languageName: node linkType: hard -"watchpack@npm:2.4.0": - version: 2.4.0 - resolution: "watchpack@npm:2.4.0" - dependencies: - glob-to-regexp: "npm:^0.4.1" - graceful-fs: "npm:^4.1.2" - checksum: 10c0/c5e35f9fb9338d31d2141d9835643c0f49b5f9c521440bb648181059e5940d93dd8ed856aa8a33fbcdd4e121dad63c7e8c15c063cf485429cd9d427be197fe62 - languageName: node - linkType: hard - "watchpack@npm:^2.2.0, watchpack@npm:^2.4.1": version: 2.4.2 resolution: "watchpack@npm:2.4.2" @@ -48077,22 +47779,26 @@ __metadata: languageName: node linkType: hard -"webpack-bundle-analyzer@npm:4.3.0": - version: 4.3.0 - resolution: "webpack-bundle-analyzer@npm:4.3.0" +"webpack-bundle-analyzer@npm:4.10.1": + version: 4.10.1 + resolution: "webpack-bundle-analyzer@npm:4.10.1" dependencies: + "@discoveryjs/json-ext": "npm:0.5.7" acorn: "npm:^8.0.4" acorn-walk: "npm:^8.0.0" - chalk: "npm:^4.1.0" - commander: "npm:^6.2.0" + commander: "npm:^7.2.0" + debounce: "npm:^1.2.1" + escape-string-regexp: "npm:^4.0.0" gzip-size: "npm:^6.0.0" - lodash: "npm:^4.17.20" + html-escaper: "npm:^2.0.2" + is-plain-object: "npm:^5.0.0" opener: "npm:^1.5.2" - sirv: "npm:^1.0.7" + picocolors: "npm:^1.0.0" + sirv: "npm:^2.0.3" ws: "npm:^7.3.1" bin: webpack-bundle-analyzer: lib/bin/analyzer.js - checksum: 10c0/c9d0b2b03f2c23724cdd4a8c96d7a32258f13ebf769ffe3cc2e30a74e8723e4078e801aadbbf3f1bfd3f6486bdecd5acfdd4c23f2b2ae715761de552f6b1f5d0 + checksum: 10c0/6a94c8f6aa03296fb2eb00d6ad3b27bd5c551590fd253772bc61debf3177414d42701014079d4f85c74ba1ca685ae9f0cb4063812b58c21f294d108e9908e5cd languageName: node linkType: hard From aced1b9eff0db0f723800084720e40557d4aa455 Mon Sep 17 00:00:00 2001 From: "renovate[bot]" <29139614+renovate[bot]@users.noreply.github.com> Date: Fri, 20 Dec 2024 16:50:35 +0000 Subject: [PATCH 080/159] Update npm package `webextension-polyfill` to v0.12.0 (#4911) Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com> Co-authored-by: Ciaran Morinan --- .dockerignore | 1 + .gitignore | 1 + ...nsion-polyfill-npm-0.10.4-291152c615.patch | 22 --------------- apps/plugin-browser/package.json | 4 +-- .../one-off/infer-entities-action.tsx | 8 +++--- apps/plugin-browser/src/scripts/background.ts | 15 ++++++++--- .../infer-entities/get-website-content.ts | 7 +++-- apps/plugin-browser/src/scripts/content.ts | 16 ++++++++--- apps/plugin-browser/src/shared/messages.ts | 5 ++++ libs/@local/status/typescript/README.md | 4 +-- libs/@local/status/typescript/package.json | 4 +-- .../status/typescript/{pkg => }/src/main.ts | 4 +-- .../typescript/{pkg => }/src/status-code.ts | 4 +-- .../status/typescript/tsconfig.build.json | 2 +- libs/@local/status/typescript/tsconfig.json | 2 +- .../legacy-base-tsconfig-to-refactor.json | 3 ++- yarn.lock | 27 +++++++------------ 17 files changed, 64 insertions(+), 65 deletions(-) delete mode 100644 .yarn/patches/@types-webextension-polyfill-npm-0.10.4-291152c615.patch rename libs/@local/status/typescript/{pkg => }/src/main.ts (87%) rename libs/@local/status/typescript/{pkg => }/src/status-code.ts (98%) diff --git a/.dockerignore b/.dockerignore index 28069318613..cf10e8046c0 100644 --- a/.dockerignore +++ b/.dockerignore @@ -105,6 +105,7 @@ blocks/**/.env **/dist **/build **/target +**/pkg # vscode config **/.vscode/settings.json diff --git a/.gitignore b/.gitignore index 4c9d2ab525d..8c0a51f5ad3 100644 --- a/.gitignore +++ b/.gitignore @@ -88,6 +88,7 @@ blocks/**/.env **/dist **/build **/target +**/pkg # vscode config **/.vscode/settings.json diff --git a/.yarn/patches/@types-webextension-polyfill-npm-0.10.4-291152c615.patch b/.yarn/patches/@types-webextension-polyfill-npm-0.10.4-291152c615.patch deleted file mode 100644 index 5a34a7e4cb9..00000000000 --- a/.yarn/patches/@types-webextension-polyfill-npm-0.10.4-291152c615.patch +++ /dev/null @@ -1,22 +0,0 @@ -diff --git a/namespaces/runtime.d.ts b/namespaces/runtime.d.ts -index eaeaf9110a189d77894844591c5d575f10585f97..54b2b4ea914139affa3d772a49a60b057df41b76 100644 ---- a/namespaces/runtime.d.ts -+++ b/namespaces/runtime.d.ts -@@ -448,7 +448,7 @@ export namespace Runtime { - * will keep the message channel open to the other end until sendResponse is called). - */ - onMessage: Events.Event< -- (message: any, sender: MessageSender, sendResponse: () => void) => Promise | true | void -+ (message: any, sender: MessageSender, sendResponse: (response: any) => void) => Promise | true | void - >; - - /** -@@ -463,7 +463,7 @@ export namespace Runtime { - * will keep the message channel open to the other end until sendResponse is called). - */ - onMessageExternal: Events.Event< -- (message: any, sender: MessageSender, sendResponse: () => void) => Promise | true | void -+ (message: any, sender: MessageSender, sendResponse: (response: any) => void) => Promise | true | void - >; - - /** diff --git a/apps/plugin-browser/package.json b/apps/plugin-browser/package.json index 4cc21f47074..dbe40ab4b8c 100755 --- a/apps/plugin-browser/package.json +++ b/apps/plugin-browser/package.json @@ -45,7 +45,7 @@ "react": "19.0.0", "react-dom": "19.0.0", "uuid": "11.0.3", - "webextension-polyfill": "0.10.0", + "webextension-polyfill": "0.12.0", "ws": "8.18.0" }, "devDependencies": { @@ -65,7 +65,7 @@ "@types/lodash.debounce": "4.0.9", "@types/react": "19.0.1", "@types/react-dom": "19.0.2", - "@types/webextension-polyfill": "patch:@types/webextension-polyfill@npm%3A0.10.4#~/.yarn/patches/@types-webextension-polyfill-npm-0.10.4-291152c615.patch", + "@types/webextension-polyfill": "0.12.0", "@types/ws": "8.5.13", "babel-loader": "9.2.1", "babel-preset-react-app": "10.0.1", diff --git a/apps/plugin-browser/src/pages/popup/popup-contents/action-center/one-off/infer-entities-action.tsx b/apps/plugin-browser/src/pages/popup/popup-contents/action-center/one-off/infer-entities-action.tsx index dd487e0024a..1563a121ebd 100644 --- a/apps/plugin-browser/src/pages/popup/popup-contents/action-center/one-off/infer-entities-action.tsx +++ b/apps/plugin-browser/src/pages/popup/popup-contents/action-center/one-off/infer-entities-action.tsx @@ -62,10 +62,10 @@ export const InferEntitiesAction = ({ }; try { - const sourceWebPage = await (browser.tabs.sendMessage( - activeTab.id, - message, - ) as Promise); + const sourceWebPage = await browser.tabs.sendMessage< + GetTabContentRequest, + GetTabContentReturn + >(activeTab.id, message); void sendMessageToBackground({ createAs, diff --git a/apps/plugin-browser/src/scripts/background.ts b/apps/plugin-browser/src/scripts/background.ts index 6dd14195db0..fc7adda01ce 100644 --- a/apps/plugin-browser/src/scripts/background.ts +++ b/apps/plugin-browser/src/scripts/background.ts @@ -5,8 +5,8 @@ import { getUser } from "../shared/get-user"; import type { GetTabContentRequest, GetTabContentReturn, - Message, } from "../shared/messages"; +import { isWellFormattedMessage } from "../shared/messages"; import { clearLocalStorage, getFromLocalStorage, @@ -36,7 +36,11 @@ browser.runtime.onInstalled.addListener(({ reason }) => { } }); -browser.runtime.onMessage.addListener(async (message: Message, sender) => { +browser.runtime.onMessage.addListener(async (message, sender) => { + if (!isWellFormattedMessage(message)) { + return `Unrecognised message format ${String(message)}`; + } + if (sender.tab) { // We are not expecting any messages from the content script return; @@ -63,9 +67,12 @@ browser.tabs.onUpdated.addListener((tabId, changeInfo) => { setTimeout(resolve, 2_000); }); - const webPage = await (browser.tabs.sendMessage(tabId, { + const webPage = await browser.tabs.sendMessage< + GetTabContentRequest, + GetTabContentReturn + >(tabId, { type: "get-tab-content", - } satisfies GetTabContentRequest) as Promise); + }); const applicableRules = automaticInferenceConfig.rules.filter( ({ restrictToDomains }) => { diff --git a/apps/plugin-browser/src/scripts/background/infer-entities/get-website-content.ts b/apps/plugin-browser/src/scripts/background/infer-entities/get-website-content.ts index 331e9bbf5f4..56b7aa8ca2b 100644 --- a/apps/plugin-browser/src/scripts/background/infer-entities/get-website-content.ts +++ b/apps/plugin-browser/src/scripts/background/infer-entities/get-website-content.ts @@ -45,9 +45,12 @@ export const getWebsiteContent = async (urls: string[]) => { browser.tabs.onUpdated.addListener(tabChangeListener); }); - const webPage = await (browser.tabs.sendMessage(tab.id, { + const webPage = await browser.tabs.sendMessage< + GetTabContentRequest, + GetTabContentReturn + >(tab.id, { type: "get-tab-content", - } satisfies GetTabContentRequest) as Promise); + }); webPages.push(webPage); diff --git a/apps/plugin-browser/src/scripts/content.ts b/apps/plugin-browser/src/scripts/content.ts index 19fe32bb204..50679f092b6 100644 --- a/apps/plugin-browser/src/scripts/content.ts +++ b/apps/plugin-browser/src/scripts/content.ts @@ -1,6 +1,12 @@ import browser from "webextension-polyfill"; +import { + type GetTabContentReturn, + isWellFormattedMessage, +} from "../shared/messages"; + /** + * @file * Content scripts operate in the context of the webpage itself, for reading and manipulating context. * * They have access to a limited set of browser APIs @@ -10,11 +16,15 @@ import browser from "webextension-polyfill"; * * You must update the extension if you amend this file, from the extensions manager page in the browser. */ -import type { GetTabContentReturn, Message } from "../shared/messages"; -// Promise based API (see: https://github.com/mozilla/webextension-polyfill/?tab=readme-ov-file#using-the-promise-based-apis) +// Promise based API (see: +// https://github.com/mozilla/webextension-polyfill/?tab=readme-ov-file#using-the-promise-based-apis) // eslint-disable-next-line @typescript-eslint/require-await -browser.runtime.onMessage.addListener(async (message: Message, _sender) => { +browser.runtime.onMessage.addListener(async (message) => { + if (!isWellFormattedMessage(message)) { + return `Unrecognised message format ${String(message)}`; + } + if (message.type === "get-tab-content") { const docContent = document.querySelector("main") ?? document.querySelector("body"); diff --git a/apps/plugin-browser/src/shared/messages.ts b/apps/plugin-browser/src/shared/messages.ts index acb8d5c1e24..ab3adeec31a 100644 --- a/apps/plugin-browser/src/shared/messages.ts +++ b/apps/plugin-browser/src/shared/messages.ts @@ -27,3 +27,8 @@ export type Message = | InferEntitiesRequest | CancelInferEntitiesRequest | GetTabContentRequest; + +export const isWellFormattedMessage = (message: unknown): message is Message => + typeof message === "object" && + message !== null && + typeof (message as { type: unknown }).type === "string"; diff --git a/libs/@local/status/typescript/README.md b/libs/@local/status/typescript/README.md index fab1a370869..eb52767b484 100644 --- a/libs/@local/status/typescript/README.md +++ b/libs/@local/status/typescript/README.md @@ -84,9 +84,9 @@ This process works through code-generation using the [`quicktype`](https://githu This package is structured into two main areas: -- [`pkg`](./pkg) contains the TypeScript package that exports the `Status`, `StatusCode` types, and helper functions. - [`rust`](./rust) contains the Rust crate that defines the `Status` and `StatusCode` types. -- [`type-defs`](./type-defs) contains the plain type definitions for `Status`, `StatusCode`, and associated status payloads. These types are defined in TypeScript at the moment but could easily be represented in another schema format. +- [`typescript`](./src) contains the TypeScript package that exports the `Status`, `StatusCode` types, and helper functions. +- [`typescript/type-defs`](./type-defs) contains the plain type definitions for `Status`, `StatusCode`, and associated status payloads. These types are defined in TypeScript at the moment but could easily be represented in another schema format. Note: despite the `type-defs` being in TypeScript, we define them separately to keep a better separation of concerns, and to avoid `quicktype` breaking when it encounters non-type code (e.g. `const` definitions). diff --git a/libs/@local/status/typescript/package.json b/libs/@local/status/typescript/package.json index b9e373ffc5d..c69bcd48c9a 100644 --- a/libs/@local/status/typescript/package.json +++ b/libs/@local/status/typescript/package.json @@ -5,10 +5,10 @@ "license": "(MIT OR Apache-2.0)", "type": "module", "exports": { - ".": "./dist/pkg/src/main.js", + ".": "./dist/src/main.js", "./type-defs/*": "./dist/type-defs/*.js" }, - "types": "./dist/pkg/src/main.d.ts", + "types": "./dist/src/main.d.ts", "scripts": { "build": "rimraf dist && tsc --build tsconfig.build.json", "fix:eslint": "eslint --fix .", diff --git a/libs/@local/status/typescript/pkg/src/main.ts b/libs/@local/status/typescript/src/main.ts similarity index 87% rename from libs/@local/status/typescript/pkg/src/main.ts rename to libs/@local/status/typescript/src/main.ts index 4cfbd8bd692..ffc0d056921 100644 --- a/libs/@local/status/typescript/pkg/src/main.ts +++ b/libs/@local/status/typescript/src/main.ts @@ -3,10 +3,10 @@ * and RPC APIs. */ -import type { Status } from "../../type-defs/status.js"; +import type { Status } from "../type-defs/status.js"; import { StatusCode } from "./status-code.js"; -export type { Status } from "../../type-defs/status.js"; +export type { Status } from "../type-defs/status.js"; export { convertHttpCodeToStatusCode, convertStatusCodeToHttpCode, diff --git a/libs/@local/status/typescript/pkg/src/status-code.ts b/libs/@local/status/typescript/src/status-code.ts similarity index 98% rename from libs/@local/status/typescript/pkg/src/status-code.ts rename to libs/@local/status/typescript/src/status-code.ts index 05a0ac284cc..459ce488326 100644 --- a/libs/@local/status/typescript/pkg/src/status-code.ts +++ b/libs/@local/status/typescript/src/status-code.ts @@ -1,6 +1,6 @@ -import { StatusCode } from "../../type-defs/status-code.js"; +import { StatusCode } from "../type-defs/status-code.js"; -export { StatusCode } from "../../type-defs/status-code.js"; +export { StatusCode } from "../type-defs/status-code.js"; const STATUS_CODE_TO_HTTP_CODE: Record = { OK: 200, diff --git a/libs/@local/status/typescript/tsconfig.build.json b/libs/@local/status/typescript/tsconfig.build.json index df24c1073a1..21689d29105 100644 --- a/libs/@local/status/typescript/tsconfig.build.json +++ b/libs/@local/status/typescript/tsconfig.build.json @@ -1,6 +1,6 @@ { "extends": "./tsconfig.json", - "include": ["pkg", "type-defs"], + "include": ["src", "type-defs"], "compilerOptions": { "declaration": true, "outDir": "dist", diff --git a/libs/@local/status/typescript/tsconfig.json b/libs/@local/status/typescript/tsconfig.json index ab95f2df657..b2d3cc538e3 100644 --- a/libs/@local/status/typescript/tsconfig.json +++ b/libs/@local/status/typescript/tsconfig.json @@ -1,6 +1,6 @@ { "extends": "@local/tsconfig/legacy-base-tsconfig-to-refactor.json", - "include": ["./pkg/src/", "./scripts", "./type-defs", "eslint.config.js"], + "include": ["./src/", "./scripts", "./type-defs", "eslint.config.js"], "compilerOptions": { "module": "NodeNext", "moduleResolution": "NodeNext" diff --git a/libs/@local/tsconfig/legacy-base-tsconfig-to-refactor.json b/libs/@local/tsconfig/legacy-base-tsconfig-to-refactor.json index cbfe08d45c5..a975c50143a 100644 --- a/libs/@local/tsconfig/legacy-base-tsconfig-to-refactor.json +++ b/libs/@local/tsconfig/legacy-base-tsconfig-to-refactor.json @@ -30,7 +30,8 @@ "@local/hash-graph-sdk/*": ["../graph/sdk/typescript/src/*.ts"], "@local/hash-graph-types/*": ["../graph/types/typescript/src/*.ts"], "@local/hash-isomorphic-utils/*": ["../hash-isomorphic-utils/src/*.ts"], - "@local/status": ["../status/typescript/pkg/src/main.ts"], + "@local/status": ["../status/typescript/src/main.ts"], + "@local/status/type-defs/*": ["../status/typescript/src/type-defs/*.ts"], "@local/hash-subgraph": ["../hash-subgraph/src/main.ts"], "@local/hash-subgraph/*": ["../hash-subgraph/src/*.ts"], "@local/harpc-client": ["../harpc/client/typescript/src/index.ts"], diff --git a/yarn.lock b/yarn.lock index 4a0add8a2bd..c65d633368d 100644 --- a/yarn.lock +++ b/yarn.lock @@ -813,7 +813,7 @@ __metadata: "@types/lodash.debounce": "npm:4.0.9" "@types/react": "npm:19.0.1" "@types/react-dom": "npm:19.0.2" - "@types/webextension-polyfill": "patch:@types/webextension-polyfill@npm%3A0.10.4#~/.yarn/patches/@types-webextension-polyfill-npm-0.10.4-291152c615.patch" + "@types/webextension-polyfill": "npm:0.12.0" "@types/ws": "npm:8.5.13" babel-loader: "npm:9.2.1" babel-preset-react-app: "npm:10.0.1" @@ -847,7 +847,7 @@ __metadata: type-fest: "npm:3.13.1" typescript: "npm:5.7.2" uuid: "npm:11.0.3" - webextension-polyfill: "npm:0.10.0" + webextension-polyfill: "npm:0.12.0" webpack: "npm:5.97.1" webpack-cli: "npm:4.10.0" webpack-dev-server: "npm:4.15.2" @@ -18613,17 +18613,10 @@ __metadata: languageName: node linkType: hard -"@types/webextension-polyfill@npm:0.10.4": - version: 0.10.4 - resolution: "@types/webextension-polyfill@npm:0.10.4" - checksum: 10c0/6ae62b0d0b61878c0c7f65ac484b436d8a07e3561ade441a12e363bdc7db7b2675db9f94e3d1e7efd5ad2c0a5ee0818ea5942f06246cc18384b14ec698371253 - languageName: node - linkType: hard - -"@types/webextension-polyfill@patch:@types/webextension-polyfill@npm%3A0.10.4#~/.yarn/patches/@types-webextension-polyfill-npm-0.10.4-291152c615.patch": - version: 0.10.4 - resolution: "@types/webextension-polyfill@patch:@types/webextension-polyfill@npm%3A0.10.4#~/.yarn/patches/@types-webextension-polyfill-npm-0.10.4-291152c615.patch::version=0.10.4&hash=ff32d6" - checksum: 10c0/86fb2c10a438117d9310f3924a5d64f1ce0100a7f539bd6208864af4b7f5a795d8bf27fd25587cb939ea35689ba9daacd15bd07aed4241ec711a7db5812065ad +"@types/webextension-polyfill@npm:0.12.0": + version: 0.12.0 + resolution: "@types/webextension-polyfill@npm:0.12.0" + checksum: 10c0/d8b69620e9af41802a144ddbefcaf1f627856ed1b1ccf42af0b4d546906a738fea01f45efcf4eb9c2e08761e1b3333105026eb7fd4b51cafb5b4e591079faa8c languageName: node linkType: hard @@ -47734,10 +47727,10 @@ __metadata: languageName: node linkType: hard -"webextension-polyfill@npm:0.10.0": - version: 0.10.0 - resolution: "webextension-polyfill@npm:0.10.0" - checksum: 10c0/6a45278f1fed8fbd5355f9b19a7b0b3fadc91fa3a6eef69125a1706bb3efa2181235eefbfb3f538443bb396cfcb97512361551888ce8465c08914431cb2d5b6d +"webextension-polyfill@npm:0.12.0": + version: 0.12.0 + resolution: "webextension-polyfill@npm:0.12.0" + checksum: 10c0/5ace2aaaf6a203515bdd2fb948622f186a5fbb50099b539ce9c0ad54896f9cc1fcc3c0e2a71d1f7071dd7236d7daebba1e0cbcf43bfdfe54361addf0333ee7d1 languageName: node linkType: hard From a11b37061d7a030b28ffdd0abc3ca97ae57ed263 Mon Sep 17 00:00:00 2001 From: "hash-worker[bot]" <180894564+hash-worker[bot]@users.noreply.github.com> Date: Fri, 20 Dec 2024 17:17:27 +0000 Subject: [PATCH 081/159] Update npm package `@types/unist` to v3 (#5044) Co-authored-by: hash-worker[bot] <180894564+hash-worker[bot]@users.noreply.github.com> Co-authored-by: Ciaran Morinan <37743469+CiaranMn@users.noreply.github.com> Co-authored-by: Ciaran Morinan --- apps/hashdotdev/package.json | 2 +- apps/hashdotdev/src/util/image-metadata.ts | 1 + yarn.lock | 6 +++--- 3 files changed, 5 insertions(+), 4 deletions(-) diff --git a/apps/hashdotdev/package.json b/apps/hashdotdev/package.json index c8267ff2162..d7c596c0664 100644 --- a/apps/hashdotdev/package.json +++ b/apps/hashdotdev/package.json @@ -77,7 +77,7 @@ "@types/react": "19.0.1", "@types/react-dom": "19.0.2", "@types/react-html-parser": "2.0.6", - "@types/unist": "2.0.11", + "@types/unist": "3.0.3", "babel-loader": "9.2.1", "chalk": "5.3.0", "eslint": "9.17.0", diff --git a/apps/hashdotdev/src/util/image-metadata.ts b/apps/hashdotdev/src/util/image-metadata.ts index a6ad5506e15..02d08b04941 100644 --- a/apps/hashdotdev/src/util/image-metadata.ts +++ b/apps/hashdotdev/src/util/image-metadata.ts @@ -54,6 +54,7 @@ export const imageMetadata = () => { // Create an array to hold all of the images from the markdown file const images: ImageNode[] = []; + // @ts-expect-error -- mismatched type with next-mdx-remote. have to update that and related deps (e.g. remark-*) visit(tree, "mdxJsxFlowElement", (node) => { // Visit every jsx flow element node in the tree, check if it's an image and push it in the images array if (isImageNode(node)) { diff --git a/yarn.lock b/yarn.lock index c65d633368d..0be7716e6c5 100644 --- a/yarn.lock +++ b/yarn.lock @@ -742,7 +742,7 @@ __metadata: "@types/react": "npm:19.0.1" "@types/react-dom": "npm:19.0.2" "@types/react-html-parser": "npm:2.0.6" - "@types/unist": "npm:2.0.11" + "@types/unist": "npm:3.0.3" axios: "npm:1.7.9" babel-loader: "npm:9.2.1" calculation-block: "npm:0.2.2" @@ -18576,14 +18576,14 @@ __metadata: languageName: node linkType: hard -"@types/unist@npm:*, @types/unist@npm:^3.0.0": +"@types/unist@npm:*, @types/unist@npm:3.0.3, @types/unist@npm:^3.0.0": version: 3.0.3 resolution: "@types/unist@npm:3.0.3" checksum: 10c0/2b1e4adcab78388e088fcc3c0ae8700f76619dbcb4741d7d201f87e2cb346bfc29a89003cfea2d76c996e1061452e14fcd737e8b25aacf949c1f2d6b2bc3dd60 languageName: node linkType: hard -"@types/unist@npm:2.0.11, @types/unist@npm:^2, @types/unist@npm:^2.0.0": +"@types/unist@npm:^2, @types/unist@npm:^2.0.0": version: 2.0.11 resolution: "@types/unist@npm:2.0.11" checksum: 10c0/24dcdf25a168f453bb70298145eb043cfdbb82472db0bc0b56d6d51cd2e484b9ed8271d4ac93000a80da568f2402e9339723db262d0869e2bf13bc58e081768d From 46aab8fcc62fb4e6d00548c1e56bc4a046cf91cd Mon Sep 17 00:00:00 2001 From: "hash-worker[bot]" <180894564+hash-worker[bot]@users.noreply.github.com> Date: Sat, 21 Dec 2024 00:44:37 +0000 Subject: [PATCH 082/159] Update GitHub Action `actions/create-github-app-token` to c1a2851 (#5984) Co-authored-by: hash-worker[bot] <180894564+hash-worker[bot]@users.noreply.github.com> --- .github/workflows/renovate.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/renovate.yml b/.github/workflows/renovate.yml index 4599ba31b11..9cc391b5989 100644 --- a/.github/workflows/renovate.yml +++ b/.github/workflows/renovate.yml @@ -67,7 +67,7 @@ jobs: - name: Get token id: app-token - uses: actions/create-github-app-token@5d869da34e18e7287c1daad50e0b8ea0f506ce69 # v1 + uses: actions/create-github-app-token@c1a285145b9d317df6ced56c09f525b5c2b6f755 # v1 with: app-id: ${{ steps.secrets.outputs.GITHUB_WORKER_APP_ID }} private-key: ${{ steps.secrets.outputs.GITHUB_WORKER_APP_PRIVATE_KEY }} From c603f9ced575a1a76ae91ab622da0043d764a9d4 Mon Sep 17 00:00:00 2001 From: "hash-worker[bot]" <180894564+hash-worker[bot]@users.noreply.github.com> Date: Sat, 21 Dec 2024 00:49:07 +0000 Subject: [PATCH 083/159] Update GitHub Action `taiki-e/install-action` to v2.46.17 (#5985) Co-authored-by: hash-worker[bot] <180894564+hash-worker[bot]@users.noreply.github.com> --- .github/actions/warm-up-repo/action.yml | 2 +- .github/workflows/bench.yml | 4 ++-- .github/workflows/lint.yml | 2 +- .github/workflows/test.yml | 4 ++-- 4 files changed, 6 insertions(+), 6 deletions(-) diff --git a/.github/actions/warm-up-repo/action.yml b/.github/actions/warm-up-repo/action.yml index 810a4cba3ff..f3f5d0f7948 100644 --- a/.github/actions/warm-up-repo/action.yml +++ b/.github/actions/warm-up-repo/action.yml @@ -17,7 +17,7 @@ runs: # cache: yarn ## Currently disabled because of frequent timeouts - name: Install WASM tools - uses: taiki-e/install-action@9023ed54c080c7ff1b3e4af335c729c3f9cb1dd7 # v2.46.16 + uses: taiki-e/install-action@03381f5ca4d069c7f756fec5d189e036987f842e # v2.46.17 with: tool: wasm-pack@0.12.1 diff --git a/.github/workflows/bench.yml b/.github/workflows/bench.yml index 49bd1c3acb6..ff14c7dd411 100644 --- a/.github/workflows/bench.yml +++ b/.github/workflows/bench.yml @@ -99,7 +99,7 @@ jobs: - name: Install Rust tools if: steps.benches.outputs.has-rust == 'true' - uses: taiki-e/install-action@9023ed54c080c7ff1b3e4af335c729c3f9cb1dd7 # v2.46.16 + uses: taiki-e/install-action@03381f5ca4d069c7f756fec5d189e036987f842e # v2.46.17 with: tool: just@1.34.0,critcmp@0.1.8 @@ -251,7 +251,7 @@ jobs: - name: Install Rust tools if: steps.benches.outputs.has-rust == 'true' - uses: taiki-e/install-action@9023ed54c080c7ff1b3e4af335c729c3f9cb1dd7 # v2.46.16 + uses: taiki-e/install-action@03381f5ca4d069c7f756fec5d189e036987f842e # v2.46.17 with: tool: just@1.34.0,critcmp@0.1.8 diff --git a/.github/workflows/lint.yml b/.github/workflows/lint.yml index 229d1aedfde..254e4fd3214 100644 --- a/.github/workflows/lint.yml +++ b/.github/workflows/lint.yml @@ -111,7 +111,7 @@ jobs: - name: Install Rust tools if: always() && steps.lints.outputs.has-rust == 'true' - uses: taiki-e/install-action@9023ed54c080c7ff1b3e4af335c729c3f9cb1dd7 # v2.46.16 + uses: taiki-e/install-action@03381f5ca4d069c7f756fec5d189e036987f842e # v2.46.17 with: tool: just@1.34.0,cargo-hack@0.6.30,clippy-sarif@0.6.5,sarif-fmt@0.6.5 diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index 7e3f589db4b..10bdd2c7bd8 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -163,7 +163,7 @@ jobs: - name: Install Rust tools if: always() && steps.tests.outputs.has-rust == 'true' - uses: taiki-e/install-action@9023ed54c080c7ff1b3e4af335c729c3f9cb1dd7 # v2.46.16 + uses: taiki-e/install-action@03381f5ca4d069c7f756fec5d189e036987f842e # v2.46.17 with: tool: just@1.34.0,cargo-hack@0.6.30,cargo-nextest@0.9.72,cargo-llvm-cov@0.6.11 @@ -281,7 +281,7 @@ jobs: - name: Install Rust tools if: steps.tests.outputs.has-rust == 'true' - uses: taiki-e/install-action@9023ed54c080c7ff1b3e4af335c729c3f9cb1dd7 # v2.46.16 + uses: taiki-e/install-action@03381f5ca4d069c7f756fec5d189e036987f842e # v2.46.17 with: tool: just@1.34.0,cargo-hack@0.6.30,cargo-nextest@0.9.72,cargo-llvm-cov@0.6.11 From f67be21ac4e92b43a4aec5ac838fbac7fbd0bffc Mon Sep 17 00:00:00 2001 From: "hash-worker[bot]" <180894564+hash-worker[bot]@users.noreply.github.com> Date: Sat, 21 Dec 2024 01:53:54 +0000 Subject: [PATCH 084/159] Update GitHub Action `github/codeql-action` to v3.28.0 (#5986) Co-authored-by: hash-worker[bot] <180894564+hash-worker[bot]@users.noreply.github.com> --- .github/workflows/codeql-analysis.yml | 6 +++--- .github/workflows/lint.yml | 2 +- .github/workflows/semgrep.yml | 2 +- 3 files changed, 5 insertions(+), 5 deletions(-) diff --git a/.github/workflows/codeql-analysis.yml b/.github/workflows/codeql-analysis.yml index dd80e4c15dc..067116b949d 100644 --- a/.github/workflows/codeql-analysis.yml +++ b/.github/workflows/codeql-analysis.yml @@ -36,7 +36,7 @@ jobs: # Initializes the CodeQL tools for scanning. - name: Initialize CodeQL - uses: github/codeql-action/init@df409f7d9260372bd5f19e5b04e83cb3c43714ae # v3.27.9 + uses: github/codeql-action/init@48ab28a6f5dbc2a99bf1e0131198dd8f1df78169 # v3.28.0 with: languages: ${{ matrix.language }} # If you wish to specify custom queries, you can do so here or in a config file. @@ -47,7 +47,7 @@ jobs: # Autobuild attempts to build any compiled languages (C/C++, C#, or Java). # If this step fails, then you should remove it and run the build manually (see below) - name: Autobuild - uses: github/codeql-action/autobuild@df409f7d9260372bd5f19e5b04e83cb3c43714ae # v3.27.9 + uses: github/codeql-action/autobuild@48ab28a6f5dbc2a99bf1e0131198dd8f1df78169 # v3.28.0 # ℹ️ Command-line programs to run using the OS shell. # 📚 https://git.io/JvXDl @@ -61,4 +61,4 @@ jobs: # make release - name: Perform CodeQL Analysis - uses: github/codeql-action/analyze@df409f7d9260372bd5f19e5b04e83cb3c43714ae # v3.27.9 + uses: github/codeql-action/analyze@48ab28a6f5dbc2a99bf1e0131198dd8f1df78169 # v3.28.0 diff --git a/.github/workflows/lint.yml b/.github/workflows/lint.yml index 254e4fd3214..27f9f6dc766 100644 --- a/.github/workflows/lint.yml +++ b/.github/workflows/lint.yml @@ -177,7 +177,7 @@ jobs: echo '```' >> $GITHUB_STEP_SUMMARY - name: Upload SARIF file - uses: github/codeql-action/upload-sarif@df409f7d9260372bd5f19e5b04e83cb3c43714ae # v3.27.9 + uses: github/codeql-action/upload-sarif@48ab28a6f5dbc2a99bf1e0131198dd8f1df78169 # v3.28.0 if: always() && steps.lints.outputs.has-clippy == 'true' with: sarif_file: ${{ matrix.directory }}/clippy.sarif diff --git a/.github/workflows/semgrep.yml b/.github/workflows/semgrep.yml index 8fa4b7561b8..db6ca731e59 100644 --- a/.github/workflows/semgrep.yml +++ b/.github/workflows/semgrep.yml @@ -43,7 +43,7 @@ jobs: files: "semgrep.sarif" - name: Upload SARIF file for GitHub Advanced Security Dashboard - uses: github/codeql-action/upload-sarif@df409f7d9260372bd5f19e5b04e83cb3c43714ae # v3.27.9 + uses: github/codeql-action/upload-sarif@48ab28a6f5dbc2a99bf1e0131198dd8f1df78169 # v3.28.0 if: steps.sarif_file_check.outputs.files_exists == 'true' with: sarif_file: semgrep.sarif From 75caabc26290a70ac23a4391e6333576532daa44 Mon Sep 17 00:00:00 2001 From: "hash-worker[bot]" <180894564+hash-worker[bot]@users.noreply.github.com> Date: Sat, 21 Dec 2024 12:29:07 +0000 Subject: [PATCH 085/159] Update nextjs monorepo to v15.1.1 (#5987) Co-authored-by: hash-worker[bot] <180894564+hash-worker[bot]@users.noreply.github.com> --- apps/hash-frontend/package.json | 4 +- apps/hashdotdev/package.json | 2 +- .../@local/hash-isomorphic-utils/package.json | 2 +- yarn.lock | 98 +++++++++---------- 4 files changed, 53 insertions(+), 53 deletions(-) diff --git a/apps/hash-frontend/package.json b/apps/hash-frontend/package.json index 610abbc4535..ec1e5cd0c36 100644 --- a/apps/hash-frontend/package.json +++ b/apps/hash-frontend/package.json @@ -86,7 +86,7 @@ "marked": "4.3.0", "material-ui-popup-state": "4.1.0", "millify": "6.1.0", - "next": "15.1.0", + "next": "15.1.1", "next-seo": "6.6.0", "nextjs-progressbar": "0.0.16", "notistack": "2.0.8", @@ -132,7 +132,7 @@ "@graphql-codegen/typescript-operations": "2.5.13", "@local/eslint": "0.0.0-private", "@local/tsconfig": "0.0.0-private", - "@next/bundle-analyzer": "15.1.0", + "@next/bundle-analyzer": "15.1.1", "@types/dotenv-flow": "3.3.3", "@types/gapi": "0.0.47", "@types/google.accounts": "0.0.15", diff --git a/apps/hashdotdev/package.json b/apps/hashdotdev/package.json index d7c596c0664..193c3ba4b53 100644 --- a/apps/hashdotdev/package.json +++ b/apps/hashdotdev/package.json @@ -43,7 +43,7 @@ "katex": "0.16.18", "md5": "2.3.0", "mock-block-dock": "0.0.21", - "next": "15.1.0", + "next": "15.1.1", "next-mdx-remote": "4.4.1", "next-seo": "6.6.0", "nextjs-progressbar": "0.0.16", diff --git a/libs/@local/hash-isomorphic-utils/package.json b/libs/@local/hash-isomorphic-utils/package.json index e19e7f20fce..d6a4b96713d 100644 --- a/libs/@local/hash-isomorphic-utils/package.json +++ b/libs/@local/hash-isomorphic-utils/package.json @@ -68,7 +68,7 @@ "@vitest/coverage-istanbul": "2.1.8", "eslint": "9.17.0", "graphql": "16.10.0", - "next": "15.1.0", + "next": "15.1.1", "prettier": "3.4.2", "react": "19.0.0", "rimraf": "6.0.1", diff --git a/yarn.lock b/yarn.lock index 0be7716e6c5..10beda8ac0b 100644 --- a/yarn.lock +++ b/yarn.lock @@ -497,7 +497,7 @@ __metadata: "@mui/icons-material": "npm:5.16.12" "@mui/material": "npm:5.16.12" "@mui/system": "npm:5.16.12" - "@next/bundle-analyzer": "npm:15.1.0" + "@next/bundle-analyzer": "npm:15.1.1" "@ory/client": "npm:1.1.41" "@ory/integrations": "npm:1.1.4" "@popperjs/core": "npm:2.11.8" @@ -552,7 +552,7 @@ __metadata: marked: "npm:4.3.0" material-ui-popup-state: "npm:4.1.0" millify: "npm:6.1.0" - next: "npm:15.1.0" + next: "npm:15.1.1" next-seo: "npm:6.6.0" nextjs-progressbar: "npm:0.0.16" notistack: "npm:2.0.8" @@ -761,7 +761,7 @@ __metadata: katex: "npm:0.16.18" md5: "npm:2.3.0" mock-block-dock: "npm:0.0.21" - next: "npm:15.1.0" + next: "npm:15.1.1" next-mdx-remote: "npm:4.4.1" next-seo: "npm:6.6.0" nextjs-progressbar: "npm:0.0.16" @@ -9485,7 +9485,7 @@ __metadata: immer: "npm:9.0.21" jsonschema: "npm:1.4.1" lodash-es: "npm:4.17.21" - next: "npm:15.1.0" + next: "npm:15.1.1" pluralize: "npm:8.0.0" prettier: "npm:3.4.2" prosemirror-commands: "npm:1.3.1" @@ -10133,19 +10133,19 @@ __metadata: languageName: node linkType: hard -"@next/bundle-analyzer@npm:15.1.0": - version: 15.1.0 - resolution: "@next/bundle-analyzer@npm:15.1.0" +"@next/bundle-analyzer@npm:15.1.1": + version: 15.1.1 + resolution: "@next/bundle-analyzer@npm:15.1.1" dependencies: webpack-bundle-analyzer: "npm:4.10.1" - checksum: 10c0/6a71ecbc295b86b431d8be860645d590740095207e7240d37db7585b8bb638406e58d3409a55efb5132723eec2a0ba6bd6011186058a54a10e3f559e05d1be1d + checksum: 10c0/2a85db96b1b37a6273d7ee81978ffd11181335b2017c636bcccfc6bca3fdd9a7f1b3c45fba35b4b51f5ca844da76f604d5e8568c894fbdae5a14ff27548cc0d6 languageName: node linkType: hard -"@next/env@npm:15.1.0": - version: 15.1.0 - resolution: "@next/env@npm:15.1.0" - checksum: 10c0/5c6d66bcc652696a8dbbe1596194b612dd492e8b27041b738fcb63aa08669754bd7bdd3664ec8b756029a7d7b22187e646409fc1651c5e95d3ae39c3cca62c3d +"@next/env@npm:15.1.1": + version: 15.1.1 + resolution: "@next/env@npm:15.1.1" + checksum: 10c0/464ecb345eaf1170a863fff3f5bbed081982b1c1d70d617020d336aa7bdd6160a8dbb0a9cb4ba9d8c8189ae56aa026c2fa0d3b7f8365dc6ea00d5e9fba10c2f0 languageName: node linkType: hard @@ -10158,58 +10158,58 @@ __metadata: languageName: node linkType: hard -"@next/swc-darwin-arm64@npm:15.1.0": - version: 15.1.0 - resolution: "@next/swc-darwin-arm64@npm:15.1.0" +"@next/swc-darwin-arm64@npm:15.1.1": + version: 15.1.1 + resolution: "@next/swc-darwin-arm64@npm:15.1.1" conditions: os=darwin & cpu=arm64 languageName: node linkType: hard -"@next/swc-darwin-x64@npm:15.1.0": - version: 15.1.0 - resolution: "@next/swc-darwin-x64@npm:15.1.0" +"@next/swc-darwin-x64@npm:15.1.1": + version: 15.1.1 + resolution: "@next/swc-darwin-x64@npm:15.1.1" conditions: os=darwin & cpu=x64 languageName: node linkType: hard -"@next/swc-linux-arm64-gnu@npm:15.1.0": - version: 15.1.0 - resolution: "@next/swc-linux-arm64-gnu@npm:15.1.0" +"@next/swc-linux-arm64-gnu@npm:15.1.1": + version: 15.1.1 + resolution: "@next/swc-linux-arm64-gnu@npm:15.1.1" conditions: os=linux & cpu=arm64 & libc=glibc languageName: node linkType: hard -"@next/swc-linux-arm64-musl@npm:15.1.0": - version: 15.1.0 - resolution: "@next/swc-linux-arm64-musl@npm:15.1.0" +"@next/swc-linux-arm64-musl@npm:15.1.1": + version: 15.1.1 + resolution: "@next/swc-linux-arm64-musl@npm:15.1.1" conditions: os=linux & cpu=arm64 & libc=musl languageName: node linkType: hard -"@next/swc-linux-x64-gnu@npm:15.1.0": - version: 15.1.0 - resolution: "@next/swc-linux-x64-gnu@npm:15.1.0" +"@next/swc-linux-x64-gnu@npm:15.1.1": + version: 15.1.1 + resolution: "@next/swc-linux-x64-gnu@npm:15.1.1" conditions: os=linux & cpu=x64 & libc=glibc languageName: node linkType: hard -"@next/swc-linux-x64-musl@npm:15.1.0": - version: 15.1.0 - resolution: "@next/swc-linux-x64-musl@npm:15.1.0" +"@next/swc-linux-x64-musl@npm:15.1.1": + version: 15.1.1 + resolution: "@next/swc-linux-x64-musl@npm:15.1.1" conditions: os=linux & cpu=x64 & libc=musl languageName: node linkType: hard -"@next/swc-win32-arm64-msvc@npm:15.1.0": - version: 15.1.0 - resolution: "@next/swc-win32-arm64-msvc@npm:15.1.0" +"@next/swc-win32-arm64-msvc@npm:15.1.1": + version: 15.1.1 + resolution: "@next/swc-win32-arm64-msvc@npm:15.1.1" conditions: os=win32 & cpu=arm64 languageName: node linkType: hard -"@next/swc-win32-x64-msvc@npm:15.1.0": - version: 15.1.0 - resolution: "@next/swc-win32-x64-msvc@npm:15.1.0" +"@next/swc-win32-x64-msvc@npm:15.1.1": + version: 15.1.1 + resolution: "@next/swc-win32-x64-msvc@npm:15.1.1" conditions: os=win32 & cpu=x64 languageName: node linkType: hard @@ -36936,19 +36936,19 @@ __metadata: languageName: node linkType: hard -"next@npm:15.1.0, next@npm:>=12.0.10": - version: 15.1.0 - resolution: "next@npm:15.1.0" +"next@npm:15.1.1, next@npm:>=12.0.10": + version: 15.1.1 + resolution: "next@npm:15.1.1" dependencies: - "@next/env": "npm:15.1.0" - "@next/swc-darwin-arm64": "npm:15.1.0" - "@next/swc-darwin-x64": "npm:15.1.0" - "@next/swc-linux-arm64-gnu": "npm:15.1.0" - "@next/swc-linux-arm64-musl": "npm:15.1.0" - "@next/swc-linux-x64-gnu": "npm:15.1.0" - "@next/swc-linux-x64-musl": "npm:15.1.0" - "@next/swc-win32-arm64-msvc": "npm:15.1.0" - "@next/swc-win32-x64-msvc": "npm:15.1.0" + "@next/env": "npm:15.1.1" + "@next/swc-darwin-arm64": "npm:15.1.1" + "@next/swc-darwin-x64": "npm:15.1.1" + "@next/swc-linux-arm64-gnu": "npm:15.1.1" + "@next/swc-linux-arm64-musl": "npm:15.1.1" + "@next/swc-linux-x64-gnu": "npm:15.1.1" + "@next/swc-linux-x64-musl": "npm:15.1.1" + "@next/swc-win32-arm64-msvc": "npm:15.1.1" + "@next/swc-win32-x64-msvc": "npm:15.1.1" "@swc/counter": "npm:0.1.3" "@swc/helpers": "npm:0.5.15" busboy: "npm:1.6.0" @@ -36993,7 +36993,7 @@ __metadata: optional: true bin: next: dist/bin/next - checksum: 10c0/652a48a6cf6329753da72bec9777c153e88aee8dd1bb709c2c8e6b31b678514d50501e1a58e065464416998bb5d872ce0eaf769e7aacebc2821d36359e63c225 + checksum: 10c0/2908eb539b21a7149f1a5e1cf6ff15f2de1687cc6b445af6cc8b32b33f3d3befc3971c0548bf9bcacd1237e0d06d77b0a21e13d03e5393c3e7bf47280ea1288f languageName: node linkType: hard From 84108806eabde1ced49d338f56f08c7fae8afc45 Mon Sep 17 00:00:00 2001 From: "hash-worker[bot]" <180894564+hash-worker[bot]@users.noreply.github.com> Date: Sat, 21 Dec 2024 13:28:53 +0000 Subject: [PATCH 086/159] Update Rust crate `expect-test` to v1.5.1 (#5990) Co-authored-by: hash-worker[bot] <180894564+hash-worker[bot]@users.noreply.github.com> --- Cargo.lock | 4 ++-- Cargo.toml | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index 77a55e8b9b2..7b3b02c5bed 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -2018,9 +2018,9 @@ dependencies = [ [[package]] name = "expect-test" -version = "1.5.0" +version = "1.5.1" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "9e0be0a561335815e06dab7c62e50353134c796e7a6155402a64bcff66b6a5e0" +checksum = "63af43ff4431e848fb47472a920f14fa71c24de13255a5692e93d4e90302acb0" dependencies = [ "dissimilar", "once_cell", diff --git a/Cargo.toml b/Cargo.toml index 5a6fd1a40d7..c4bf8e396d2 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -166,7 +166,7 @@ criterion-macro = { version = "=0.4.0", default-features = false } derive-where = { version = "=1.2.7", default-features = false, features = ["nightly"] } derive_more = { version = "=1.0.0", default-features = false } dotenv-flow = { version = "=0.16.2", default-features = false } -expect-test = { version = "=1.5.0", default-features = false } +expect-test = { version = "=1.5.1", default-features = false } frunk_core = { version = "0.4.3", default-features = false } futures = { version = "=0.3.31", default-features = false } hifijson = { version = "=0.2.2", default-features = false } From 98c18b8158e2761de6e9a9a85129eac5baba029f Mon Sep 17 00:00:00 2001 From: "hash-worker[bot]" <180894564+hash-worker[bot]@users.noreply.github.com> Date: Sat, 21 Dec 2024 15:42:45 +0000 Subject: [PATCH 087/159] Update npm package `@types/webextension-polyfill` to v0.12.1 (#5989) Co-authored-by: hash-worker[bot] <180894564+hash-worker[bot]@users.noreply.github.com> --- apps/plugin-browser/package.json | 2 +- yarn.lock | 10 +++++----- 2 files changed, 6 insertions(+), 6 deletions(-) diff --git a/apps/plugin-browser/package.json b/apps/plugin-browser/package.json index dbe40ab4b8c..c2465f8a0e3 100755 --- a/apps/plugin-browser/package.json +++ b/apps/plugin-browser/package.json @@ -65,7 +65,7 @@ "@types/lodash.debounce": "4.0.9", "@types/react": "19.0.1", "@types/react-dom": "19.0.2", - "@types/webextension-polyfill": "0.12.0", + "@types/webextension-polyfill": "0.12.1", "@types/ws": "8.5.13", "babel-loader": "9.2.1", "babel-preset-react-app": "10.0.1", diff --git a/yarn.lock b/yarn.lock index 10beda8ac0b..50950fa56df 100644 --- a/yarn.lock +++ b/yarn.lock @@ -813,7 +813,7 @@ __metadata: "@types/lodash.debounce": "npm:4.0.9" "@types/react": "npm:19.0.1" "@types/react-dom": "npm:19.0.2" - "@types/webextension-polyfill": "npm:0.12.0" + "@types/webextension-polyfill": "npm:0.12.1" "@types/ws": "npm:8.5.13" babel-loader: "npm:9.2.1" babel-preset-react-app: "npm:10.0.1" @@ -18613,10 +18613,10 @@ __metadata: languageName: node linkType: hard -"@types/webextension-polyfill@npm:0.12.0": - version: 0.12.0 - resolution: "@types/webextension-polyfill@npm:0.12.0" - checksum: 10c0/d8b69620e9af41802a144ddbefcaf1f627856ed1b1ccf42af0b4d546906a738fea01f45efcf4eb9c2e08761e1b3333105026eb7fd4b51cafb5b4e591079faa8c +"@types/webextension-polyfill@npm:0.12.1": + version: 0.12.1 + resolution: "@types/webextension-polyfill@npm:0.12.1" + checksum: 10c0/d6e6253bbd020dcfa40391112212e3486320760d12c58854d0410140bda7ad0476749b9476e18d6888a1b04092662715b488f470c3aa29b44768990ffaf6d194 languageName: node linkType: hard From 5a40d13286697791bb7e676333f54b0228b40dc8 Mon Sep 17 00:00:00 2001 From: "hash-worker[bot]" <180894564+hash-worker[bot]@users.noreply.github.com> Date: Sat, 21 Dec 2024 16:28:11 +0000 Subject: [PATCH 088/159] Update nextjs monorepo to v15.1.2 (#5991) Co-authored-by: hash-worker[bot] <180894564+hash-worker[bot]@users.noreply.github.com> --- apps/hash-frontend/package.json | 4 +- apps/hashdotdev/package.json | 2 +- .../@local/hash-isomorphic-utils/package.json | 2 +- yarn.lock | 98 +++++++++---------- 4 files changed, 53 insertions(+), 53 deletions(-) diff --git a/apps/hash-frontend/package.json b/apps/hash-frontend/package.json index ec1e5cd0c36..3aaf77b59a6 100644 --- a/apps/hash-frontend/package.json +++ b/apps/hash-frontend/package.json @@ -86,7 +86,7 @@ "marked": "4.3.0", "material-ui-popup-state": "4.1.0", "millify": "6.1.0", - "next": "15.1.1", + "next": "15.1.2", "next-seo": "6.6.0", "nextjs-progressbar": "0.0.16", "notistack": "2.0.8", @@ -132,7 +132,7 @@ "@graphql-codegen/typescript-operations": "2.5.13", "@local/eslint": "0.0.0-private", "@local/tsconfig": "0.0.0-private", - "@next/bundle-analyzer": "15.1.1", + "@next/bundle-analyzer": "15.1.2", "@types/dotenv-flow": "3.3.3", "@types/gapi": "0.0.47", "@types/google.accounts": "0.0.15", diff --git a/apps/hashdotdev/package.json b/apps/hashdotdev/package.json index 193c3ba4b53..89becb39f8e 100644 --- a/apps/hashdotdev/package.json +++ b/apps/hashdotdev/package.json @@ -43,7 +43,7 @@ "katex": "0.16.18", "md5": "2.3.0", "mock-block-dock": "0.0.21", - "next": "15.1.1", + "next": "15.1.2", "next-mdx-remote": "4.4.1", "next-seo": "6.6.0", "nextjs-progressbar": "0.0.16", diff --git a/libs/@local/hash-isomorphic-utils/package.json b/libs/@local/hash-isomorphic-utils/package.json index d6a4b96713d..e1368f4de88 100644 --- a/libs/@local/hash-isomorphic-utils/package.json +++ b/libs/@local/hash-isomorphic-utils/package.json @@ -68,7 +68,7 @@ "@vitest/coverage-istanbul": "2.1.8", "eslint": "9.17.0", "graphql": "16.10.0", - "next": "15.1.1", + "next": "15.1.2", "prettier": "3.4.2", "react": "19.0.0", "rimraf": "6.0.1", diff --git a/yarn.lock b/yarn.lock index 50950fa56df..3b52caf3a96 100644 --- a/yarn.lock +++ b/yarn.lock @@ -497,7 +497,7 @@ __metadata: "@mui/icons-material": "npm:5.16.12" "@mui/material": "npm:5.16.12" "@mui/system": "npm:5.16.12" - "@next/bundle-analyzer": "npm:15.1.1" + "@next/bundle-analyzer": "npm:15.1.2" "@ory/client": "npm:1.1.41" "@ory/integrations": "npm:1.1.4" "@popperjs/core": "npm:2.11.8" @@ -552,7 +552,7 @@ __metadata: marked: "npm:4.3.0" material-ui-popup-state: "npm:4.1.0" millify: "npm:6.1.0" - next: "npm:15.1.1" + next: "npm:15.1.2" next-seo: "npm:6.6.0" nextjs-progressbar: "npm:0.0.16" notistack: "npm:2.0.8" @@ -761,7 +761,7 @@ __metadata: katex: "npm:0.16.18" md5: "npm:2.3.0" mock-block-dock: "npm:0.0.21" - next: "npm:15.1.1" + next: "npm:15.1.2" next-mdx-remote: "npm:4.4.1" next-seo: "npm:6.6.0" nextjs-progressbar: "npm:0.0.16" @@ -9485,7 +9485,7 @@ __metadata: immer: "npm:9.0.21" jsonschema: "npm:1.4.1" lodash-es: "npm:4.17.21" - next: "npm:15.1.1" + next: "npm:15.1.2" pluralize: "npm:8.0.0" prettier: "npm:3.4.2" prosemirror-commands: "npm:1.3.1" @@ -10133,19 +10133,19 @@ __metadata: languageName: node linkType: hard -"@next/bundle-analyzer@npm:15.1.1": - version: 15.1.1 - resolution: "@next/bundle-analyzer@npm:15.1.1" +"@next/bundle-analyzer@npm:15.1.2": + version: 15.1.2 + resolution: "@next/bundle-analyzer@npm:15.1.2" dependencies: webpack-bundle-analyzer: "npm:4.10.1" - checksum: 10c0/2a85db96b1b37a6273d7ee81978ffd11181335b2017c636bcccfc6bca3fdd9a7f1b3c45fba35b4b51f5ca844da76f604d5e8568c894fbdae5a14ff27548cc0d6 + checksum: 10c0/bf1a1ef6554bd7c39b26cebe9a9e3c387d5874dc33278662732a269e106aa091255524e87c0fb43546918962450fcebee25a24c7c14d76afeb6c1268907b6246 languageName: node linkType: hard -"@next/env@npm:15.1.1": - version: 15.1.1 - resolution: "@next/env@npm:15.1.1" - checksum: 10c0/464ecb345eaf1170a863fff3f5bbed081982b1c1d70d617020d336aa7bdd6160a8dbb0a9cb4ba9d8c8189ae56aa026c2fa0d3b7f8365dc6ea00d5e9fba10c2f0 +"@next/env@npm:15.1.2": + version: 15.1.2 + resolution: "@next/env@npm:15.1.2" + checksum: 10c0/07f2b258bd0e8937bfd33515c48b920491d9c281de5f1fa58c4c222dc8e7e0ad3745ca6035bfef788f07d9a39c583bc18cb0cdfbaa8c2177761d9c2bbdd9592f languageName: node linkType: hard @@ -10158,58 +10158,58 @@ __metadata: languageName: node linkType: hard -"@next/swc-darwin-arm64@npm:15.1.1": - version: 15.1.1 - resolution: "@next/swc-darwin-arm64@npm:15.1.1" +"@next/swc-darwin-arm64@npm:15.1.2": + version: 15.1.2 + resolution: "@next/swc-darwin-arm64@npm:15.1.2" conditions: os=darwin & cpu=arm64 languageName: node linkType: hard -"@next/swc-darwin-x64@npm:15.1.1": - version: 15.1.1 - resolution: "@next/swc-darwin-x64@npm:15.1.1" +"@next/swc-darwin-x64@npm:15.1.2": + version: 15.1.2 + resolution: "@next/swc-darwin-x64@npm:15.1.2" conditions: os=darwin & cpu=x64 languageName: node linkType: hard -"@next/swc-linux-arm64-gnu@npm:15.1.1": - version: 15.1.1 - resolution: "@next/swc-linux-arm64-gnu@npm:15.1.1" +"@next/swc-linux-arm64-gnu@npm:15.1.2": + version: 15.1.2 + resolution: "@next/swc-linux-arm64-gnu@npm:15.1.2" conditions: os=linux & cpu=arm64 & libc=glibc languageName: node linkType: hard -"@next/swc-linux-arm64-musl@npm:15.1.1": - version: 15.1.1 - resolution: "@next/swc-linux-arm64-musl@npm:15.1.1" +"@next/swc-linux-arm64-musl@npm:15.1.2": + version: 15.1.2 + resolution: "@next/swc-linux-arm64-musl@npm:15.1.2" conditions: os=linux & cpu=arm64 & libc=musl languageName: node linkType: hard -"@next/swc-linux-x64-gnu@npm:15.1.1": - version: 15.1.1 - resolution: "@next/swc-linux-x64-gnu@npm:15.1.1" +"@next/swc-linux-x64-gnu@npm:15.1.2": + version: 15.1.2 + resolution: "@next/swc-linux-x64-gnu@npm:15.1.2" conditions: os=linux & cpu=x64 & libc=glibc languageName: node linkType: hard -"@next/swc-linux-x64-musl@npm:15.1.1": - version: 15.1.1 - resolution: "@next/swc-linux-x64-musl@npm:15.1.1" +"@next/swc-linux-x64-musl@npm:15.1.2": + version: 15.1.2 + resolution: "@next/swc-linux-x64-musl@npm:15.1.2" conditions: os=linux & cpu=x64 & libc=musl languageName: node linkType: hard -"@next/swc-win32-arm64-msvc@npm:15.1.1": - version: 15.1.1 - resolution: "@next/swc-win32-arm64-msvc@npm:15.1.1" +"@next/swc-win32-arm64-msvc@npm:15.1.2": + version: 15.1.2 + resolution: "@next/swc-win32-arm64-msvc@npm:15.1.2" conditions: os=win32 & cpu=arm64 languageName: node linkType: hard -"@next/swc-win32-x64-msvc@npm:15.1.1": - version: 15.1.1 - resolution: "@next/swc-win32-x64-msvc@npm:15.1.1" +"@next/swc-win32-x64-msvc@npm:15.1.2": + version: 15.1.2 + resolution: "@next/swc-win32-x64-msvc@npm:15.1.2" conditions: os=win32 & cpu=x64 languageName: node linkType: hard @@ -36936,19 +36936,19 @@ __metadata: languageName: node linkType: hard -"next@npm:15.1.1, next@npm:>=12.0.10": - version: 15.1.1 - resolution: "next@npm:15.1.1" +"next@npm:15.1.2, next@npm:>=12.0.10": + version: 15.1.2 + resolution: "next@npm:15.1.2" dependencies: - "@next/env": "npm:15.1.1" - "@next/swc-darwin-arm64": "npm:15.1.1" - "@next/swc-darwin-x64": "npm:15.1.1" - "@next/swc-linux-arm64-gnu": "npm:15.1.1" - "@next/swc-linux-arm64-musl": "npm:15.1.1" - "@next/swc-linux-x64-gnu": "npm:15.1.1" - "@next/swc-linux-x64-musl": "npm:15.1.1" - "@next/swc-win32-arm64-msvc": "npm:15.1.1" - "@next/swc-win32-x64-msvc": "npm:15.1.1" + "@next/env": "npm:15.1.2" + "@next/swc-darwin-arm64": "npm:15.1.2" + "@next/swc-darwin-x64": "npm:15.1.2" + "@next/swc-linux-arm64-gnu": "npm:15.1.2" + "@next/swc-linux-arm64-musl": "npm:15.1.2" + "@next/swc-linux-x64-gnu": "npm:15.1.2" + "@next/swc-linux-x64-musl": "npm:15.1.2" + "@next/swc-win32-arm64-msvc": "npm:15.1.2" + "@next/swc-win32-x64-msvc": "npm:15.1.2" "@swc/counter": "npm:0.1.3" "@swc/helpers": "npm:0.5.15" busboy: "npm:1.6.0" @@ -36993,7 +36993,7 @@ __metadata: optional: true bin: next: dist/bin/next - checksum: 10c0/2908eb539b21a7149f1a5e1cf6ff15f2de1687cc6b445af6cc8b32b33f3d3befc3971c0548bf9bcacd1237e0d06d77b0a21e13d03e5393c3e7bf47280ea1288f + checksum: 10c0/320b949336fa41210ebe5cee66fce7edb4dc3474b438898590e43f6dfe30212620b090801d6f8cc4d37bfb54cb316680f65b58110cc8885f8c2b108a80e4ecee languageName: node linkType: hard From 2a749291af75b5ff38d2fde9d37d0a30a5d042c5 Mon Sep 17 00:00:00 2001 From: "hash-worker[bot]" <180894564+hash-worker[bot]@users.noreply.github.com> Date: Sat, 21 Dec 2024 16:42:25 +0000 Subject: [PATCH 089/159] Update npm package `rollup` to v4.29.1 (#5994) Co-authored-by: hash-worker[bot] <180894564+hash-worker[bot]@users.noreply.github.com> --- .../type-system/typescript/package.json | 2 +- tests/hash-backend-load/package.json | 2 +- yarn.lock | 166 +++++++++--------- 3 files changed, 85 insertions(+), 85 deletions(-) diff --git a/libs/@blockprotocol/type-system/typescript/package.json b/libs/@blockprotocol/type-system/typescript/package.json index 185214af356..64b04930e1d 100644 --- a/libs/@blockprotocol/type-system/typescript/package.json +++ b/libs/@blockprotocol/type-system/typescript/package.json @@ -65,7 +65,7 @@ "eslint": "9.17.0", "react": "19.0.0", "rimraf": "6.0.1", - "rollup": "4.28.1", + "rollup": "4.29.1", "tslib": "2.8.1", "typescript": "5.7.2", "vite-plugin-wasm-pack": "0.1.12", diff --git a/tests/hash-backend-load/package.json b/tests/hash-backend-load/package.json index 88755ec1f72..db03d0ff666 100644 --- a/tests/hash-backend-load/package.json +++ b/tests/hash-backend-load/package.json @@ -57,7 +57,7 @@ "@types/dotenv-flow": "3.3.3", "eslint": "9.17.0", "rimraf": "6.0.1", - "rollup": "4.28.1", + "rollup": "4.29.1", "typescript": "5.7.2" } } diff --git a/yarn.lock b/yarn.lock index 3b52caf3a96..635d7eb42ee 100644 --- a/yarn.lock +++ b/yarn.lock @@ -4631,7 +4631,7 @@ __metadata: eslint: "npm:9.17.0" react: "npm:19.0.0" rimraf: "npm:6.0.1" - rollup: "npm:4.28.1" + rollup: "npm:4.29.1" tslib: "npm:2.8.1" typescript: "npm:5.7.2" vite-plugin-wasm-pack: "npm:0.1.12" @@ -12921,135 +12921,135 @@ __metadata: languageName: node linkType: hard -"@rollup/rollup-android-arm-eabi@npm:4.28.1": - version: 4.28.1 - resolution: "@rollup/rollup-android-arm-eabi@npm:4.28.1" +"@rollup/rollup-android-arm-eabi@npm:4.29.1": + version: 4.29.1 + resolution: "@rollup/rollup-android-arm-eabi@npm:4.29.1" conditions: os=android & cpu=arm languageName: node linkType: hard -"@rollup/rollup-android-arm64@npm:4.28.1": - version: 4.28.1 - resolution: "@rollup/rollup-android-arm64@npm:4.28.1" +"@rollup/rollup-android-arm64@npm:4.29.1": + version: 4.29.1 + resolution: "@rollup/rollup-android-arm64@npm:4.29.1" conditions: os=android & cpu=arm64 languageName: node linkType: hard -"@rollup/rollup-darwin-arm64@npm:4.28.1": - version: 4.28.1 - resolution: "@rollup/rollup-darwin-arm64@npm:4.28.1" +"@rollup/rollup-darwin-arm64@npm:4.29.1": + version: 4.29.1 + resolution: "@rollup/rollup-darwin-arm64@npm:4.29.1" conditions: os=darwin & cpu=arm64 languageName: node linkType: hard -"@rollup/rollup-darwin-x64@npm:4.28.1": - version: 4.28.1 - resolution: "@rollup/rollup-darwin-x64@npm:4.28.1" +"@rollup/rollup-darwin-x64@npm:4.29.1": + version: 4.29.1 + resolution: "@rollup/rollup-darwin-x64@npm:4.29.1" conditions: os=darwin & cpu=x64 languageName: node linkType: hard -"@rollup/rollup-freebsd-arm64@npm:4.28.1": - version: 4.28.1 - resolution: "@rollup/rollup-freebsd-arm64@npm:4.28.1" +"@rollup/rollup-freebsd-arm64@npm:4.29.1": + version: 4.29.1 + resolution: "@rollup/rollup-freebsd-arm64@npm:4.29.1" conditions: os=freebsd & cpu=arm64 languageName: node linkType: hard -"@rollup/rollup-freebsd-x64@npm:4.28.1": - version: 4.28.1 - resolution: "@rollup/rollup-freebsd-x64@npm:4.28.1" +"@rollup/rollup-freebsd-x64@npm:4.29.1": + version: 4.29.1 + resolution: "@rollup/rollup-freebsd-x64@npm:4.29.1" conditions: os=freebsd & cpu=x64 languageName: node linkType: hard -"@rollup/rollup-linux-arm-gnueabihf@npm:4.28.1": - version: 4.28.1 - resolution: "@rollup/rollup-linux-arm-gnueabihf@npm:4.28.1" +"@rollup/rollup-linux-arm-gnueabihf@npm:4.29.1": + version: 4.29.1 + resolution: "@rollup/rollup-linux-arm-gnueabihf@npm:4.29.1" conditions: os=linux & cpu=arm & libc=glibc languageName: node linkType: hard -"@rollup/rollup-linux-arm-musleabihf@npm:4.28.1": - version: 4.28.1 - resolution: "@rollup/rollup-linux-arm-musleabihf@npm:4.28.1" +"@rollup/rollup-linux-arm-musleabihf@npm:4.29.1": + version: 4.29.1 + resolution: "@rollup/rollup-linux-arm-musleabihf@npm:4.29.1" conditions: os=linux & cpu=arm & libc=musl languageName: node linkType: hard -"@rollup/rollup-linux-arm64-gnu@npm:4.28.1": - version: 4.28.1 - resolution: "@rollup/rollup-linux-arm64-gnu@npm:4.28.1" +"@rollup/rollup-linux-arm64-gnu@npm:4.29.1": + version: 4.29.1 + resolution: "@rollup/rollup-linux-arm64-gnu@npm:4.29.1" conditions: os=linux & cpu=arm64 & libc=glibc languageName: node linkType: hard -"@rollup/rollup-linux-arm64-musl@npm:4.28.1": - version: 4.28.1 - resolution: "@rollup/rollup-linux-arm64-musl@npm:4.28.1" +"@rollup/rollup-linux-arm64-musl@npm:4.29.1": + version: 4.29.1 + resolution: "@rollup/rollup-linux-arm64-musl@npm:4.29.1" conditions: os=linux & cpu=arm64 & libc=musl languageName: node linkType: hard -"@rollup/rollup-linux-loongarch64-gnu@npm:4.28.1": - version: 4.28.1 - resolution: "@rollup/rollup-linux-loongarch64-gnu@npm:4.28.1" +"@rollup/rollup-linux-loongarch64-gnu@npm:4.29.1": + version: 4.29.1 + resolution: "@rollup/rollup-linux-loongarch64-gnu@npm:4.29.1" conditions: os=linux & cpu=loong64 & libc=glibc languageName: node linkType: hard -"@rollup/rollup-linux-powerpc64le-gnu@npm:4.28.1": - version: 4.28.1 - resolution: "@rollup/rollup-linux-powerpc64le-gnu@npm:4.28.1" +"@rollup/rollup-linux-powerpc64le-gnu@npm:4.29.1": + version: 4.29.1 + resolution: "@rollup/rollup-linux-powerpc64le-gnu@npm:4.29.1" conditions: os=linux & cpu=ppc64 & libc=glibc languageName: node linkType: hard -"@rollup/rollup-linux-riscv64-gnu@npm:4.28.1": - version: 4.28.1 - resolution: "@rollup/rollup-linux-riscv64-gnu@npm:4.28.1" +"@rollup/rollup-linux-riscv64-gnu@npm:4.29.1": + version: 4.29.1 + resolution: "@rollup/rollup-linux-riscv64-gnu@npm:4.29.1" conditions: os=linux & cpu=riscv64 & libc=glibc languageName: node linkType: hard -"@rollup/rollup-linux-s390x-gnu@npm:4.28.1": - version: 4.28.1 - resolution: "@rollup/rollup-linux-s390x-gnu@npm:4.28.1" +"@rollup/rollup-linux-s390x-gnu@npm:4.29.1": + version: 4.29.1 + resolution: "@rollup/rollup-linux-s390x-gnu@npm:4.29.1" conditions: os=linux & cpu=s390x & libc=glibc languageName: node linkType: hard -"@rollup/rollup-linux-x64-gnu@npm:4.28.1": - version: 4.28.1 - resolution: "@rollup/rollup-linux-x64-gnu@npm:4.28.1" +"@rollup/rollup-linux-x64-gnu@npm:4.29.1": + version: 4.29.1 + resolution: "@rollup/rollup-linux-x64-gnu@npm:4.29.1" conditions: os=linux & cpu=x64 & libc=glibc languageName: node linkType: hard -"@rollup/rollup-linux-x64-musl@npm:4.28.1": - version: 4.28.1 - resolution: "@rollup/rollup-linux-x64-musl@npm:4.28.1" +"@rollup/rollup-linux-x64-musl@npm:4.29.1": + version: 4.29.1 + resolution: "@rollup/rollup-linux-x64-musl@npm:4.29.1" conditions: os=linux & cpu=x64 & libc=musl languageName: node linkType: hard -"@rollup/rollup-win32-arm64-msvc@npm:4.28.1": - version: 4.28.1 - resolution: "@rollup/rollup-win32-arm64-msvc@npm:4.28.1" +"@rollup/rollup-win32-arm64-msvc@npm:4.29.1": + version: 4.29.1 + resolution: "@rollup/rollup-win32-arm64-msvc@npm:4.29.1" conditions: os=win32 & cpu=arm64 languageName: node linkType: hard -"@rollup/rollup-win32-ia32-msvc@npm:4.28.1": - version: 4.28.1 - resolution: "@rollup/rollup-win32-ia32-msvc@npm:4.28.1" +"@rollup/rollup-win32-ia32-msvc@npm:4.29.1": + version: 4.29.1 + resolution: "@rollup/rollup-win32-ia32-msvc@npm:4.29.1" conditions: os=win32 & cpu=ia32 languageName: node linkType: hard -"@rollup/rollup-win32-x64-msvc@npm:4.28.1": - version: 4.28.1 - resolution: "@rollup/rollup-win32-x64-msvc@npm:4.28.1" +"@rollup/rollup-win32-x64-msvc@npm:4.29.1": + version: 4.29.1 + resolution: "@rollup/rollup-win32-x64-msvc@npm:4.29.1" conditions: os=win32 & cpu=x64 languageName: node linkType: hard @@ -16747,7 +16747,7 @@ __metadata: dotenv-flow: "npm:3.3.0" eslint: "npm:9.17.0" rimraf: "npm:6.0.1" - rollup: "npm:4.28.1" + rollup: "npm:4.29.1" typescript: "npm:5.7.2" uuid: "npm:11.0.3" languageName: unknown @@ -42341,29 +42341,29 @@ __metadata: languageName: node linkType: hard -"rollup@npm:4.28.1, rollup@npm:^4.20.0": - version: 4.28.1 - resolution: "rollup@npm:4.28.1" - dependencies: - "@rollup/rollup-android-arm-eabi": "npm:4.28.1" - "@rollup/rollup-android-arm64": "npm:4.28.1" - "@rollup/rollup-darwin-arm64": "npm:4.28.1" - "@rollup/rollup-darwin-x64": "npm:4.28.1" - "@rollup/rollup-freebsd-arm64": "npm:4.28.1" - "@rollup/rollup-freebsd-x64": "npm:4.28.1" - "@rollup/rollup-linux-arm-gnueabihf": "npm:4.28.1" - "@rollup/rollup-linux-arm-musleabihf": "npm:4.28.1" - "@rollup/rollup-linux-arm64-gnu": "npm:4.28.1" - "@rollup/rollup-linux-arm64-musl": "npm:4.28.1" - "@rollup/rollup-linux-loongarch64-gnu": "npm:4.28.1" - "@rollup/rollup-linux-powerpc64le-gnu": "npm:4.28.1" - "@rollup/rollup-linux-riscv64-gnu": "npm:4.28.1" - "@rollup/rollup-linux-s390x-gnu": "npm:4.28.1" - "@rollup/rollup-linux-x64-gnu": "npm:4.28.1" - "@rollup/rollup-linux-x64-musl": "npm:4.28.1" - "@rollup/rollup-win32-arm64-msvc": "npm:4.28.1" - "@rollup/rollup-win32-ia32-msvc": "npm:4.28.1" - "@rollup/rollup-win32-x64-msvc": "npm:4.28.1" +"rollup@npm:4.29.1, rollup@npm:^4.20.0": + version: 4.29.1 + resolution: "rollup@npm:4.29.1" + dependencies: + "@rollup/rollup-android-arm-eabi": "npm:4.29.1" + "@rollup/rollup-android-arm64": "npm:4.29.1" + "@rollup/rollup-darwin-arm64": "npm:4.29.1" + "@rollup/rollup-darwin-x64": "npm:4.29.1" + "@rollup/rollup-freebsd-arm64": "npm:4.29.1" + "@rollup/rollup-freebsd-x64": "npm:4.29.1" + "@rollup/rollup-linux-arm-gnueabihf": "npm:4.29.1" + "@rollup/rollup-linux-arm-musleabihf": "npm:4.29.1" + "@rollup/rollup-linux-arm64-gnu": "npm:4.29.1" + "@rollup/rollup-linux-arm64-musl": "npm:4.29.1" + "@rollup/rollup-linux-loongarch64-gnu": "npm:4.29.1" + "@rollup/rollup-linux-powerpc64le-gnu": "npm:4.29.1" + "@rollup/rollup-linux-riscv64-gnu": "npm:4.29.1" + "@rollup/rollup-linux-s390x-gnu": "npm:4.29.1" + "@rollup/rollup-linux-x64-gnu": "npm:4.29.1" + "@rollup/rollup-linux-x64-musl": "npm:4.29.1" + "@rollup/rollup-win32-arm64-msvc": "npm:4.29.1" + "@rollup/rollup-win32-ia32-msvc": "npm:4.29.1" + "@rollup/rollup-win32-x64-msvc": "npm:4.29.1" "@types/estree": "npm:1.0.6" fsevents: "npm:~2.3.2" dependenciesMeta: @@ -42409,7 +42409,7 @@ __metadata: optional: true bin: rollup: dist/bin/rollup - checksum: 10c0/2d2d0433b7cb53153a04c7b406f342f31517608dc57510e49177941b9e68c30071674b83a0292ef1d87184e5f7c6d0f2945c8b3c74963074de10c75366fe2c14 + checksum: 10c0/fcd0321df78fdc74b36858e92c4b73ebf5aa8f0b9cf7c446f008e0dc3c5c4ed855d662dc44e5a09c7794bbe91017b4dd7be88b619c239f0494f9f0fbfa67c557 languageName: node linkType: hard From 77824018621e67e222434a1a49005022fb251529 Mon Sep 17 00:00:00 2001 From: "hash-worker[bot]" <180894564+hash-worker[bot]@users.noreply.github.com> Date: Sat, 21 Dec 2024 19:25:18 +0000 Subject: [PATCH 090/159] Update Rust crate `serde_json` to v1.0.134 (#5996) Co-authored-by: hash-worker[bot] <180894564+hash-worker[bot]@users.noreply.github.com> --- Cargo.lock | 4 ++-- Cargo.toml | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index 7b3b02c5bed..16978555752 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -6630,9 +6630,9 @@ dependencies = [ [[package]] name = "serde_json" -version = "1.0.133" +version = "1.0.134" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "c7fceb2473b9166b2294ef05efcb65a3db80803f0b03ef86a5fc88a2b85ee377" +checksum = "d00f4175c42ee48b15416f6193a959ba3a0d67fc699a0db9ad12df9f83991c7d" dependencies = [ "itoa", "memchr", diff --git a/Cargo.toml b/Cargo.toml index c4bf8e396d2..d6fa922f66f 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -132,7 +132,7 @@ reqwest = { version = "=0.12.9", default-features = false, features = semver = { version = "=1.0.24", default-features = false } sentry-types = { version = "=0.35.0", default-features = false } serde = { version = "=1.0.216", default-features = false } -serde_json = { version = "=1.0.133" } +serde_json = { version = "=1.0.134" } text-size = { version = "=1.1.1", default-features = false } time = { version = "=0.3.37", default-features = false } tokio = { version = "=1.42.0", default-features = false } From 6a4f5a2e1cc353f47e2af498733c5ac2c2fcf851 Mon Sep 17 00:00:00 2001 From: "hash-worker[bot]" <180894564+hash-worker[bot]@users.noreply.github.com> Date: Sun, 22 Dec 2024 02:51:19 +0000 Subject: [PATCH 091/159] Update Rust crate `syn` to v2.0.91 (#5997) Co-authored-by: hash-worker[bot] <180894564+hash-worker[bot]@users.noreply.github.com> --- Cargo.lock | 124 ++++++++++++++++++++++++++--------------------------- Cargo.toml | 2 +- 2 files changed, 63 insertions(+), 63 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index 16978555752..3d03d4c5f55 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -213,7 +213,7 @@ checksum = "0ae92a5119aa49cdbcf6b9f893fe4e1d98b04ccbf82ee0584ad948a44a734dea" dependencies = [ "proc-macro2", "quote", - "syn 2.0.90", + "syn 2.0.91", ] [[package]] @@ -262,7 +262,7 @@ checksum = "965c2d33e53cb6b267e148a4cb0760bc01f4904c1cd4bb4002a085bb016d1490" dependencies = [ "proc-macro2", "quote", - "syn 2.0.90", + "syn 2.0.91", "synstructure", ] @@ -274,7 +274,7 @@ checksum = "7b18050c2cd6fe86c3a76584ef5e0baf286d038cda203eb6223df2cc413565f7" dependencies = [ "proc-macro2", "quote", - "syn 2.0.90", + "syn 2.0.91", ] [[package]] @@ -347,7 +347,7 @@ checksum = "c7c24de15d275a1ecfd47a380fb4d5ec9bfe0933f309ed5e705b775596a3574d" dependencies = [ "proc-macro2", "quote", - "syn 2.0.90", + "syn 2.0.91", ] [[package]] @@ -358,7 +358,7 @@ checksum = "721cae7de5c34fbb2acd27e21e6d2cf7b886dce0c27388d46c4e6c47ea4318dd" dependencies = [ "proc-macro2", "quote", - "syn 2.0.90", + "syn 2.0.91", ] [[package]] @@ -1255,7 +1255,7 @@ dependencies = [ "heck 0.5.0", "proc-macro2", "quote", - "syn 2.0.90", + "syn 2.0.91", ] [[package]] @@ -1516,7 +1516,7 @@ checksum = "f46882e17999c6cc590af592290432be3bce0428cb0d5f8b6715e4dc7b383eb3" dependencies = [ "proc-macro2", "quote", - "syn 2.0.90", + "syn 2.0.91", ] [[package]] @@ -1540,7 +1540,7 @@ dependencies = [ "proc-macro2", "quote", "strsim", - "syn 2.0.90", + "syn 2.0.91", ] [[package]] @@ -1551,7 +1551,7 @@ checksum = "d336a2a514f6ccccaa3e09b02d41d35330c07ddf03a62165fcec10bb561c7806" dependencies = [ "darling_core", "quote", - "syn 2.0.90", + "syn 2.0.91", ] [[package]] @@ -1710,7 +1710,7 @@ checksum = "62d671cc41a825ebabc75757b62d3d168c577f9149b2d49ece1dad1f72119d25" dependencies = [ "proc-macro2", "quote", - "syn 2.0.90", + "syn 2.0.91", ] [[package]] @@ -1731,7 +1731,7 @@ dependencies = [ "darling", "proc-macro2", "quote", - "syn 2.0.90", + "syn 2.0.91", ] [[package]] @@ -1741,7 +1741,7 @@ source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "ab63b0e2bf4d5928aff72e83a7dace85d7bba5fe12dcc3c5a572d78caffd3f3c" dependencies = [ "derive_builder_core", - "syn 2.0.90", + "syn 2.0.91", ] [[package]] @@ -1761,7 +1761,7 @@ checksum = "cb7330aeadfbe296029522e6c40f315320aba36fc43a5b3632f3795348f3bd22" dependencies = [ "proc-macro2", "quote", - "syn 2.0.90", + "syn 2.0.91", "unicode-xid", ] @@ -1800,7 +1800,7 @@ checksum = "97369cbbc041bc366949bc74d34658d6cda5621039731c6310521892a3a20ae0" dependencies = [ "proc-macro2", "quote", - "syn 2.0.90", + "syn 2.0.91", ] [[package]] @@ -1861,7 +1861,7 @@ dependencies = [ "enum-ordinalize", "proc-macro2", "quote", - "syn 2.0.90", + "syn 2.0.91", ] [[package]] @@ -1894,7 +1894,7 @@ dependencies = [ "heck 0.5.0", "proc-macro2", "quote", - "syn 2.0.90", + "syn 2.0.91", ] [[package]] @@ -1914,7 +1914,7 @@ checksum = "0d28318a75d4aead5c4db25382e8ef717932d0346600cacae6357eb5941bc5ff" dependencies = [ "proc-macro2", "quote", - "syn 2.0.90", + "syn 2.0.91", ] [[package]] @@ -1935,7 +1935,7 @@ checksum = "de0d48a183585823424a4ce1aa132d174a6a81bd540895822eb4c8373a8e49e8" dependencies = [ "proc-macro2", "quote", - "syn 2.0.90", + "syn 2.0.91", ] [[package]] @@ -2188,7 +2188,7 @@ checksum = "e99b8b3c28ae0e84b604c75f721c21dc77afb3706076af5e8216d15fd1deaae3" dependencies = [ "frunk_proc_macro_helpers", "quote", - "syn 2.0.90", + "syn 2.0.91", ] [[package]] @@ -2200,7 +2200,7 @@ dependencies = [ "frunk_core", "proc-macro2", "quote", - "syn 2.0.90", + "syn 2.0.91", ] [[package]] @@ -2212,7 +2212,7 @@ dependencies = [ "frunk_core", "frunk_proc_macro_helpers", "quote", - "syn 2.0.90", + "syn 2.0.91", ] [[package]] @@ -2298,7 +2298,7 @@ checksum = "162ee34ebcb7c64a8abebc059ce0fee27c2262618d7b60ed8faf72fef13c3650" dependencies = [ "proc-macro2", "quote", - "syn 2.0.90", + "syn 2.0.91", ] [[package]] @@ -2861,7 +2861,7 @@ dependencies = [ "quote", "regex", "sha2", - "syn 2.0.90", + "syn 2.0.91", "walkdir", ] @@ -3771,7 +3771,7 @@ checksum = "c34819042dc3d3971c46c2190835914dfbe0c3c13f61449b2997f4e9722dfa60" dependencies = [ "proc-macro2", "quote", - "syn 2.0.90", + "syn 2.0.91", ] [[package]] @@ -4359,7 +4359,7 @@ dependencies = [ "heck 0.5.0", "proc-macro2", "quote", - "syn 2.0.90", + "syn 2.0.91", ] [[package]] @@ -4479,7 +4479,7 @@ dependencies = [ "quote", "regex-syntax 0.8.5", "rustc_version", - "syn 2.0.90", + "syn 2.0.91", ] [[package]] @@ -4865,7 +4865,7 @@ checksum = "ed3955f1a9c7c0c15e092f9c887db08b1fc683305fdf6eb6684f22555355e202" dependencies = [ "proc-macro2", "quote", - "syn 2.0.90", + "syn 2.0.91", ] [[package]] @@ -5295,7 +5295,7 @@ checksum = "3c0f5fad0874fc7abcd4d750e76917eaebbecaa2c20bde22e1dbeeba8beb758c" dependencies = [ "proc-macro2", "quote", - "syn 2.0.90", + "syn 2.0.91", ] [[package]] @@ -5420,7 +5420,7 @@ dependencies = [ "heck 0.5.0", "proc-macro2", "quote", - "syn 2.0.90", + "syn 2.0.91", ] [[package]] @@ -5489,7 +5489,7 @@ source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "479cf940fbbb3426c32c5d5176f62ad57549a0bb84773423ba8be9d089f5faba" dependencies = [ "proc-macro2", - "syn 2.0.90", + "syn 2.0.91", ] [[package]] @@ -5562,7 +5562,7 @@ source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "a65f2e60fbf1063868558d69c6beacf412dc755f9fc020f514b7955fc914fe30" dependencies = [ "quote", - "syn 2.0.90", + "syn 2.0.91", ] [[package]] @@ -5585,7 +5585,7 @@ checksum = "440f724eba9f6996b75d63681b0a92b06947f1457076d503a4d2e2c8f56442b8" dependencies = [ "proc-macro2", "quote", - "syn 2.0.90", + "syn 2.0.91", ] [[package]] @@ -5631,7 +5631,7 @@ dependencies = [ "prost", "prost-types", "regex", - "syn 2.0.90", + "syn 2.0.91", "tempfile", ] @@ -5645,7 +5645,7 @@ dependencies = [ "itertools 0.13.0", "proc-macro2", "quote", - "syn 2.0.90", + "syn 2.0.91", ] [[package]] @@ -5966,7 +5966,7 @@ checksum = "bcc303e793d3734489387d205e9b186fac9c6cfacedd98cbb2e8a5943595f3e6" dependencies = [ "proc-macro2", "quote", - "syn 2.0.90", + "syn 2.0.91", ] [[package]] @@ -6022,7 +6022,7 @@ dependencies = [ "quote", "refinery-core", "regex", - "syn 2.0.90", + "syn 2.0.91", ] [[package]] @@ -6614,7 +6614,7 @@ checksum = "46f859dbbf73865c6627ed570e78961cd3ac92407a2d117204c49232485da55e" dependencies = [ "proc-macro2", "quote", - "syn 2.0.90", + "syn 2.0.91", ] [[package]] @@ -6625,7 +6625,7 @@ checksum = "e578a843d40b4189a4d66bba51d7684f57da5bd7c304c64e14bd63efbef49509" dependencies = [ "proc-macro2", "quote", - "syn 2.0.90", + "syn 2.0.91", ] [[package]] @@ -6707,7 +6707,7 @@ dependencies = [ "darling", "proc-macro2", "quote", - "syn 2.0.90", + "syn 2.0.91", ] [[package]] @@ -6926,7 +6926,7 @@ dependencies = [ "proc-macro2", "quote", "structmeta-derive", - "syn 2.0.90", + "syn 2.0.91", ] [[package]] @@ -6937,7 +6937,7 @@ checksum = "152a0b65a590ff6c3da95cabe2353ee04e6167c896b28e3b14478c2636c922fc" dependencies = [ "proc-macro2", "quote", - "syn 2.0.90", + "syn 2.0.91", ] [[package]] @@ -6974,9 +6974,9 @@ dependencies = [ [[package]] name = "syn" -version = "2.0.90" +version = "2.0.91" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "919d3b74a5dd0ccd15aeb8f93e7006bd9e14c295087c9896a110f490752bcf31" +checksum = "d53cbcb5a243bd33b7858b1d7f4aca2153490815872d86d955d6ea29f743c035" dependencies = [ "proc-macro2", "quote", @@ -7000,7 +7000,7 @@ checksum = "c8af7666ab7b6390ab78131fb5b0fce11d6b7a6951602017c35fa82800708971" dependencies = [ "proc-macro2", "quote", - "syn 2.0.90", + "syn 2.0.91", ] [[package]] @@ -7101,7 +7101,7 @@ checksum = "e0e3d9676af494694e11a3e367a4bfa7f6d1d5566bd0fe9aceb4aa9281122ab8" dependencies = [ "proc-macro2", "quote", - "syn 2.0.90", + "syn 2.0.91", ] [[package]] @@ -7242,7 +7242,7 @@ dependencies = [ "prettyplease", "proc-macro2", "quote", - "syn 2.0.90", + "syn 2.0.91", ] [[package]] @@ -7276,7 +7276,7 @@ checksum = "5999e24eaa32083191ba4e425deb75cdf25efefabe5aaccb7446dd0d4122a3f5" dependencies = [ "proc-macro2", "quote", - "syn 2.0.90", + "syn 2.0.91", ] [[package]] @@ -7288,7 +7288,7 @@ dependencies = [ "proc-macro2", "quote", "structmeta", - "syn 2.0.90", + "syn 2.0.91", ] [[package]] @@ -7326,7 +7326,7 @@ checksum = "4fee6c4efc90059e10f81e6d42c60a18f76588c3d74cb83a0b242a2b6c7504c1" dependencies = [ "proc-macro2", "quote", - "syn 2.0.90", + "syn 2.0.91", ] [[package]] @@ -7337,7 +7337,7 @@ checksum = "f2f357fcec90b3caef6623a099691be676d033b40a058ac95d2a6ade6fa0c943" dependencies = [ "proc-macro2", "quote", - "syn 2.0.90", + "syn 2.0.91", ] [[package]] @@ -7442,7 +7442,7 @@ checksum = "693d596312e88961bc67d7f1f97af8a70227d9f90c31bba5806eec004978d752" dependencies = [ "proc-macro2", "quote", - "syn 2.0.90", + "syn 2.0.91", ] [[package]] @@ -7628,7 +7628,7 @@ dependencies = [ "prost-build", "prost-types", "quote", - "syn 2.0.90", + "syn 2.0.91", ] [[package]] @@ -7741,7 +7741,7 @@ checksum = "395ae124c09f9e6918a2310af6038fba074bcf474ac352496d5910dd59a2226d" dependencies = [ "proc-macro2", "quote", - "syn 2.0.90", + "syn 2.0.91", ] [[package]] @@ -7857,7 +7857,7 @@ checksum = "70977707304198400eb4835a78f6a9f928bf41bba420deb8fdb175cd965d77a7" dependencies = [ "proc-macro2", "quote", - "syn 2.0.90", + "syn 2.0.91", ] [[package]] @@ -7903,7 +7903,7 @@ dependencies = [ "proc-macro2", "quote", "serde_derive_internals", - "syn 2.0.90", + "syn 2.0.91", ] [[package]] @@ -7968,7 +7968,7 @@ checksum = "70b20a22c42c8f1cd23ce5e34f165d4d37038f5b663ad20fb6adbdf029172483" dependencies = [ "proc-macro2", "quote", - "syn 2.0.90", + "syn 2.0.91", ] [[package]] @@ -8146,7 +8146,7 @@ dependencies = [ "proc-macro-error", "proc-macro2", "quote", - "syn 2.0.90", + "syn 2.0.91", "url", "uuid", ] @@ -8283,7 +8283,7 @@ dependencies = [ "log", "proc-macro2", "quote", - "syn 2.0.90", + "syn 2.0.91", "wasm-bindgen-shared", ] @@ -8318,7 +8318,7 @@ checksum = "30d7a95b763d3c45903ed6c81f156801839e5ee968bb07e534c44df0fcd330c2" dependencies = [ "proc-macro2", "quote", - "syn 2.0.90", + "syn 2.0.91", "wasm-bindgen-backend", "wasm-bindgen-shared", ] @@ -8351,7 +8351,7 @@ checksum = "54171416ce73aa0b9c377b51cc3cb542becee1cd678204812e8392e5b0e4a031" dependencies = [ "proc-macro2", "quote", - "syn 2.0.90", + "syn 2.0.91", ] [[package]] @@ -8817,7 +8817,7 @@ checksum = "fa4f8080344d4671fb4e831a13ad1e68092748387dfc4f55e356242fae12ce3e" dependencies = [ "proc-macro2", "quote", - "syn 2.0.90", + "syn 2.0.91", ] [[package]] @@ -8837,7 +8837,7 @@ checksum = "ce36e65b0d2999d2aafac989fb249189a141aee1f53c612c1f37d72631959f69" dependencies = [ "proc-macro2", "quote", - "syn 2.0.90", + "syn 2.0.91", ] [[package]] diff --git a/Cargo.toml b/Cargo.toml index d6fa922f66f..2497485afbe 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -212,7 +212,7 @@ sha2 = { version = "=0.10.8", default-features = false } similar-asserts = { version = "=1.6.0", default-features = false } supports-color = { version = "=3.0.2", default-features = false } supports-unicode = { version = "=3.0.0", default-features = false } -syn = { version = "=2.0.90", default-features = false } +syn = { version = "=2.0.91", default-features = false } tachyonix = { version = "=0.3.1", default-features = false } tarpc = { version = "=0.35.0", default-features = false } temporal-client = { git = "https://github.com/temporalio/sdk-core", rev = "4a2368d" } From cdac7d18b1d8cc3ced4e3f784c40301f4c2c41e3 Mon Sep 17 00:00:00 2001 From: "hash-worker[bot]" <180894564+hash-worker[bot]@users.noreply.github.com> Date: Mon, 23 Dec 2024 18:31:20 +0000 Subject: [PATCH 092/159] Update Rust toolchains to nightly-2024-12-23 (#5998) Co-authored-by: hash-worker[bot] <180894564+hash-worker[bot]@users.noreply.github.com> Co-authored-by: Tim Diekmann --- libs/antsi/rust-toolchain.toml | 2 +- libs/deer/rust-toolchain.toml | 2 +- libs/error-stack/README.md | 2 +- libs/error-stack/macros/README.md | 2 +- libs/error-stack/rust-toolchain.toml | 2 +- libs/error-stack/src/lib.rs | 2 +- libs/sarif/rust-toolchain.toml | 2 +- libs/sarif/src/lib.rs | 1 - rust-toolchain.toml | 2 +- 9 files changed, 8 insertions(+), 9 deletions(-) diff --git a/libs/antsi/rust-toolchain.toml b/libs/antsi/rust-toolchain.toml index db20fee454d..5791aacb4cb 100644 --- a/libs/antsi/rust-toolchain.toml +++ b/libs/antsi/rust-toolchain.toml @@ -1,3 +1,3 @@ [toolchain] -channel = "nightly-2024-12-16" +channel = "nightly-2024-12-23" components = ['rustfmt', 'clippy', 'llvm-tools-preview', 'rust-analyzer', 'rustc-codegen-cranelift-preview'] diff --git a/libs/deer/rust-toolchain.toml b/libs/deer/rust-toolchain.toml index 22148121209..4e6bbb199b4 100644 --- a/libs/deer/rust-toolchain.toml +++ b/libs/deer/rust-toolchain.toml @@ -1,3 +1,3 @@ [toolchain] -channel = "nightly-2024-12-16" +channel = "nightly-2024-12-23" components = ['rustfmt', 'clippy', 'llvm-tools-preview', 'miri', 'rust-analyzer', 'rustc-codegen-cranelift-preview'] diff --git a/libs/error-stack/README.md b/libs/error-stack/README.md index 5155f418a76..9924336b7dd 100644 --- a/libs/error-stack/README.md +++ b/libs/error-stack/README.md @@ -7,7 +7,7 @@ [![crates.io](https://img.shields.io/crates/v/error-stack)][crates.io] [![libs.rs](https://img.shields.io/badge/libs.rs-error--stack-orange)][libs.rs] -[![rust-version](https://img.shields.io/static/v1?label=Rust&message=1.83.0/nightly-2024-12-16&color=blue)][rust-version] +[![rust-version](https://img.shields.io/static/v1?label=Rust&message=1.83.0/nightly-2024-12-23&color=blue)][rust-version] [![documentation](https://img.shields.io/docsrs/error-stack)][documentation] [![license](https://img.shields.io/crates/l/error-stack)][license] diff --git a/libs/error-stack/macros/README.md b/libs/error-stack/macros/README.md index 13cfbf5b807..1deb0c38199 100644 --- a/libs/error-stack/macros/README.md +++ b/libs/error-stack/macros/README.md @@ -6,7 +6,7 @@ [![crates.io](https://img.shields.io/crates/v/error-stack-macros)][crates.io] [![libs.rs](https://img.shields.io/badge/libs.rs-error--stack--macros-orange)][libs.rs] -[![rust-version](https://img.shields.io/static/v1?label=Rust&message=1.83.0/nightly-2024-12-16&color=blue)][rust-version] +[![rust-version](https://img.shields.io/static/v1?label=Rust&message=1.83.0/nightly-2024-12-23&color=blue)][rust-version] [![documentation](https://img.shields.io/docsrs/error-stack-macros)][documentation] [![license](https://img.shields.io/crates/l/error-stack)][license] diff --git a/libs/error-stack/rust-toolchain.toml b/libs/error-stack/rust-toolchain.toml index 1b06e858cdf..507fa516bb1 100644 --- a/libs/error-stack/rust-toolchain.toml +++ b/libs/error-stack/rust-toolchain.toml @@ -1,4 +1,4 @@ [toolchain] # Please also update the badges in `README.md`s (`error-stack` and `error-stack-macros`), and `src/lib.rs` -channel = "nightly-2024-12-16" +channel = "nightly-2024-12-23" components = ['rustfmt', 'clippy', 'llvm-tools-preview', 'miri', 'rust-src', 'rust-analyzer', 'rustc-codegen-cranelift-preview'] diff --git a/libs/error-stack/src/lib.rs b/libs/error-stack/src/lib.rs index 42cb5f23e46..ed9d65f769b 100644 --- a/libs/error-stack/src/lib.rs +++ b/libs/error-stack/src/lib.rs @@ -2,7 +2,7 @@ //! //! [![crates.io](https://img.shields.io/crates/v/error-stack)][crates.io] //! [![libs.rs](https://img.shields.io/badge/libs.rs-error--stack-orange)][libs.rs] -//! [![rust-version](https://img.shields.io/static/v1?label=Rust&message=1.83.0/nightly-2024-12-16&color=blue)][rust-version] +//! [![rust-version](https://img.shields.io/static/v1?label=Rust&message=1.83.0/nightly-2024-12-23&color=blue)][rust-version] //! //! [crates.io]: https://crates.io/crates/error-stack //! [libs.rs]: https://lib.rs/crates/error-stack diff --git a/libs/sarif/rust-toolchain.toml b/libs/sarif/rust-toolchain.toml index db20fee454d..5791aacb4cb 100644 --- a/libs/sarif/rust-toolchain.toml +++ b/libs/sarif/rust-toolchain.toml @@ -1,3 +1,3 @@ [toolchain] -channel = "nightly-2024-12-16" +channel = "nightly-2024-12-23" components = ['rustfmt', 'clippy', 'llvm-tools-preview', 'rust-analyzer', 'rustc-codegen-cranelift-preview'] diff --git a/libs/sarif/src/lib.rs b/libs/sarif/src/lib.rs index 098a72b8ba8..0b4a537ab32 100644 --- a/libs/sarif/src/lib.rs +++ b/libs/sarif/src/lib.rs @@ -1,5 +1,4 @@ #![no_std] -#![feature(coverage_attribute)] #![expect( missing_docs, reason = "conditionally including docs resulting in false positives. We want to globally \ diff --git a/rust-toolchain.toml b/rust-toolchain.toml index 22148121209..4e6bbb199b4 100644 --- a/rust-toolchain.toml +++ b/rust-toolchain.toml @@ -1,3 +1,3 @@ [toolchain] -channel = "nightly-2024-12-16" +channel = "nightly-2024-12-23" components = ['rustfmt', 'clippy', 'llvm-tools-preview', 'miri', 'rust-analyzer', 'rustc-codegen-cranelift-preview'] From 005f493b6566c5583cf0a5def6b7c9dca5230acd Mon Sep 17 00:00:00 2001 From: "hash-worker[bot]" <180894564+hash-worker[bot]@users.noreply.github.com> Date: Mon, 23 Dec 2024 19:08:37 +0000 Subject: [PATCH 093/159] Update Rust crate `thiserror` to v2.0.9 (#5995) Co-authored-by: hash-worker[bot] <180894564+hash-worker[bot]@users.noreply.github.com> --- Cargo.lock | 46 +++++++++++++++++++++++----------------------- Cargo.toml | 2 +- 2 files changed, 24 insertions(+), 24 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index 3d03d4c5f55..50eb56a9d90 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -1158,7 +1158,7 @@ dependencies = [ "image", "insta", "pdfium-render", - "thiserror 2.0.8", + "thiserror 2.0.9", ] [[package]] @@ -1984,7 +1984,7 @@ dependencies = [ "spin 0.9.8", "supports-color", "supports-unicode", - "thiserror 2.0.8", + "thiserror 2.0.9", "tracing", "tracing-error", "tracing-subscriber", @@ -2505,7 +2505,7 @@ dependencies = [ "multiaddr", "serde", "serde-value", - "thiserror 2.0.8", + "thiserror 2.0.9", "tokio-util", "tower 0.5.2", ] @@ -2523,7 +2523,7 @@ dependencies = [ "pin-project-lite", "serde", "serde_json", - "thiserror 2.0.8", + "thiserror 2.0.9", "tokio", ] @@ -2561,7 +2561,7 @@ dependencies = [ "serde", "tachyonix", "test-log", - "thiserror 2.0.8", + "thiserror 2.0.9", "tokio", "tokio-stream", "tokio-util", @@ -2589,7 +2589,7 @@ dependencies = [ "multiaddr", "scc", "serde", - "thiserror 2.0.8", + "thiserror 2.0.9", "tokio", "tokio-util", "tower 0.5.2", @@ -2622,7 +2622,7 @@ dependencies = [ "pin-project", "pin-project-lite", "serde", - "thiserror 2.0.8", + "thiserror 2.0.9", "tokio", "tokio-test", "tokio-util", @@ -2656,7 +2656,7 @@ dependencies = [ "serde_json", "similar-asserts", "test-strategy", - "thiserror 2.0.8", + "thiserror 2.0.9", ] [[package]] @@ -2918,7 +2918,7 @@ dependencies = [ "postgres-types", "serde", "serde_json", - "thiserror 2.0.8", + "thiserror 2.0.9", "tokio", "tokio-postgres", "tracing", @@ -3014,7 +3014,7 @@ dependencies = [ "semver", "serde", "serde_json", - "thiserror 2.0.8", + "thiserror 2.0.9", "time", "tokio", "trait-variant", @@ -3038,7 +3038,7 @@ dependencies = [ "regex", "serde", "serde_json", - "thiserror 2.0.8", + "thiserror 2.0.9", "tokio", "type-system", "url", @@ -3061,7 +3061,7 @@ dependencies = [ "inferno", "serde", "serde_json", - "thiserror 2.0.8", + "thiserror 2.0.9", "tokio", "walkdir", ] @@ -3083,7 +3083,7 @@ dependencies = [ "serde_json", "temporal-client", "temporal-sdk-core-protos", - "thiserror 2.0.8", + "thiserror 2.0.9", "url", "uuid", ] @@ -3282,7 +3282,7 @@ dependencies = [ "serde_json", "serde_with", "text-size", - "thiserror 2.0.8", + "thiserror 2.0.9", ] [[package]] @@ -7139,7 +7139,7 @@ dependencies = [ "slotmap", "temporal-sdk-core-api", "temporal-sdk-core-protos", - "thiserror 2.0.8", + "thiserror 2.0.9", "tokio", "tonic", "tower 0.5.2", @@ -7160,7 +7160,7 @@ dependencies = [ "prost-types", "serde_json", "temporal-sdk-core-protos", - "thiserror 2.0.8", + "thiserror 2.0.9", "tonic", "tracing-core", "url", @@ -7182,7 +7182,7 @@ dependencies = [ "prost-wkt-types", "serde", "serde_json", - "thiserror 2.0.8", + "thiserror 2.0.9", "tonic", "tonic-build", ] @@ -7311,11 +7311,11 @@ dependencies = [ [[package]] name = "thiserror" -version = "2.0.8" +version = "2.0.9" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "08f5383f3e0071702bf93ab5ee99b52d26936be9dedd9413067cbdcddcb6141a" +checksum = "f072643fd0190df67a8bab670c20ef5d8737177d6ac6b2e9a236cb096206b2cc" dependencies = [ - "thiserror-impl 2.0.8", + "thiserror-impl 2.0.9", ] [[package]] @@ -7331,9 +7331,9 @@ dependencies = [ [[package]] name = "thiserror-impl" -version = "2.0.8" +version = "2.0.9" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "f2f357fcec90b3caef6623a099691be676d033b40a058ac95d2a6ade6fa0c943" +checksum = "7b50fa271071aae2e6ee85f842e2e28ba8cd2c5fb67f11fcb1fd70b276f9e7d4" dependencies = [ "proc-macro2", "quote", @@ -7925,7 +7925,7 @@ dependencies = [ "regex", "serde", "serde_json", - "thiserror 2.0.8", + "thiserror 2.0.9", "tokio", "tsify", "url", diff --git a/Cargo.toml b/Cargo.toml index 2497485afbe..fc37e1c0eb4 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -220,7 +220,7 @@ temporal-sdk-core-protos = { git = "https://github.com/temporalio/sdk-core", rev test-fuzz = { version = "=7.0.1", default-features = false } test-log = { version = "=0.2.16", default-features = false } test-strategy = { version = "=0.4.0", default-features = false } -thiserror = { version = "=2.0.8", default-features = false } +thiserror = { version = "=2.0.9", default-features = false } tokio-stream = { version = "=0.1.17", default-features = false } tokio-test = { version = "=0.4.4", default-features = false } tower = { version = "=0.5.2", default-features = false } From d0806fa91f0e767a28c118951b80fca094b79f81 Mon Sep 17 00:00:00 2001 From: "hash-worker[bot]" <180894564+hash-worker[bot]@users.noreply.github.com> Date: Tue, 24 Dec 2024 00:43:28 +0000 Subject: [PATCH 094/159] Update Rust crate `jsonschema` to v0.27.0 (#5999) Co-authored-by: hash-worker[bot] <180894564+hash-worker[bot]@users.noreply.github.com> --- Cargo.lock | 8 ++++---- Cargo.toml | 2 +- 2 files changed, 5 insertions(+), 5 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index 50eb56a9d90..aa73c3ccedc 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -3909,9 +3909,9 @@ dependencies = [ [[package]] name = "jsonschema" -version = "0.26.2" +version = "0.27.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "26a960f0c34d5423581d858ce94815cc11f0171b09939409097969ed269ede1b" +checksum = "bc38ec7f43c54485b3ae1970a345b2b54ba6681a52ce3919669f304a5d13ef78" dependencies = [ "ahash", "base64 0.22.1", @@ -5971,9 +5971,9 @@ dependencies = [ [[package]] name = "referencing" -version = "0.26.2" +version = "0.27.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "fb8e15af8558cb157432dd3d88c1d1e982d0a5755cf80ce593b6499260aebc49" +checksum = "29c10f0563f85afe089e962995e19b64fe0af341883a6304c45e12fdcfc97b5e" dependencies = [ "ahash", "fluent-uri", diff --git a/Cargo.toml b/Cargo.toml index fc37e1c0eb4..c1936c1be66 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -175,7 +175,7 @@ hyper = { version = "=1.5.2", default-features = false } include_dir = { version = "=0.7.4", default-features = false } insta = { version = "=1.41.1", default-features = false } itertools = { version = "0.13.0", default-features = false } -jsonschema = { version = "=0.26.2", default-features = false } +jsonschema = { version = "=0.27.0", default-features = false } justjson = { version = "=0.3.0", default-features = false } lexical = { version = "=7.0.4", default-features = false } libp2p = { version = "=0.54.1", default-features = false } From bdccbbe4270c16088b1bce6153255e7196732f85 Mon Sep 17 00:00:00 2001 From: "hash-worker[bot]" <180894564+hash-worker[bot]@users.noreply.github.com> Date: Tue, 24 Dec 2024 10:32:08 +0000 Subject: [PATCH 095/159] Update `effect` npm packages (#6001) Co-authored-by: hash-worker[bot] <180894564+hash-worker[bot]@users.noreply.github.com> --- apps/hash-api/package.json | 2 +- libs/@local/eslint/package.json | 2 +- libs/@local/graph/sdk/typescript/package.json | 2 +- .../harpc/client/typescript/package.json | 6 +- yarn.lock | 66 +++++++++---------- 5 files changed, 39 insertions(+), 39 deletions(-) diff --git a/apps/hash-api/package.json b/apps/hash-api/package.json index 887d496c7fd..be26cccf2a2 100644 --- a/apps/hash-api/package.json +++ b/apps/hash-api/package.json @@ -73,7 +73,7 @@ "cors": "2.8.5", "cross-env": "7.0.3", "dedent": "0.7.0", - "effect": "3.11.9", + "effect": "3.12.0", "exponential-backoff": "3.1.1", "express": "4.21.2", "express-handlebars": "7.1.3", diff --git a/libs/@local/eslint/package.json b/libs/@local/eslint/package.json index c10128df3b1..e9f92308329 100644 --- a/libs/@local/eslint/package.json +++ b/libs/@local/eslint/package.json @@ -24,7 +24,7 @@ "@babel/eslint-parser": "7.25.9", "@eslint/compat": "1.2.4", "@eslint/eslintrc": "3.2.0", - "effect": "3.11.9", + "effect": "3.12.0", "eslint": "9.17.0", "eslint-config-airbnb": "19.0.4", "eslint-config-flat-gitignore": "0.3.0", diff --git a/libs/@local/graph/sdk/typescript/package.json b/libs/@local/graph/sdk/typescript/package.json index 301b9bcff63..c416da00ff3 100644 --- a/libs/@local/graph/sdk/typescript/package.json +++ b/libs/@local/graph/sdk/typescript/package.json @@ -28,7 +28,7 @@ "@local/harpc-client": "0.0.0-private", "@local/hash-graph-client": "0.0.0-private", "@local/hash-graph-types": "0.0.0-private", - "effect": "3.11.9" + "effect": "3.12.0" }, "devDependencies": { "@local/eslint": "0.0.0-private", diff --git a/libs/@local/harpc/client/typescript/package.json b/libs/@local/harpc/client/typescript/package.json index cc14688d97f..c6bb14c353c 100644 --- a/libs/@local/harpc/client/typescript/package.json +++ b/libs/@local/harpc/client/typescript/package.json @@ -32,15 +32,15 @@ "@libp2p/tcp": "10.0.14", "@multiformats/dns": "1.0.6", "@multiformats/multiaddr": "12.3.4", - "effect": "3.11.9", + "effect": "3.12.0", "it-stream-types": "2.0.2", "libp2p": "2.4.2", "multiformats": "13.3.1", "uint8arraylist": "2.4.8" }, "devDependencies": { - "@effect/platform": "0.71.6", - "@effect/platform-node": "0.67.2", + "@effect/platform": "0.72.0", + "@effect/platform-node": "0.68.0", "@effect/vitest": "0.14.9", "@local/eslint": "0.0.0-private", "@local/tsconfig": "0.0.0-private", diff --git a/yarn.lock b/yarn.lock index 635d7eb42ee..ab4680a163d 100644 --- a/yarn.lock +++ b/yarn.lock @@ -412,7 +412,7 @@ __metadata: cors: "npm:2.8.5" cross-env: "npm:7.0.3" dedent: "npm:0.7.0" - effect: "npm:3.11.9" + effect: "npm:3.12.0" eslint: "npm:9.17.0" exponential-backoff: "npm:3.1.1" express: "npm:4.21.2" @@ -5798,43 +5798,43 @@ __metadata: languageName: node linkType: hard -"@effect/platform-node-shared@npm:^0.21.6": - version: 0.21.6 - resolution: "@effect/platform-node-shared@npm:0.21.6" +"@effect/platform-node-shared@npm:^0.22.0": + version: 0.22.0 + resolution: "@effect/platform-node-shared@npm:0.22.0" dependencies: "@parcel/watcher": "npm:^2.4.1" multipasta: "npm:^0.2.5" peerDependencies: - "@effect/platform": ^0.71.6 - effect: ^3.11.9 - checksum: 10c0/6ba2017ae4c99775cae9d52741ed4391b0ff96e938b43f7a14cb59f0b550c2deae7abc30bd6acae7e28944ec3dc64790c196c2d2306ed4981ee5f86d18b4e47c + "@effect/platform": ^0.72.0 + effect: ^3.12.0 + checksum: 10c0/3c4b669bb0f19b875b2b3c9c767b78b34c590c49c7ef23311d0b1f04b47db335a1a47ef07706da4009887b1fab344c72ea81a576875ab3f0254edf14cfa2e16e languageName: node linkType: hard -"@effect/platform-node@npm:0.67.2": - version: 0.67.2 - resolution: "@effect/platform-node@npm:0.67.2" +"@effect/platform-node@npm:0.68.0": + version: 0.68.0 + resolution: "@effect/platform-node@npm:0.68.0" dependencies: - "@effect/platform-node-shared": "npm:^0.21.6" + "@effect/platform-node-shared": "npm:^0.22.0" mime: "npm:^3.0.0" undici: "npm:^7.1.0" ws: "npm:^8.18.0" peerDependencies: - "@effect/platform": ^0.71.6 - effect: ^3.11.9 - checksum: 10c0/5dc91bbef5a752a5aa8166687d3cc807ca48bbb2a28dec8c414a630037072381413451161d308e08f269f58b2482f0ed3e93d002a39c857faf209bc4d3313045 + "@effect/platform": ^0.72.0 + effect: ^3.12.0 + checksum: 10c0/e9684cdf49685b7bd51e21b0e9c3668a867e0eee704ccc89530460f6dca1997fff75f4c95b492d2e5ac472e4153531a6ed8e7eda88ffb79b2e43d7a5df5f8d65 languageName: node linkType: hard -"@effect/platform@npm:0.71.6": - version: 0.71.6 - resolution: "@effect/platform@npm:0.71.6" +"@effect/platform@npm:0.72.0": + version: 0.72.0 + resolution: "@effect/platform@npm:0.72.0" dependencies: find-my-way-ts: "npm:^0.1.5" multipasta: "npm:^0.2.5" peerDependencies: - effect: ^3.11.9 - checksum: 10c0/ffbab4bf7a31cd73781898cb0c4a5fe1d6c1198c3751180fe6eb44afe91c78c63662a60a3b36e24680536c74361f9bb37410f618bf1de95a27a6ebe30fb69d73 + effect: ^3.12.0 + checksum: 10c0/55e2c5d3f851b2527b833c34b8486a6bf214642c62d9330cc0e5f3746011038613a2848c77b0aa0296ccf505098421c8d384d351050a9ff4b96645d808fc76ff languageName: node linkType: hard @@ -9299,7 +9299,7 @@ __metadata: "@types/babel__core": "npm:^7" "@types/eslint__eslintrc": "npm:2.1.2" "@types/node": "npm:22.10.2" - effect: "npm:3.11.9" + effect: "npm:3.12.0" eslint: "npm:9.17.0" eslint-config-airbnb: "npm:19.0.4" eslint-config-flat-gitignore: "npm:0.3.0" @@ -9324,8 +9324,8 @@ __metadata: dependencies: "@chainsafe/libp2p-noise": "npm:16.0.0" "@chainsafe/libp2p-yamux": "npm:7.0.1" - "@effect/platform": "npm:0.71.6" - "@effect/platform-node": "npm:0.67.2" + "@effect/platform": "npm:0.72.0" + "@effect/platform-node": "npm:0.68.0" "@effect/vitest": "npm:0.14.9" "@libp2p/crypto": "npm:5.0.8" "@libp2p/identify": "npm:3.0.14" @@ -9339,7 +9339,7 @@ __metadata: "@rust/harpc-wire-protocol": "npm:0.0.0-private" "@types/node": "npm:22.10.2" "@vitest/coverage-istanbul": "npm:2.1.8" - effect: "npm:3.11.9" + effect: "npm:3.12.0" eslint: "npm:9.17.0" it-stream-types: "npm:2.0.2" libp2p: "npm:2.4.2" @@ -9427,7 +9427,7 @@ __metadata: "@local/hash-graph-types": "npm:0.0.0-private" "@local/tsconfig": "npm:0.0.0-private" "@vitest/coverage-istanbul": "npm:2.1.8" - effect: "npm:3.11.9" + effect: "npm:3.12.0" eslint: "npm:9.17.0" rimraf: "npm:6.0.1" typescript: "npm:5.7.2" @@ -25501,12 +25501,12 @@ __metadata: languageName: node linkType: hard -"effect@npm:3.11.9": - version: 3.11.9 - resolution: "effect@npm:3.11.9" +"effect@npm:3.12.0": + version: 3.12.0 + resolution: "effect@npm:3.12.0" dependencies: - fast-check: "npm:^3.21.0" - checksum: 10c0/d86a49ae2bb29a609e22cf1318e56a8343db3c8e5e0f49cef3401e725779c15a767cdcd390b85288a13cc82fef29879f060b43513d00f1b65e1b0aa4510527c1 + fast-check: "npm:^3.23.1" + checksum: 10c0/b0719886e39c11c4e5715c8b2b1e8af0c43eb11877b07d1489629b79b7b576a03721bbff4dd6f08a503ee4379aaae874909cb50677f76397bcec8d8999960760 languageName: node linkType: hard @@ -27617,12 +27617,12 @@ __metadata: languageName: node linkType: hard -"fast-check@npm:^3.21.0": - version: 3.23.1 - resolution: "fast-check@npm:3.23.1" +"fast-check@npm:^3.23.1": + version: 3.23.2 + resolution: "fast-check@npm:3.23.2" dependencies: pure-rand: "npm:^6.1.0" - checksum: 10c0/d61ee4a7a2e1abc5126bf2f1894413f532f686b3d1fc15c67fefb60dcca66024934b69a6454d3eba92e6568ac1abbb9882080e212d255865c3b3bbe52c5bf702 + checksum: 10c0/16fcff3c80321ee765e23c3aebd0f6427f175c9c6c1753104ec658970162365dc2d56bda046d815e8f2e90634c07ba7d6f0bcfd327fbd576d98c56a18a9765ed languageName: node linkType: hard From 92fb4cd83109b9f26dee913b71384c32de23146f Mon Sep 17 00:00:00 2001 From: "hash-worker[bot]" <180894564+hash-worker[bot]@users.noreply.github.com> Date: Tue, 24 Dec 2024 10:42:25 +0000 Subject: [PATCH 096/159] Update npm package `image-size` to v1.2.0 (#6003) Co-authored-by: hash-worker[bot] <180894564+hash-worker[bot]@users.noreply.github.com> --- apps/hashdotdev/package.json | 2 +- yarn.lock | 10 +++++----- 2 files changed, 6 insertions(+), 6 deletions(-) diff --git a/apps/hashdotdev/package.json b/apps/hashdotdev/package.json index 89becb39f8e..81a1402fafc 100644 --- a/apps/hashdotdev/package.json +++ b/apps/hashdotdev/package.json @@ -39,7 +39,7 @@ "fs-extra": "10.1.0", "gray-matter": "4.0.3", "html-to-text": "9.0.5", - "image-size": "1.1.1", + "image-size": "1.2.0", "katex": "0.16.18", "md5": "2.3.0", "mock-block-dock": "0.0.21", diff --git a/yarn.lock b/yarn.lock index ab4680a163d..f866d1d3c18 100644 --- a/yarn.lock +++ b/yarn.lock @@ -757,7 +757,7 @@ __metadata: fs-extra: "npm:10.1.0" gray-matter: "npm:4.0.3" html-to-text: "npm:9.0.5" - image-size: "npm:1.1.1" + image-size: "npm:1.2.0" katex: "npm:0.16.18" md5: "npm:2.3.0" mock-block-dock: "npm:0.0.21" @@ -30712,14 +30712,14 @@ __metadata: languageName: node linkType: hard -"image-size@npm:1.1.1": - version: 1.1.1 - resolution: "image-size@npm:1.1.1" +"image-size@npm:1.2.0": + version: 1.2.0 + resolution: "image-size@npm:1.2.0" dependencies: queue: "npm:6.0.2" bin: image-size: bin/image-size.js - checksum: 10c0/2660470096d12be82195f7e80fe03274689fbd14184afb78eaf66ade7cd06352518325814f88af4bde4b26647889fe49e573129f6e7ba8f5ff5b85cc7f559000 + checksum: 10c0/782669b530d9bbdcb334c8451db5f104dfbbcf90940751e6b75ba4e1b86d98bf3127c339eac8fb7a25c7a9ec4ea868d27b4916df3943c269b7419a8cc4459dca languageName: node linkType: hard From e549e2e987a530bd329caaf68ac6b40be08df5d7 Mon Sep 17 00:00:00 2001 From: "hash-worker[bot]" <180894564+hash-worker[bot]@users.noreply.github.com> Date: Wed, 25 Dec 2024 00:41:48 +0000 Subject: [PATCH 097/159] Update Rust crate `jsonschema` to v0.27.1 (#6004) Co-authored-by: hash-worker[bot] <180894564+hash-worker[bot]@users.noreply.github.com> --- Cargo.lock | 8 ++++---- Cargo.toml | 2 +- 2 files changed, 5 insertions(+), 5 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index aa73c3ccedc..f2450512359 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -3909,9 +3909,9 @@ dependencies = [ [[package]] name = "jsonschema" -version = "0.27.0" +version = "0.27.1" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "bc38ec7f43c54485b3ae1970a345b2b54ba6681a52ce3919669f304a5d13ef78" +checksum = "c9deec35f105267485e0b85b4da7861d444ad498bd476418ec10aeaec3c2ead1" dependencies = [ "ahash", "base64 0.22.1", @@ -5971,9 +5971,9 @@ dependencies = [ [[package]] name = "referencing" -version = "0.27.0" +version = "0.27.1" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "29c10f0563f85afe089e962995e19b64fe0af341883a6304c45e12fdcfc97b5e" +checksum = "040034d1c0deb1c413e44dafaea2f8bd7d273f1b56de531ab8cee5a93acb1741" dependencies = [ "ahash", "fluent-uri", diff --git a/Cargo.toml b/Cargo.toml index c1936c1be66..d3b55701258 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -175,7 +175,7 @@ hyper = { version = "=1.5.2", default-features = false } include_dir = { version = "=0.7.4", default-features = false } insta = { version = "=1.41.1", default-features = false } itertools = { version = "0.13.0", default-features = false } -jsonschema = { version = "=0.27.0", default-features = false } +jsonschema = { version = "=0.27.1", default-features = false } justjson = { version = "=0.3.0", default-features = false } lexical = { version = "=7.0.4", default-features = false } libp2p = { version = "=0.54.1", default-features = false } From b0887f037d0e38b3d50c639f294fc17d8e00ea0d Mon Sep 17 00:00:00 2001 From: "hash-worker[bot]" <180894564+hash-worker[bot]@users.noreply.github.com> Date: Wed, 25 Dec 2024 23:53:31 +0000 Subject: [PATCH 098/159] Update npm package `@effect/vitest` to v0.16.0 (#6002) Co-authored-by: hash-worker[bot] <180894564+hash-worker[bot]@users.noreply.github.com> --- libs/@local/harpc/client/typescript/package.json | 2 +- yarn.lock | 12 ++++++------ 2 files changed, 7 insertions(+), 7 deletions(-) diff --git a/libs/@local/harpc/client/typescript/package.json b/libs/@local/harpc/client/typescript/package.json index c6bb14c353c..63bd34b60f3 100644 --- a/libs/@local/harpc/client/typescript/package.json +++ b/libs/@local/harpc/client/typescript/package.json @@ -41,7 +41,7 @@ "devDependencies": { "@effect/platform": "0.72.0", "@effect/platform-node": "0.68.0", - "@effect/vitest": "0.14.9", + "@effect/vitest": "0.16.0", "@local/eslint": "0.0.0-private", "@local/tsconfig": "0.0.0-private", "@rust/harpc-wire-protocol": "0.0.0-private", diff --git a/yarn.lock b/yarn.lock index f866d1d3c18..50ccbbc8c98 100644 --- a/yarn.lock +++ b/yarn.lock @@ -5838,13 +5838,13 @@ __metadata: languageName: node linkType: hard -"@effect/vitest@npm:0.14.9": - version: 0.14.9 - resolution: "@effect/vitest@npm:0.14.9" +"@effect/vitest@npm:0.16.0": + version: 0.16.0 + resolution: "@effect/vitest@npm:0.16.0" peerDependencies: - effect: ^3.11.9 + effect: ^3.12.0 vitest: ^2.0.5 - checksum: 10c0/0a5ffb7e3d20100fb1d73add54d083611c04d52df5a82cadd8d21aca5db32c496fc1386074621f40a7315d8aef0667295527acf0842fa9a4c5cfe8daee58d12d + checksum: 10c0/6417db36c49f42752ea520858c8b4f7de0d201c012c4a090185b32ce206251f8f5674d62d75bd8c732cd1638bf7185b52c9b77bd3464805539e2d153960d3322 languageName: node linkType: hard @@ -9326,7 +9326,7 @@ __metadata: "@chainsafe/libp2p-yamux": "npm:7.0.1" "@effect/platform": "npm:0.72.0" "@effect/platform-node": "npm:0.68.0" - "@effect/vitest": "npm:0.14.9" + "@effect/vitest": "npm:0.16.0" "@libp2p/crypto": "npm:5.0.8" "@libp2p/identify": "npm:3.0.14" "@libp2p/interface": "npm:2.3.0" From 1b770b29a13689b2932c7316a9d47657ab2029e3 Mon Sep 17 00:00:00 2001 From: "hash-worker[bot]" <180894564+hash-worker[bot]@users.noreply.github.com> Date: Thu, 26 Dec 2024 00:42:20 +0000 Subject: [PATCH 099/159] Update Rust crate `serde_with` to v3.12.0 (#6005) Co-authored-by: hash-worker[bot] <180894564+hash-worker[bot]@users.noreply.github.com> --- Cargo.lock | 8 ++++---- Cargo.toml | 2 +- 2 files changed, 5 insertions(+), 5 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index f2450512359..c57783f5c32 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -6682,9 +6682,9 @@ dependencies = [ [[package]] name = "serde_with" -version = "3.11.0" +version = "3.12.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "8e28bdad6db2b8340e449f7108f020b3b092e8583a9e3fb82713e1d4e71fe817" +checksum = "d6b6f7f2fcb69f747921f79f3926bd1e203fce4fef62c268dd3abfb6d86029aa" dependencies = [ "base64 0.22.1", "chrono", @@ -6700,9 +6700,9 @@ dependencies = [ [[package]] name = "serde_with_macros" -version = "3.11.0" +version = "3.12.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "9d846214a9854ef724f3da161b426242d8de7c1fc7de2f89bb1efcb154dca79d" +checksum = "8d00caa5193a3c8362ac2b73be6b9e768aa5a4b2f721d8f4b339600c3cb51f8e" dependencies = [ "darling", "proc-macro2", diff --git a/Cargo.toml b/Cargo.toml index d3b55701258..12f74bfc971 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -207,7 +207,7 @@ scc = { version = "=2.2.6", default-features = false } sentry = { version = "=0.35.0", default-features = false, features = ["backtrace", "contexts", "debug-images", "panic", "reqwest", "rustls", "tower-http", "tracing"] } seq-macro = { version = "=0.3.5", default-features = false } serde_plain = { version = "=1.0.2", default-features = false } -serde_with = { version = "=3.11.0", default-features = false } +serde_with = { version = "=3.12.0", default-features = false } sha2 = { version = "=0.10.8", default-features = false } similar-asserts = { version = "=1.6.0", default-features = false } supports-color = { version = "=3.0.2", default-features = false } From 75817e991ab3e3f667f83f331ce14f508bb38866 Mon Sep 17 00:00:00 2001 From: "hash-worker[bot]" <180894564+hash-worker[bot]@users.noreply.github.com> Date: Fri, 27 Dec 2024 01:53:51 +0000 Subject: [PATCH 100/159] Update Rust crate `syn` to v2.0.92 (#6008) Co-authored-by: hash-worker[bot] <180894564+hash-worker[bot]@users.noreply.github.com> --- Cargo.lock | 124 ++++++++++++++++++++++++++--------------------------- Cargo.toml | 2 +- 2 files changed, 63 insertions(+), 63 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index c57783f5c32..34291b8dd9c 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -213,7 +213,7 @@ checksum = "0ae92a5119aa49cdbcf6b9f893fe4e1d98b04ccbf82ee0584ad948a44a734dea" dependencies = [ "proc-macro2", "quote", - "syn 2.0.91", + "syn 2.0.92", ] [[package]] @@ -262,7 +262,7 @@ checksum = "965c2d33e53cb6b267e148a4cb0760bc01f4904c1cd4bb4002a085bb016d1490" dependencies = [ "proc-macro2", "quote", - "syn 2.0.91", + "syn 2.0.92", "synstructure", ] @@ -274,7 +274,7 @@ checksum = "7b18050c2cd6fe86c3a76584ef5e0baf286d038cda203eb6223df2cc413565f7" dependencies = [ "proc-macro2", "quote", - "syn 2.0.91", + "syn 2.0.92", ] [[package]] @@ -347,7 +347,7 @@ checksum = "c7c24de15d275a1ecfd47a380fb4d5ec9bfe0933f309ed5e705b775596a3574d" dependencies = [ "proc-macro2", "quote", - "syn 2.0.91", + "syn 2.0.92", ] [[package]] @@ -358,7 +358,7 @@ checksum = "721cae7de5c34fbb2acd27e21e6d2cf7b886dce0c27388d46c4e6c47ea4318dd" dependencies = [ "proc-macro2", "quote", - "syn 2.0.91", + "syn 2.0.92", ] [[package]] @@ -1255,7 +1255,7 @@ dependencies = [ "heck 0.5.0", "proc-macro2", "quote", - "syn 2.0.91", + "syn 2.0.92", ] [[package]] @@ -1516,7 +1516,7 @@ checksum = "f46882e17999c6cc590af592290432be3bce0428cb0d5f8b6715e4dc7b383eb3" dependencies = [ "proc-macro2", "quote", - "syn 2.0.91", + "syn 2.0.92", ] [[package]] @@ -1540,7 +1540,7 @@ dependencies = [ "proc-macro2", "quote", "strsim", - "syn 2.0.91", + "syn 2.0.92", ] [[package]] @@ -1551,7 +1551,7 @@ checksum = "d336a2a514f6ccccaa3e09b02d41d35330c07ddf03a62165fcec10bb561c7806" dependencies = [ "darling_core", "quote", - "syn 2.0.91", + "syn 2.0.92", ] [[package]] @@ -1710,7 +1710,7 @@ checksum = "62d671cc41a825ebabc75757b62d3d168c577f9149b2d49ece1dad1f72119d25" dependencies = [ "proc-macro2", "quote", - "syn 2.0.91", + "syn 2.0.92", ] [[package]] @@ -1731,7 +1731,7 @@ dependencies = [ "darling", "proc-macro2", "quote", - "syn 2.0.91", + "syn 2.0.92", ] [[package]] @@ -1741,7 +1741,7 @@ source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "ab63b0e2bf4d5928aff72e83a7dace85d7bba5fe12dcc3c5a572d78caffd3f3c" dependencies = [ "derive_builder_core", - "syn 2.0.91", + "syn 2.0.92", ] [[package]] @@ -1761,7 +1761,7 @@ checksum = "cb7330aeadfbe296029522e6c40f315320aba36fc43a5b3632f3795348f3bd22" dependencies = [ "proc-macro2", "quote", - "syn 2.0.91", + "syn 2.0.92", "unicode-xid", ] @@ -1800,7 +1800,7 @@ checksum = "97369cbbc041bc366949bc74d34658d6cda5621039731c6310521892a3a20ae0" dependencies = [ "proc-macro2", "quote", - "syn 2.0.91", + "syn 2.0.92", ] [[package]] @@ -1861,7 +1861,7 @@ dependencies = [ "enum-ordinalize", "proc-macro2", "quote", - "syn 2.0.91", + "syn 2.0.92", ] [[package]] @@ -1894,7 +1894,7 @@ dependencies = [ "heck 0.5.0", "proc-macro2", "quote", - "syn 2.0.91", + "syn 2.0.92", ] [[package]] @@ -1914,7 +1914,7 @@ checksum = "0d28318a75d4aead5c4db25382e8ef717932d0346600cacae6357eb5941bc5ff" dependencies = [ "proc-macro2", "quote", - "syn 2.0.91", + "syn 2.0.92", ] [[package]] @@ -1935,7 +1935,7 @@ checksum = "de0d48a183585823424a4ce1aa132d174a6a81bd540895822eb4c8373a8e49e8" dependencies = [ "proc-macro2", "quote", - "syn 2.0.91", + "syn 2.0.92", ] [[package]] @@ -2188,7 +2188,7 @@ checksum = "e99b8b3c28ae0e84b604c75f721c21dc77afb3706076af5e8216d15fd1deaae3" dependencies = [ "frunk_proc_macro_helpers", "quote", - "syn 2.0.91", + "syn 2.0.92", ] [[package]] @@ -2200,7 +2200,7 @@ dependencies = [ "frunk_core", "proc-macro2", "quote", - "syn 2.0.91", + "syn 2.0.92", ] [[package]] @@ -2212,7 +2212,7 @@ dependencies = [ "frunk_core", "frunk_proc_macro_helpers", "quote", - "syn 2.0.91", + "syn 2.0.92", ] [[package]] @@ -2298,7 +2298,7 @@ checksum = "162ee34ebcb7c64a8abebc059ce0fee27c2262618d7b60ed8faf72fef13c3650" dependencies = [ "proc-macro2", "quote", - "syn 2.0.91", + "syn 2.0.92", ] [[package]] @@ -2861,7 +2861,7 @@ dependencies = [ "quote", "regex", "sha2", - "syn 2.0.91", + "syn 2.0.92", "walkdir", ] @@ -3771,7 +3771,7 @@ checksum = "c34819042dc3d3971c46c2190835914dfbe0c3c13f61449b2997f4e9722dfa60" dependencies = [ "proc-macro2", "quote", - "syn 2.0.91", + "syn 2.0.92", ] [[package]] @@ -4359,7 +4359,7 @@ dependencies = [ "heck 0.5.0", "proc-macro2", "quote", - "syn 2.0.91", + "syn 2.0.92", ] [[package]] @@ -4479,7 +4479,7 @@ dependencies = [ "quote", "regex-syntax 0.8.5", "rustc_version", - "syn 2.0.91", + "syn 2.0.92", ] [[package]] @@ -4865,7 +4865,7 @@ checksum = "ed3955f1a9c7c0c15e092f9c887db08b1fc683305fdf6eb6684f22555355e202" dependencies = [ "proc-macro2", "quote", - "syn 2.0.91", + "syn 2.0.92", ] [[package]] @@ -5295,7 +5295,7 @@ checksum = "3c0f5fad0874fc7abcd4d750e76917eaebbecaa2c20bde22e1dbeeba8beb758c" dependencies = [ "proc-macro2", "quote", - "syn 2.0.91", + "syn 2.0.92", ] [[package]] @@ -5420,7 +5420,7 @@ dependencies = [ "heck 0.5.0", "proc-macro2", "quote", - "syn 2.0.91", + "syn 2.0.92", ] [[package]] @@ -5489,7 +5489,7 @@ source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "479cf940fbbb3426c32c5d5176f62ad57549a0bb84773423ba8be9d089f5faba" dependencies = [ "proc-macro2", - "syn 2.0.91", + "syn 2.0.92", ] [[package]] @@ -5562,7 +5562,7 @@ source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "a65f2e60fbf1063868558d69c6beacf412dc755f9fc020f514b7955fc914fe30" dependencies = [ "quote", - "syn 2.0.91", + "syn 2.0.92", ] [[package]] @@ -5585,7 +5585,7 @@ checksum = "440f724eba9f6996b75d63681b0a92b06947f1457076d503a4d2e2c8f56442b8" dependencies = [ "proc-macro2", "quote", - "syn 2.0.91", + "syn 2.0.92", ] [[package]] @@ -5631,7 +5631,7 @@ dependencies = [ "prost", "prost-types", "regex", - "syn 2.0.91", + "syn 2.0.92", "tempfile", ] @@ -5645,7 +5645,7 @@ dependencies = [ "itertools 0.13.0", "proc-macro2", "quote", - "syn 2.0.91", + "syn 2.0.92", ] [[package]] @@ -5966,7 +5966,7 @@ checksum = "bcc303e793d3734489387d205e9b186fac9c6cfacedd98cbb2e8a5943595f3e6" dependencies = [ "proc-macro2", "quote", - "syn 2.0.91", + "syn 2.0.92", ] [[package]] @@ -6022,7 +6022,7 @@ dependencies = [ "quote", "refinery-core", "regex", - "syn 2.0.91", + "syn 2.0.92", ] [[package]] @@ -6614,7 +6614,7 @@ checksum = "46f859dbbf73865c6627ed570e78961cd3ac92407a2d117204c49232485da55e" dependencies = [ "proc-macro2", "quote", - "syn 2.0.91", + "syn 2.0.92", ] [[package]] @@ -6625,7 +6625,7 @@ checksum = "e578a843d40b4189a4d66bba51d7684f57da5bd7c304c64e14bd63efbef49509" dependencies = [ "proc-macro2", "quote", - "syn 2.0.91", + "syn 2.0.92", ] [[package]] @@ -6707,7 +6707,7 @@ dependencies = [ "darling", "proc-macro2", "quote", - "syn 2.0.91", + "syn 2.0.92", ] [[package]] @@ -6926,7 +6926,7 @@ dependencies = [ "proc-macro2", "quote", "structmeta-derive", - "syn 2.0.91", + "syn 2.0.92", ] [[package]] @@ -6937,7 +6937,7 @@ checksum = "152a0b65a590ff6c3da95cabe2353ee04e6167c896b28e3b14478c2636c922fc" dependencies = [ "proc-macro2", "quote", - "syn 2.0.91", + "syn 2.0.92", ] [[package]] @@ -6974,9 +6974,9 @@ dependencies = [ [[package]] name = "syn" -version = "2.0.91" +version = "2.0.92" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "d53cbcb5a243bd33b7858b1d7f4aca2153490815872d86d955d6ea29f743c035" +checksum = "70ae51629bf965c5c098cc9e87908a3df5301051a9e087d6f9bef5c9771ed126" dependencies = [ "proc-macro2", "quote", @@ -7000,7 +7000,7 @@ checksum = "c8af7666ab7b6390ab78131fb5b0fce11d6b7a6951602017c35fa82800708971" dependencies = [ "proc-macro2", "quote", - "syn 2.0.91", + "syn 2.0.92", ] [[package]] @@ -7101,7 +7101,7 @@ checksum = "e0e3d9676af494694e11a3e367a4bfa7f6d1d5566bd0fe9aceb4aa9281122ab8" dependencies = [ "proc-macro2", "quote", - "syn 2.0.91", + "syn 2.0.92", ] [[package]] @@ -7242,7 +7242,7 @@ dependencies = [ "prettyplease", "proc-macro2", "quote", - "syn 2.0.91", + "syn 2.0.92", ] [[package]] @@ -7276,7 +7276,7 @@ checksum = "5999e24eaa32083191ba4e425deb75cdf25efefabe5aaccb7446dd0d4122a3f5" dependencies = [ "proc-macro2", "quote", - "syn 2.0.91", + "syn 2.0.92", ] [[package]] @@ -7288,7 +7288,7 @@ dependencies = [ "proc-macro2", "quote", "structmeta", - "syn 2.0.91", + "syn 2.0.92", ] [[package]] @@ -7326,7 +7326,7 @@ checksum = "4fee6c4efc90059e10f81e6d42c60a18f76588c3d74cb83a0b242a2b6c7504c1" dependencies = [ "proc-macro2", "quote", - "syn 2.0.91", + "syn 2.0.92", ] [[package]] @@ -7337,7 +7337,7 @@ checksum = "7b50fa271071aae2e6ee85f842e2e28ba8cd2c5fb67f11fcb1fd70b276f9e7d4" dependencies = [ "proc-macro2", "quote", - "syn 2.0.91", + "syn 2.0.92", ] [[package]] @@ -7442,7 +7442,7 @@ checksum = "693d596312e88961bc67d7f1f97af8a70227d9f90c31bba5806eec004978d752" dependencies = [ "proc-macro2", "quote", - "syn 2.0.91", + "syn 2.0.92", ] [[package]] @@ -7628,7 +7628,7 @@ dependencies = [ "prost-build", "prost-types", "quote", - "syn 2.0.91", + "syn 2.0.92", ] [[package]] @@ -7741,7 +7741,7 @@ checksum = "395ae124c09f9e6918a2310af6038fba074bcf474ac352496d5910dd59a2226d" dependencies = [ "proc-macro2", "quote", - "syn 2.0.91", + "syn 2.0.92", ] [[package]] @@ -7857,7 +7857,7 @@ checksum = "70977707304198400eb4835a78f6a9f928bf41bba420deb8fdb175cd965d77a7" dependencies = [ "proc-macro2", "quote", - "syn 2.0.91", + "syn 2.0.92", ] [[package]] @@ -7903,7 +7903,7 @@ dependencies = [ "proc-macro2", "quote", "serde_derive_internals", - "syn 2.0.91", + "syn 2.0.92", ] [[package]] @@ -7968,7 +7968,7 @@ checksum = "70b20a22c42c8f1cd23ce5e34f165d4d37038f5b663ad20fb6adbdf029172483" dependencies = [ "proc-macro2", "quote", - "syn 2.0.91", + "syn 2.0.92", ] [[package]] @@ -8146,7 +8146,7 @@ dependencies = [ "proc-macro-error", "proc-macro2", "quote", - "syn 2.0.91", + "syn 2.0.92", "url", "uuid", ] @@ -8283,7 +8283,7 @@ dependencies = [ "log", "proc-macro2", "quote", - "syn 2.0.91", + "syn 2.0.92", "wasm-bindgen-shared", ] @@ -8318,7 +8318,7 @@ checksum = "30d7a95b763d3c45903ed6c81f156801839e5ee968bb07e534c44df0fcd330c2" dependencies = [ "proc-macro2", "quote", - "syn 2.0.91", + "syn 2.0.92", "wasm-bindgen-backend", "wasm-bindgen-shared", ] @@ -8351,7 +8351,7 @@ checksum = "54171416ce73aa0b9c377b51cc3cb542becee1cd678204812e8392e5b0e4a031" dependencies = [ "proc-macro2", "quote", - "syn 2.0.91", + "syn 2.0.92", ] [[package]] @@ -8817,7 +8817,7 @@ checksum = "fa4f8080344d4671fb4e831a13ad1e68092748387dfc4f55e356242fae12ce3e" dependencies = [ "proc-macro2", "quote", - "syn 2.0.91", + "syn 2.0.92", ] [[package]] @@ -8837,7 +8837,7 @@ checksum = "ce36e65b0d2999d2aafac989fb249189a141aee1f53c612c1f37d72631959f69" dependencies = [ "proc-macro2", "quote", - "syn 2.0.91", + "syn 2.0.92", ] [[package]] diff --git a/Cargo.toml b/Cargo.toml index 12f74bfc971..f46d738e809 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -212,7 +212,7 @@ sha2 = { version = "=0.10.8", default-features = false } similar-asserts = { version = "=1.6.0", default-features = false } supports-color = { version = "=3.0.2", default-features = false } supports-unicode = { version = "=3.0.0", default-features = false } -syn = { version = "=2.0.91", default-features = false } +syn = { version = "=2.0.92", default-features = false } tachyonix = { version = "=0.3.1", default-features = false } tarpc = { version = "=0.35.0", default-features = false } temporal-client = { git = "https://github.com/temporalio/sdk-core", rev = "4a2368d" } From 2e78afe18653df3daa7990940da3bacce788f89f Mon Sep 17 00:00:00 2001 From: "hash-worker[bot]" <180894564+hash-worker[bot]@users.noreply.github.com> Date: Fri, 27 Dec 2024 12:32:40 +0000 Subject: [PATCH 101/159] Update material-ui monorepo to v5.16.13 (#6009) Co-authored-by: hash-worker[bot] <180894564+hash-worker[bot]@users.noreply.github.com> --- apps/hash-frontend/package.json | 6 +- apps/hashdotdesign/package.json | 4 +- apps/hashdotdev/package.json | 6 +- apps/plugin-browser/package.json | 2 +- blocks/address/package.json | 2 +- blocks/ai-chat/package.json | 2 +- blocks/ai-image/package.json | 2 +- blocks/ai-text/package.json | 2 +- blocks/chart/package.json | 2 +- blocks/faq/package.json | 2 +- blocks/how-to/package.json | 2 +- blocks/kanban-board/package.json | 2 +- blocks/shuffle/package.json | 4 +- blocks/table/package.json | 2 +- .../block-design-system/package.json | 8 +- libs/@hashintel/design-system/package.json | 8 +- libs/@hashintel/query-editor/package.json | 4 +- libs/@hashintel/type-editor/package.json | 4 +- yarn.lock | 134 +++++++++--------- 19 files changed, 99 insertions(+), 99 deletions(-) diff --git a/apps/hash-frontend/package.json b/apps/hash-frontend/package.json index 3aaf77b59a6..e90d2632cc1 100644 --- a/apps/hash-frontend/package.json +++ b/apps/hash-frontend/package.json @@ -45,9 +45,9 @@ "@local/hash-isomorphic-utils": "0.0.0-private", "@local/hash-subgraph": "0.0.0-private", "@local/status": "0.0.0-private", - "@mui/icons-material": "5.16.12", - "@mui/material": "5.16.12", - "@mui/system": "5.16.12", + "@mui/icons-material": "5.16.13", + "@mui/material": "5.16.13", + "@mui/system": "5.16.13", "@ory/client": "1.1.41", "@ory/integrations": "1.1.4", "@popperjs/core": "2.11.8", diff --git a/apps/hashdotdesign/package.json b/apps/hashdotdesign/package.json index ae20d50dd3c..c8b47d8c2b4 100644 --- a/apps/hashdotdesign/package.json +++ b/apps/hashdotdesign/package.json @@ -30,8 +30,8 @@ "@emotion/cache": "11.14.0", "@emotion/react": "11.14.0", "@emotion/styled": "11.14.0", - "@mui/material": "5.16.12", - "@mui/system": "5.16.12", + "@mui/material": "5.16.13", + "@mui/system": "5.16.13", "react": "^19.0.0", "react-dom": "^19.0.0" } diff --git a/apps/hashdotdev/package.json b/apps/hashdotdev/package.json index 81a1402fafc..255144cb542 100644 --- a/apps/hashdotdev/package.json +++ b/apps/hashdotdev/package.json @@ -26,9 +26,9 @@ "@emotion/styled": "11.14.0", "@fortawesome/free-solid-svg-icons": "6.7.2", "@matejmazur/react-katex": "3.1.3", - "@mui/icons-material": "5.16.12", - "@mui/material": "5.16.12", - "@mui/system": "5.16.12", + "@mui/icons-material": "5.16.13", + "@mui/material": "5.16.13", + "@mui/system": "5.16.13", "axios": "1.7.9", "calculation-block": "0.2.2", "clsx": "1.2.1", diff --git a/apps/plugin-browser/package.json b/apps/plugin-browser/package.json index c2465f8a0e3..631488a5ef7 100755 --- a/apps/plugin-browser/package.json +++ b/apps/plugin-browser/package.json @@ -35,7 +35,7 @@ "@local/hash-graph-types": "0.0.0-private", "@local/hash-isomorphic-utils": "0.0.0-private", "@local/hash-subgraph": "0.0.0-private", - "@mui/material": "5.16.12", + "@mui/material": "5.16.13", "@sentry/browser": "7.120.2", "bowser": "2.11.0", "date-fns": "4.1.0", diff --git a/blocks/address/package.json b/blocks/address/package.json index 9e794f37cb2..90d3b61808d 100644 --- a/blocks/address/package.json +++ b/blocks/address/package.json @@ -37,7 +37,7 @@ "@fortawesome/free-solid-svg-icons": "6.7.2", "@hashintel/block-design-system": "0.0.2", "@hashintel/design-system": "0.0.8", - "@mui/material": "5.16.12", + "@mui/material": "5.16.13", "lodash.debounce": "4.0.8", "react-sizeme": "3.0.2", "rooks": "7.14.1", diff --git a/blocks/ai-chat/package.json b/blocks/ai-chat/package.json index 33b3ddebb9e..2cf5e15520a 100644 --- a/blocks/ai-chat/package.json +++ b/blocks/ai-chat/package.json @@ -32,7 +32,7 @@ "@blockprotocol/service": "0.1.4", "@hashintel/block-design-system": "0.0.2", "@hashintel/design-system": "0.0.8", - "@mui/material": "5.16.12", + "@mui/material": "5.16.13", "react-sizeme": "3.0.2", "react-transition-group": "4.4.5", "react-type-animation": "3.2.0", diff --git a/blocks/ai-image/package.json b/blocks/ai-image/package.json index 5ff01d87d08..c9001a5121d 100644 --- a/blocks/ai-image/package.json +++ b/blocks/ai-image/package.json @@ -35,7 +35,7 @@ "@blockprotocol/service": "0.1.4", "@hashintel/block-design-system": "0.0.2", "@hashintel/design-system": "0.0.8", - "@mui/material": "5.16.12", + "@mui/material": "5.16.13", "react-sizeme": "3.0.2", "uuid": "11.0.3" }, diff --git a/blocks/ai-text/package.json b/blocks/ai-text/package.json index c8844f35df2..f0facba93cb 100644 --- a/blocks/ai-text/package.json +++ b/blocks/ai-text/package.json @@ -31,7 +31,7 @@ "@blockprotocol/service": "0.1.4", "@hashintel/block-design-system": "0.0.2", "@hashintel/design-system": "0.0.8", - "@mui/material": "5.16.12" + "@mui/material": "5.16.13" }, "devDependencies": { "@local/eslint": "0.0.0-private", diff --git a/blocks/chart/package.json b/blocks/chart/package.json index 626d68f199d..daffdc30763 100644 --- a/blocks/chart/package.json +++ b/blocks/chart/package.json @@ -31,7 +31,7 @@ "@hashintel/block-design-system": "0.0.2", "@hashintel/design-system": "0.0.8", "@local/hash-isomorphic-utils": "0.0.0-private", - "@mui/material": "5.16.12", + "@mui/material": "5.16.13", "echarts": "5.5.1", "lodash.debounce": "4.0.8", "react-hook-form": "7.54.1" diff --git a/blocks/faq/package.json b/blocks/faq/package.json index 22571dbeb21..1f7ac5e5ef8 100644 --- a/blocks/faq/package.json +++ b/blocks/faq/package.json @@ -34,7 +34,7 @@ "@blockprotocol/graph": "0.3.4", "@hashintel/block-design-system": "0.0.2", "@hashintel/design-system": "0.0.8", - "@mui/material": "5.16.12", + "@mui/material": "5.16.13", "uuid": "11.0.3" }, "devDependencies": { diff --git a/blocks/how-to/package.json b/blocks/how-to/package.json index 39e6a0de4d4..2a2e878f6ce 100644 --- a/blocks/how-to/package.json +++ b/blocks/how-to/package.json @@ -34,7 +34,7 @@ "@blockprotocol/graph": "0.3.4", "@hashintel/block-design-system": "0.0.2", "@hashintel/design-system": "0.0.8", - "@mui/material": "5.16.12", + "@mui/material": "5.16.13", "react-sizeme": "3.0.2", "uuid": "11.0.3" }, diff --git a/blocks/kanban-board/package.json b/blocks/kanban-board/package.json index 786b53d956e..f33f1aae344 100644 --- a/blocks/kanban-board/package.json +++ b/blocks/kanban-board/package.json @@ -37,7 +37,7 @@ "@dnd-kit/utilities": "3.2.2", "@hashintel/block-design-system": "0.0.2", "@hashintel/design-system": "0.0.8", - "@mui/material": "5.16.12", + "@mui/material": "5.16.13", "clsx": "1.2.1", "lodash.clonedeep": "4.5.0", "lodash.debounce": "4.0.8", diff --git a/blocks/shuffle/package.json b/blocks/shuffle/package.json index 0b6862fe7a8..79c1702fb53 100644 --- a/blocks/shuffle/package.json +++ b/blocks/shuffle/package.json @@ -32,8 +32,8 @@ "@dnd-kit/sortable": "7.0.2", "@dnd-kit/utilities": "3.2.2", "@hashintel/design-system": "0.0.8", - "@mui/icons-material": "5.16.12", - "@mui/material": "5.16.12", + "@mui/icons-material": "5.16.13", + "@mui/material": "5.16.13", "immer": "9.0.21", "lodash.isequal": "4.5.0", "uuid": "11.0.3" diff --git a/blocks/table/package.json b/blocks/table/package.json index 227d84b1f76..8d3264b55f5 100644 --- a/blocks/table/package.json +++ b/blocks/table/package.json @@ -36,7 +36,7 @@ "@hashintel/block-design-system": "0.0.2", "@hashintel/design-system": "0.0.8", "@local/hash-isomorphic-utils": "0.0.0-private", - "@mui/material": "5.16.12", + "@mui/material": "5.16.13", "clsx": "1.2.1", "immer": "9.0.21", "lodash.debounce": "4.0.8", diff --git a/libs/@hashintel/block-design-system/package.json b/libs/@hashintel/block-design-system/package.json index 11651ce642b..6618d5d0637 100644 --- a/libs/@hashintel/block-design-system/package.json +++ b/libs/@hashintel/block-design-system/package.json @@ -41,8 +41,8 @@ "@emotion/styled": "11.14.0", "@local/eslint": "0.0.0-private", "@local/tsconfig": "0.0.0-private", - "@mui/material": "5.16.12", - "@mui/system": "5.16.12", + "@mui/material": "5.16.13", + "@mui/system": "5.16.13", "@types/react": "19.0.1", "@types/react-dom": "19.0.2", "@types/react-syntax-highlighter": "15.5.13", @@ -55,8 +55,8 @@ "peerDependencies": { "@emotion/react": "11.14.0", "@emotion/styled": "11.14.0", - "@mui/material": "5.16.12", - "@mui/system": "5.16.12", + "@mui/material": "5.16.13", + "@mui/system": "5.16.13", "react": "^19.0.0", "react-dom": "^19.0.0" } diff --git a/libs/@hashintel/design-system/package.json b/libs/@hashintel/design-system/package.json index ea20db4752a..cf4218d327e 100644 --- a/libs/@hashintel/design-system/package.json +++ b/libs/@hashintel/design-system/package.json @@ -56,8 +56,8 @@ "@emotion/styled": "11.14.0", "@local/eslint": "0.0.0-private", "@local/tsconfig": "0.0.0-private", - "@mui/material": "5.16.12", - "@mui/system": "5.16.12", + "@mui/material": "5.16.13", + "@mui/system": "5.16.13", "@storybook/react": "7.6.20", "@types/react": "19.0.1", "@types/react-dom": "19.0.2", @@ -71,8 +71,8 @@ "@emotion/cache": "11.14.0", "@emotion/react": "11.14.0", "@emotion/styled": "11.14.0", - "@mui/material": "5.16.12", - "@mui/system": "5.16.12", + "@mui/material": "5.16.13", + "@mui/system": "5.16.13", "react": "^19.0.0", "react-dom": "^19.0.0" } diff --git a/libs/@hashintel/query-editor/package.json b/libs/@hashintel/query-editor/package.json index bd0573252d6..0775886deb3 100644 --- a/libs/@hashintel/query-editor/package.json +++ b/libs/@hashintel/query-editor/package.json @@ -29,8 +29,8 @@ }, "devDependencies": { "@local/eslint": "0.0.0-private", - "@mui/material": "5.16.12", - "@mui/system": "5.16.12", + "@mui/material": "5.16.13", + "@mui/system": "5.16.13", "eslint": "9.17.0", "eslint-plugin-storybook": "0.11.1", "react": "19.0.0", diff --git a/libs/@hashintel/type-editor/package.json b/libs/@hashintel/type-editor/package.json index 246ed564cbe..4dbc1631e11 100644 --- a/libs/@hashintel/type-editor/package.json +++ b/libs/@hashintel/type-editor/package.json @@ -36,8 +36,8 @@ }, "devDependencies": { "@local/eslint": "0.0.0-private", - "@mui/material": "5.16.12", - "@mui/system": "5.16.12", + "@mui/material": "5.16.13", + "@mui/system": "5.16.13", "@types/lodash.memoize": "4.1.9", "@types/lodash.uniqueid": "4.0.9", "eslint": "9.17.0", diff --git a/yarn.lock b/yarn.lock index 50ccbbc8c98..4f29f23b6c1 100644 --- a/yarn.lock +++ b/yarn.lock @@ -494,9 +494,9 @@ __metadata: "@local/hash-subgraph": "npm:0.0.0-private" "@local/status": "npm:0.0.0-private" "@local/tsconfig": "npm:0.0.0-private" - "@mui/icons-material": "npm:5.16.12" - "@mui/material": "npm:5.16.12" - "@mui/system": "npm:5.16.12" + "@mui/icons-material": "npm:5.16.13" + "@mui/material": "npm:5.16.13" + "@mui/system": "npm:5.16.13" "@next/bundle-analyzer": "npm:15.1.2" "@ory/client": "npm:1.1.41" "@ory/integrations": "npm:1.1.4" @@ -709,8 +709,8 @@ __metadata: "@emotion/cache": 11.14.0 "@emotion/react": 11.14.0 "@emotion/styled": 11.14.0 - "@mui/material": 5.16.12 - "@mui/system": 5.16.12 + "@mui/material": 5.16.13 + "@mui/system": 5.16.13 react: ^19.0.0 react-dom: ^19.0.0 languageName: unknown @@ -729,9 +729,9 @@ __metadata: "@local/eslint": "npm:0.0.0-private" "@local/tsconfig": "npm:0.0.0-private" "@matejmazur/react-katex": "npm:3.1.3" - "@mui/icons-material": "npm:5.16.12" - "@mui/material": "npm:5.16.12" - "@mui/system": "npm:5.16.12" + "@mui/icons-material": "npm:5.16.13" + "@mui/material": "npm:5.16.13" + "@mui/system": "npm:5.16.13" "@types/d3": "npm:7.4.3" "@types/fs-extra": "npm:9.0.13" "@types/gtag.js": "npm:0.0.20" @@ -806,7 +806,7 @@ __metadata: "@local/hash-isomorphic-utils": "npm:0.0.0-private" "@local/hash-subgraph": "npm:0.0.0-private" "@local/status": "npm:0.0.0-private" - "@mui/material": "npm:5.16.12" + "@mui/material": "npm:5.16.13" "@pmmmwh/react-refresh-webpack-plugin": "npm:0.5.15" "@sentry/browser": "npm:7.120.2" "@sentry/webpack-plugin": "npm:2.22.7" @@ -4650,7 +4650,7 @@ __metadata: "@hashintel/block-design-system": "npm:0.0.2" "@hashintel/design-system": "npm:0.0.8" "@local/eslint": "npm:0.0.0-private" - "@mui/material": "npm:5.16.12" + "@mui/material": "npm:5.16.13" "@types/lodash.debounce": "npm:4.0.9" "@types/react-dom": "npm:19.0.2" block-scripts: "npm:0.3.4" @@ -4681,7 +4681,7 @@ __metadata: "@hashintel/design-system": "npm:0.0.8" "@local/eslint": "npm:0.0.0-private" "@local/tsconfig": "npm:0.0.0-private" - "@mui/material": "npm:5.16.12" + "@mui/material": "npm:5.16.13" "@types/react-dom": "npm:19.0.2" block-scripts: "npm:0.3.4" eslint: "npm:9.17.0" @@ -4710,7 +4710,7 @@ __metadata: "@hashintel/design-system": "npm:0.0.8" "@local/eslint": "npm:0.0.0-private" "@local/tsconfig": "npm:0.0.0-private" - "@mui/material": "npm:5.16.12" + "@mui/material": "npm:5.16.13" "@types/react-dom": "npm:19.0.2" block-scripts: "npm:0.3.4" eslint: "npm:9.17.0" @@ -4737,7 +4737,7 @@ __metadata: "@hashintel/design-system": "npm:0.0.8" "@local/eslint": "npm:0.0.0-private" "@local/tsconfig": "npm:0.0.0-private" - "@mui/material": "npm:5.16.12" + "@mui/material": "npm:5.16.13" "@types/react-dom": "npm:19.0.2" block-scripts: "npm:0.3.4" eslint: "npm:9.17.0" @@ -4786,7 +4786,7 @@ __metadata: "@local/eslint": "npm:0.0.0-private" "@local/hash-isomorphic-utils": "npm:0.0.0-private" "@local/tsconfig": "npm:0.0.0-private" - "@mui/material": "npm:5.16.12" + "@mui/material": "npm:5.16.13" "@types/lodash.debounce": "npm:4.0.9" "@types/react-dom": "npm:19.0.2" "@types/react-is": "npm:19.0.0" @@ -4907,7 +4907,7 @@ __metadata: "@hashintel/block-design-system": "npm:0.0.2" "@hashintel/design-system": "npm:0.0.8" "@local/eslint": "npm:0.0.0-private" - "@mui/material": "npm:5.16.12" + "@mui/material": "npm:5.16.13" "@types/react-dom": "npm:19.0.2" block-scripts: "npm:0.3.4" eslint: "npm:9.17.0" @@ -4953,7 +4953,7 @@ __metadata: "@hashintel/block-design-system": "npm:0.0.2" "@hashintel/design-system": "npm:0.0.8" "@local/eslint": "npm:0.0.0-private" - "@mui/material": "npm:5.16.12" + "@mui/material": "npm:5.16.13" "@types/react-dom": "npm:19.0.2" block-scripts: "npm:0.3.4" eslint: "npm:9.17.0" @@ -5005,7 +5005,7 @@ __metadata: "@hashintel/design-system": "npm:0.0.8" "@local/eslint": "npm:0.0.0-private" "@local/tsconfig": "npm:0.0.0-private" - "@mui/material": "npm:5.16.12" + "@mui/material": "npm:5.16.13" "@types/lodash.clonedeep": "npm:4.5.9" "@types/lodash.debounce": "npm:4.0.9" "@types/lodash.isequal": "npm:4.5.8" @@ -5103,8 +5103,8 @@ __metadata: "@hashintel/design-system": "npm:0.0.8" "@local/eslint": "npm:0.0.0-private" "@local/tsconfig": "npm:0.0.0-private" - "@mui/icons-material": "npm:5.16.12" - "@mui/material": "npm:5.16.12" + "@mui/icons-material": "npm:5.16.13" + "@mui/material": "npm:5.16.13" "@types/lodash.isequal": "npm:4.5.8" block-scripts: "npm:0.3.4" eslint: "npm:9.17.0" @@ -5133,7 +5133,7 @@ __metadata: "@local/eslint": "npm:0.0.0-private" "@local/hash-isomorphic-utils": "npm:0.0.0-private" "@local/tsconfig": "npm:0.0.0-private" - "@mui/material": "npm:5.16.12" + "@mui/material": "npm:5.16.13" "@types/lodash.debounce": "npm:4.0.9" "@types/lodash.isequal": "npm:4.5.8" "@types/lodash.uniqueid": "npm:4.0.9" @@ -7896,8 +7896,8 @@ __metadata: "@local/hash-isomorphic-utils": "npm:0.0.0-private" "@local/hash-subgraph": "npm:0.0.0-private" "@local/tsconfig": "npm:0.0.0-private" - "@mui/material": "npm:5.16.12" - "@mui/system": "npm:5.16.12" + "@mui/material": "npm:5.16.13" + "@mui/system": "npm:5.16.13" "@types/react": "npm:19.0.1" "@types/react-dom": "npm:19.0.2" "@types/react-syntax-highlighter": "npm:15.5.13" @@ -7912,8 +7912,8 @@ __metadata: peerDependencies: "@emotion/react": 11.14.0 "@emotion/styled": 11.14.0 - "@mui/material": 5.16.12 - "@mui/system": 5.16.12 + "@mui/material": 5.16.13 + "@mui/system": 5.16.13 react: ^19.0.0 react-dom: ^19.0.0 languageName: unknown @@ -7933,8 +7933,8 @@ __metadata: "@local/eslint": "npm:0.0.0-private" "@local/hash-isomorphic-utils": "npm:0.0.0-private" "@local/tsconfig": "npm:0.0.0-private" - "@mui/material": "npm:5.16.12" - "@mui/system": "npm:5.16.12" + "@mui/material": "npm:5.16.13" + "@mui/system": "npm:5.16.13" "@storybook/react": "npm:7.6.20" "@types/react": "npm:19.0.1" "@types/react-dom": "npm:19.0.2" @@ -7950,8 +7950,8 @@ __metadata: "@emotion/cache": 11.14.0 "@emotion/react": 11.14.0 "@emotion/styled": 11.14.0 - "@mui/material": 5.16.12 - "@mui/system": 5.16.12 + "@mui/material": 5.16.13 + "@mui/system": 5.16.13 react: ^19.0.0 react-dom: ^19.0.0 languageName: unknown @@ -7967,8 +7967,8 @@ __metadata: "@fortawesome/free-solid-svg-icons": "npm:6.7.2" "@hashintel/design-system": "npm:0.0.8" "@local/eslint": "npm:0.0.0-private" - "@mui/material": "npm:5.16.12" - "@mui/system": "npm:5.16.12" + "@mui/material": "npm:5.16.13" + "@mui/system": "npm:5.16.13" clsx: "npm:1.2.1" eslint: "npm:9.17.0" eslint-plugin-storybook: "npm:0.11.1" @@ -7997,8 +7997,8 @@ __metadata: "@local/eslint": "npm:0.0.0-private" "@local/hash-isomorphic-utils": "npm:0.0.0-private" "@local/hash-subgraph": "npm:0.0.0-private" - "@mui/material": "npm:5.16.12" - "@mui/system": "npm:5.16.12" + "@mui/material": "npm:5.16.13" + "@mui/system": "npm:5.16.13" "@types/lodash.memoize": "npm:4.1.9" "@types/lodash.uniqueid": "npm:4.0.9" clsx: "npm:1.2.1" @@ -9826,16 +9826,16 @@ __metadata: languageName: node linkType: hard -"@mui/core-downloads-tracker@npm:^5.11.8, @mui/core-downloads-tracker@npm:^5.16.12": - version: 5.16.12 - resolution: "@mui/core-downloads-tracker@npm:5.16.12" - checksum: 10c0/939aa1cc16ddd15c141f40fb3bfc9209d31ca909ebfd0353989290314cb8901007ddac4e12b31eaebde816f41a33eed4dfb77c7179a87b99e9b627cb66576604 +"@mui/core-downloads-tracker@npm:^5.11.8, @mui/core-downloads-tracker@npm:^5.16.13": + version: 5.16.13 + resolution: "@mui/core-downloads-tracker@npm:5.16.13" + checksum: 10c0/bc2c623c030bb65bdad7a497f0a77d983e04a8cc47fe31e32b5ea52738185e55a496ffb480a9b488be97c700dba8eeb13fd5d805a9ecfe52a6115c69fe32b276 languageName: node linkType: hard -"@mui/icons-material@npm:5.16.12": - version: 5.16.12 - resolution: "@mui/icons-material@npm:5.16.12" +"@mui/icons-material@npm:5.16.13": + version: 5.16.13 + resolution: "@mui/icons-material@npm:5.16.13" dependencies: "@babel/runtime": "npm:^7.23.9" peerDependencies: @@ -9845,7 +9845,7 @@ __metadata: peerDependenciesMeta: "@types/react": optional: true - checksum: 10c0/5e8552296781bb06ffe7026d9c823a14331c2b132b7610e6216f43c074d5ecbac7b1e9e99dffd98ffb769543cc3798dcfcc5aac54bd093773f8577994f1fffa4 + checksum: 10c0/c912102d29e577f046270d630d291cf96dd56f29d651e42dcef4fdaef4a28dec4bf655dfacf9af61dfd8c4a28ae2fbeb99e34d3d76a0dd4119323a5585082bd8 languageName: node linkType: hard @@ -9882,15 +9882,15 @@ __metadata: languageName: node linkType: hard -"@mui/material@npm:5.16.12, @mui/material@npm:^5.0.0, @mui/material@npm:^5.10.4": - version: 5.16.12 - resolution: "@mui/material@npm:5.16.12" +"@mui/material@npm:5.16.13, @mui/material@npm:^5.0.0, @mui/material@npm:^5.10.4": + version: 5.16.13 + resolution: "@mui/material@npm:5.16.13" dependencies: "@babel/runtime": "npm:^7.23.9" - "@mui/core-downloads-tracker": "npm:^5.16.12" - "@mui/system": "npm:^5.16.12" + "@mui/core-downloads-tracker": "npm:^5.16.13" + "@mui/system": "npm:^5.16.13" "@mui/types": "npm:^7.2.15" - "@mui/utils": "npm:^5.16.12" + "@mui/utils": "npm:^5.16.13" "@popperjs/core": "npm:^2.11.8" "@types/react-transition-group": "npm:^4.4.10" clsx: "npm:^2.1.0" @@ -9911,16 +9911,16 @@ __metadata: optional: true "@types/react": optional: true - checksum: 10c0/e0e41f191a5f482b8cdddc14d6a0938e0fa798fec5f9107a3f360292d0fd8b91a59742a36c7d47a3e43efc798933b9eaf7e32208fd124354a0dd0d6bbacf1079 + checksum: 10c0/8f1cdd244b301761fbbf8e7ede66b5fe612ffed866ec2ab573412dd3c6f85802d216d2fdb4249be5181d0ce76c3fb25d87959345e6943b5ff62267f1ebdf6e18 languageName: node linkType: hard -"@mui/private-theming@npm:^5.16.12": - version: 5.16.12 - resolution: "@mui/private-theming@npm:5.16.12" +"@mui/private-theming@npm:^5.16.13": + version: 5.16.13 + resolution: "@mui/private-theming@npm:5.16.13" dependencies: "@babel/runtime": "npm:^7.23.9" - "@mui/utils": "npm:^5.16.12" + "@mui/utils": "npm:^5.16.13" prop-types: "npm:^15.8.1" peerDependencies: "@types/react": ^17.0.0 || ^18.0.0 || ^19.0.0 @@ -9928,13 +9928,13 @@ __metadata: peerDependenciesMeta: "@types/react": optional: true - checksum: 10c0/bb7ddde1878a888c517072b7bf330ecf657a1286b5b8b2f969b793fe69c6e17180124469cf3cd68256d165531b3eb8e48aa446fbaf5b62759fa1dd094ac33af0 + checksum: 10c0/914e1545fb4a8e7e0d64cbb30b8dfa31d935f5b1e65ded92fda6024cfece49b7b2aad2b6b1183c200371ff6c23cb4e0fe494e34324b2a539530199b0928019cc languageName: node linkType: hard -"@mui/styled-engine@npm:^5.16.12": - version: 5.16.12 - resolution: "@mui/styled-engine@npm:5.16.12" +"@mui/styled-engine@npm:^5.16.13": + version: 5.16.13 + resolution: "@mui/styled-engine@npm:5.16.13" dependencies: "@babel/runtime": "npm:^7.23.9" "@emotion/cache": "npm:^11.13.5" @@ -9949,19 +9949,19 @@ __metadata: optional: true "@emotion/styled": optional: true - checksum: 10c0/8404556edf2f9212c78291ce8ab6f1cc277a58f4b341031578ba0e0f81407172735af95050dda8a4f510b811267f2abf4d8a7f3dcab934c59b687ce748052148 + checksum: 10c0/a55be4a972723a7c943f65d57ff872692c68f0cbfa84711f4885f52268ebe28f050854e532518fe0bf2d52e29f5ec47e26444d1dd1d500e6191a4a1b6b3d2428 languageName: node linkType: hard -"@mui/system@npm:5.16.12, @mui/system@npm:^5.11.8, @mui/system@npm:^5.16.12": - version: 5.16.12 - resolution: "@mui/system@npm:5.16.12" +"@mui/system@npm:5.16.13, @mui/system@npm:^5.11.8, @mui/system@npm:^5.16.13": + version: 5.16.13 + resolution: "@mui/system@npm:5.16.13" dependencies: "@babel/runtime": "npm:^7.23.9" - "@mui/private-theming": "npm:^5.16.12" - "@mui/styled-engine": "npm:^5.16.12" + "@mui/private-theming": "npm:^5.16.13" + "@mui/styled-engine": "npm:^5.16.13" "@mui/types": "npm:^7.2.15" - "@mui/utils": "npm:^5.16.12" + "@mui/utils": "npm:^5.16.13" clsx: "npm:^2.1.0" csstype: "npm:^3.1.3" prop-types: "npm:^15.8.1" @@ -9977,7 +9977,7 @@ __metadata: optional: true "@types/react": optional: true - checksum: 10c0/5278496b355b66fe7c7913a6663edf1d7c7fa3cbf634cfc0e3ee63e7fed5e73a16b107352ed5919988f644a60d8f3e1bf075f4619b3baba128cbae8ec3c93b77 + checksum: 10c0/e5ae9a798103c492f2b0df9d07dc4291bcb64689deedf23318b9be9a240efc6e32ccc8956c70cf1fba8769b88074095d0c888dd0235ccd167e11ca2f50ad2620 languageName: node linkType: hard @@ -9993,9 +9993,9 @@ __metadata: languageName: node linkType: hard -"@mui/utils@npm:^5.11.7, @mui/utils@npm:^5.16.12": - version: 5.16.12 - resolution: "@mui/utils@npm:5.16.12" +"@mui/utils@npm:^5.11.7, @mui/utils@npm:^5.16.13": + version: 5.16.13 + resolution: "@mui/utils@npm:5.16.13" dependencies: "@babel/runtime": "npm:^7.23.9" "@mui/types": "npm:^7.2.15" @@ -10009,7 +10009,7 @@ __metadata: peerDependenciesMeta: "@types/react": optional: true - checksum: 10c0/a406e80972c5516c787b278e1c25b17dbed6971286b2c883011e7af8224a9c228a9faebbdc57b148b7185509b3f0b9838f04fc84d341ee570f81647d1cc36457 + checksum: 10c0/35e57df90bfbe35c59f96a7092ce8f3d19f7bbd818db64aa45dda983c95bc10b67d9b5ceef6ea7ea92dfae3bb718eff4f7e189b100b9db6631346092efe27677 languageName: node linkType: hard From c929275890d646c5f4f917d0ab1c24fd59dea41a Mon Sep 17 00:00:00 2001 From: "hash-worker[bot]" <180894564+hash-worker[bot]@users.noreply.github.com> Date: Fri, 27 Dec 2024 12:40:14 +0000 Subject: [PATCH 102/159] Update npm package `lefthook` to v1.10.1 (#6011) Co-authored-by: hash-worker[bot] <180894564+hash-worker[bot]@users.noreply.github.com> --- package.json | 2 +- yarn.lock | 92 ++++++++++++++++++++++++++-------------------------- 2 files changed, 47 insertions(+), 47 deletions(-) diff --git a/package.json b/package.json index a4d2a1e5dc9..9ba75e07292 100644 --- a/package.json +++ b/package.json @@ -106,7 +106,7 @@ "@sentry/cli": "^2.39.1", "@taplo/cli": "0.7.0", "@yarnpkg/types": "^4.0.0", - "lefthook": "1.10.0", + "lefthook": "1.10.1", "markdownlint-cli2": "0.16.0", "npm-run-all2": "7.0.2", "prettier": "3.4.2", diff --git a/yarn.lock b/yarn.lock index 4f29f23b6c1..284ea5f110c 100644 --- a/yarn.lock +++ b/yarn.lock @@ -29871,7 +29871,7 @@ __metadata: "@sentry/cli": "npm:^2.39.1" "@taplo/cli": "npm:0.7.0" "@yarnpkg/types": "npm:^4.0.0" - lefthook: "npm:1.10.0" + lefthook: "npm:1.10.1" markdownlint-cli2: "npm:0.16.0" npm-run-all2: "npm:7.0.2" prettier: "npm:3.4.2" @@ -33242,90 +33242,90 @@ __metadata: languageName: node linkType: hard -"lefthook-darwin-arm64@npm:1.10.0": - version: 1.10.0 - resolution: "lefthook-darwin-arm64@npm:1.10.0" +"lefthook-darwin-arm64@npm:1.10.1": + version: 1.10.1 + resolution: "lefthook-darwin-arm64@npm:1.10.1" conditions: os=darwin & cpu=arm64 languageName: node linkType: hard -"lefthook-darwin-x64@npm:1.10.0": - version: 1.10.0 - resolution: "lefthook-darwin-x64@npm:1.10.0" +"lefthook-darwin-x64@npm:1.10.1": + version: 1.10.1 + resolution: "lefthook-darwin-x64@npm:1.10.1" conditions: os=darwin & cpu=x64 languageName: node linkType: hard -"lefthook-freebsd-arm64@npm:1.10.0": - version: 1.10.0 - resolution: "lefthook-freebsd-arm64@npm:1.10.0" +"lefthook-freebsd-arm64@npm:1.10.1": + version: 1.10.1 + resolution: "lefthook-freebsd-arm64@npm:1.10.1" conditions: os=freebsd & cpu=arm64 languageName: node linkType: hard -"lefthook-freebsd-x64@npm:1.10.0": - version: 1.10.0 - resolution: "lefthook-freebsd-x64@npm:1.10.0" +"lefthook-freebsd-x64@npm:1.10.1": + version: 1.10.1 + resolution: "lefthook-freebsd-x64@npm:1.10.1" conditions: os=freebsd & cpu=x64 languageName: node linkType: hard -"lefthook-linux-arm64@npm:1.10.0": - version: 1.10.0 - resolution: "lefthook-linux-arm64@npm:1.10.0" +"lefthook-linux-arm64@npm:1.10.1": + version: 1.10.1 + resolution: "lefthook-linux-arm64@npm:1.10.1" conditions: os=linux & cpu=arm64 languageName: node linkType: hard -"lefthook-linux-x64@npm:1.10.0": - version: 1.10.0 - resolution: "lefthook-linux-x64@npm:1.10.0" +"lefthook-linux-x64@npm:1.10.1": + version: 1.10.1 + resolution: "lefthook-linux-x64@npm:1.10.1" conditions: os=linux & cpu=x64 languageName: node linkType: hard -"lefthook-openbsd-arm64@npm:1.10.0": - version: 1.10.0 - resolution: "lefthook-openbsd-arm64@npm:1.10.0" +"lefthook-openbsd-arm64@npm:1.10.1": + version: 1.10.1 + resolution: "lefthook-openbsd-arm64@npm:1.10.1" conditions: os=openbsd & cpu=arm64 languageName: node linkType: hard -"lefthook-openbsd-x64@npm:1.10.0": - version: 1.10.0 - resolution: "lefthook-openbsd-x64@npm:1.10.0" +"lefthook-openbsd-x64@npm:1.10.1": + version: 1.10.1 + resolution: "lefthook-openbsd-x64@npm:1.10.1" conditions: os=openbsd & cpu=x64 languageName: node linkType: hard -"lefthook-windows-arm64@npm:1.10.0": - version: 1.10.0 - resolution: "lefthook-windows-arm64@npm:1.10.0" +"lefthook-windows-arm64@npm:1.10.1": + version: 1.10.1 + resolution: "lefthook-windows-arm64@npm:1.10.1" conditions: os=win32 & cpu=arm64 languageName: node linkType: hard -"lefthook-windows-x64@npm:1.10.0": - version: 1.10.0 - resolution: "lefthook-windows-x64@npm:1.10.0" +"lefthook-windows-x64@npm:1.10.1": + version: 1.10.1 + resolution: "lefthook-windows-x64@npm:1.10.1" conditions: os=win32 & cpu=x64 languageName: node linkType: hard -"lefthook@npm:1.10.0": - version: 1.10.0 - resolution: "lefthook@npm:1.10.0" - dependencies: - lefthook-darwin-arm64: "npm:1.10.0" - lefthook-darwin-x64: "npm:1.10.0" - lefthook-freebsd-arm64: "npm:1.10.0" - lefthook-freebsd-x64: "npm:1.10.0" - lefthook-linux-arm64: "npm:1.10.0" - lefthook-linux-x64: "npm:1.10.0" - lefthook-openbsd-arm64: "npm:1.10.0" - lefthook-openbsd-x64: "npm:1.10.0" - lefthook-windows-arm64: "npm:1.10.0" - lefthook-windows-x64: "npm:1.10.0" +"lefthook@npm:1.10.1": + version: 1.10.1 + resolution: "lefthook@npm:1.10.1" + dependencies: + lefthook-darwin-arm64: "npm:1.10.1" + lefthook-darwin-x64: "npm:1.10.1" + lefthook-freebsd-arm64: "npm:1.10.1" + lefthook-freebsd-x64: "npm:1.10.1" + lefthook-linux-arm64: "npm:1.10.1" + lefthook-linux-x64: "npm:1.10.1" + lefthook-openbsd-arm64: "npm:1.10.1" + lefthook-openbsd-x64: "npm:1.10.1" + lefthook-windows-arm64: "npm:1.10.1" + lefthook-windows-x64: "npm:1.10.1" dependenciesMeta: lefthook-darwin-arm64: optional: true @@ -33349,7 +33349,7 @@ __metadata: optional: true bin: lefthook: bin/index.js - checksum: 10c0/860fcc73ae9940c4f4bec5f2dda706270d5ebd89a52f7ba1935224df61fcce99998990751983e299bc8cc17c2fc8ecd21c497cde2f8899512f20169e09769256 + checksum: 10c0/bcdaf7fcb068ea0257a9f7200ce7f8a75e03455d81bc4bf3bb6288e048ceafefe57c54c73077d3526986db3d96f7a4c217f8012b14158a1e2ea215a02c7d78f0 languageName: node linkType: hard From 7d5dd62d571ce9bb118a6818f1586a5292f4bc43 Mon Sep 17 00:00:00 2001 From: "hash-worker[bot]" <180894564+hash-worker[bot]@users.noreply.github.com> Date: Fri, 27 Dec 2024 12:46:55 +0000 Subject: [PATCH 103/159] Update GitHub Action `taiki-e/install-action` to v2.47.0 (#6012) Co-authored-by: hash-worker[bot] <180894564+hash-worker[bot]@users.noreply.github.com> --- .github/actions/warm-up-repo/action.yml | 2 +- .github/workflows/bench.yml | 4 ++-- .github/workflows/lint.yml | 2 +- .github/workflows/test.yml | 4 ++-- 4 files changed, 6 insertions(+), 6 deletions(-) diff --git a/.github/actions/warm-up-repo/action.yml b/.github/actions/warm-up-repo/action.yml index f3f5d0f7948..518902188a5 100644 --- a/.github/actions/warm-up-repo/action.yml +++ b/.github/actions/warm-up-repo/action.yml @@ -17,7 +17,7 @@ runs: # cache: yarn ## Currently disabled because of frequent timeouts - name: Install WASM tools - uses: taiki-e/install-action@03381f5ca4d069c7f756fec5d189e036987f842e # v2.46.17 + uses: taiki-e/install-action@acd25891978b4cdaebd139d3efef606d26513b14 # v2.47.0 with: tool: wasm-pack@0.12.1 diff --git a/.github/workflows/bench.yml b/.github/workflows/bench.yml index ff14c7dd411..11e1321e29d 100644 --- a/.github/workflows/bench.yml +++ b/.github/workflows/bench.yml @@ -99,7 +99,7 @@ jobs: - name: Install Rust tools if: steps.benches.outputs.has-rust == 'true' - uses: taiki-e/install-action@03381f5ca4d069c7f756fec5d189e036987f842e # v2.46.17 + uses: taiki-e/install-action@acd25891978b4cdaebd139d3efef606d26513b14 # v2.47.0 with: tool: just@1.34.0,critcmp@0.1.8 @@ -251,7 +251,7 @@ jobs: - name: Install Rust tools if: steps.benches.outputs.has-rust == 'true' - uses: taiki-e/install-action@03381f5ca4d069c7f756fec5d189e036987f842e # v2.46.17 + uses: taiki-e/install-action@acd25891978b4cdaebd139d3efef606d26513b14 # v2.47.0 with: tool: just@1.34.0,critcmp@0.1.8 diff --git a/.github/workflows/lint.yml b/.github/workflows/lint.yml index 27f9f6dc766..953de759354 100644 --- a/.github/workflows/lint.yml +++ b/.github/workflows/lint.yml @@ -111,7 +111,7 @@ jobs: - name: Install Rust tools if: always() && steps.lints.outputs.has-rust == 'true' - uses: taiki-e/install-action@03381f5ca4d069c7f756fec5d189e036987f842e # v2.46.17 + uses: taiki-e/install-action@acd25891978b4cdaebd139d3efef606d26513b14 # v2.47.0 with: tool: just@1.34.0,cargo-hack@0.6.30,clippy-sarif@0.6.5,sarif-fmt@0.6.5 diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index 10bdd2c7bd8..a5320dea817 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -163,7 +163,7 @@ jobs: - name: Install Rust tools if: always() && steps.tests.outputs.has-rust == 'true' - uses: taiki-e/install-action@03381f5ca4d069c7f756fec5d189e036987f842e # v2.46.17 + uses: taiki-e/install-action@acd25891978b4cdaebd139d3efef606d26513b14 # v2.47.0 with: tool: just@1.34.0,cargo-hack@0.6.30,cargo-nextest@0.9.72,cargo-llvm-cov@0.6.11 @@ -281,7 +281,7 @@ jobs: - name: Install Rust tools if: steps.tests.outputs.has-rust == 'true' - uses: taiki-e/install-action@03381f5ca4d069c7f756fec5d189e036987f842e # v2.46.17 + uses: taiki-e/install-action@acd25891978b4cdaebd139d3efef606d26513b14 # v2.47.0 with: tool: just@1.34.0,cargo-hack@0.6.30,cargo-nextest@0.9.72,cargo-llvm-cov@0.6.11 From c34920c6d82c74ce0dab85df09835a0f53c1a1a3 Mon Sep 17 00:00:00 2001 From: "hash-worker[bot]" <180894564+hash-worker[bot]@users.noreply.github.com> Date: Fri, 27 Dec 2024 12:57:15 +0000 Subject: [PATCH 104/159] Update npm package `eslint-config-sheriff` to v25.4.0 (#6013) Co-authored-by: hash-worker[bot] <180894564+hash-worker[bot]@users.noreply.github.com> --- libs/@local/eslint/package.json | 2 +- yarn.lock | 18 +++++++++--------- 2 files changed, 10 insertions(+), 10 deletions(-) diff --git a/libs/@local/eslint/package.json b/libs/@local/eslint/package.json index e9f92308329..6b3b320c66f 100644 --- a/libs/@local/eslint/package.json +++ b/libs/@local/eslint/package.json @@ -29,7 +29,7 @@ "eslint-config-airbnb": "19.0.4", "eslint-config-flat-gitignore": "0.3.0", "eslint-config-prettier": "9.1.0", - "eslint-config-sheriff": "25.3.1", + "eslint-config-sheriff": "25.4.0", "eslint-import-resolver-node": "0.3.9", "eslint-import-resolver-typescript": "3.7.0", "eslint-plugin-canonical": "5.1.2", diff --git a/yarn.lock b/yarn.lock index 284ea5f110c..369a28d116d 100644 --- a/yarn.lock +++ b/yarn.lock @@ -6697,7 +6697,7 @@ __metadata: languageName: node linkType: hard -"@eslint/compat@npm:1.2.4, @eslint/compat@npm:^1.1.1": +"@eslint/compat@npm:1.2.4, @eslint/compat@npm:^1.1.1, @eslint/compat@npm:^1.2.4": version: 1.2.4 resolution: "@eslint/compat@npm:1.2.4" peerDependencies: @@ -6744,7 +6744,7 @@ __metadata: languageName: node linkType: hard -"@eslint/js@npm:9.17.0, @eslint/js@npm:^9.14.0": +"@eslint/js@npm:9.17.0, @eslint/js@npm:^9.17.0": version: 9.17.0 resolution: "@eslint/js@npm:9.17.0" checksum: 10c0/a0fda8657a01c60aa540f95397754267ba640ffb126e011b97fd65c322a94969d161beeaef57c1441c495da2f31167c34bd38209f7c146c7225072378c3a933d @@ -9304,7 +9304,7 @@ __metadata: eslint-config-airbnb: "npm:19.0.4" eslint-config-flat-gitignore: "npm:0.3.0" eslint-config-prettier: "npm:9.1.0" - eslint-config-sheriff: "npm:25.3.1" + eslint-config-sheriff: "npm:25.4.0" eslint-import-resolver-node: "npm:0.3.9" eslint-import-resolver-typescript: "npm:3.7.0" eslint-plugin-canonical: "npm:5.1.2" @@ -26402,13 +26402,13 @@ __metadata: languageName: node linkType: hard -"eslint-config-sheriff@npm:25.3.1": - version: 25.3.1 - resolution: "eslint-config-sheriff@npm:25.3.1" +"eslint-config-sheriff@npm:25.4.0": + version: 25.4.0 + resolution: "eslint-config-sheriff@npm:25.4.0" dependencies: "@eslint-react/eslint-plugin": "npm:^1.10.1" - "@eslint/compat": "npm:^1.1.1" - "@eslint/js": "npm:^9.14.0" + "@eslint/compat": "npm:^1.2.4" + "@eslint/js": "npm:^9.17.0" "@next/eslint-plugin-next": "npm:^13.2.3" "@regru/eslint-plugin-prefer-early-return": "npm:^1.0.0" "@stylistic/eslint-plugin": "npm:^2.6.4" @@ -26440,7 +26440,7 @@ __metadata: peerDependencies: eslint: ">=9.0.0" typescript: ">=5.0.0" - checksum: 10c0/1b2af085c7acb066a8d3b2ff98e68089218aa3304316d7f70b1e918434ccf37dc10972d335481a7c52d0549c9cf85962136d92130dc7b825e914b4c501eae7e2 + checksum: 10c0/458ffbf413092cb0a94f2155c456646e8036f08c43a03b93531ab00eced2f6f403455c4382a5650672e50e25eb9eb4ff8b3e703137fce3da2c62140d43739fca languageName: node linkType: hard From 95f01af381a1e70b1e9ebfdf1a1ef3df6eb5b372 Mon Sep 17 00:00:00 2001 From: "hash-worker[bot]" <180894564+hash-worker[bot]@users.noreply.github.com> Date: Fri, 27 Dec 2024 13:08:01 +0000 Subject: [PATCH 105/159] Update npm package `chalk` to v5.4.1 (#6015) Co-authored-by: hash-worker[bot] <180894564+hash-worker[bot]@users.noreply.github.com> --- apps/hashdotdev/package.json | 2 +- libs/@local/repo-chores/node/package.json | 2 +- yarn.lock | 12 ++++++------ 3 files changed, 8 insertions(+), 8 deletions(-) diff --git a/apps/hashdotdev/package.json b/apps/hashdotdev/package.json index 255144cb542..1e2eb8b70a5 100644 --- a/apps/hashdotdev/package.json +++ b/apps/hashdotdev/package.json @@ -79,7 +79,7 @@ "@types/react-html-parser": "2.0.6", "@types/unist": "3.0.3", "babel-loader": "9.2.1", - "chalk": "5.3.0", + "chalk": "5.4.1", "eslint": "9.17.0", "execa": "7.2.0", "tsx": "4.19.2", diff --git a/libs/@local/repo-chores/node/package.json b/libs/@local/repo-chores/node/package.json index be164d20b78..732e269e5b9 100644 --- a/libs/@local/repo-chores/node/package.json +++ b/libs/@local/repo-chores/node/package.json @@ -11,7 +11,7 @@ }, "dependencies": { "@blockprotocol/core": "patch:@blockprotocol/core@npm%3A0.1.3#~/.yarn/patches/@blockprotocol-core-npm-0.1.3-7c4f062e15.patch", - "chalk": "4.1.2", + "chalk": "5.4.1", "envalid": "7.3.1", "execa": "5.1.1", "fs-extra": "11.1.0", diff --git a/yarn.lock b/yarn.lock index 369a28d116d..9a7fe8f1dd7 100644 --- a/yarn.lock +++ b/yarn.lock @@ -746,7 +746,7 @@ __metadata: axios: "npm:1.7.9" babel-loader: "npm:9.2.1" calculation-block: "npm:0.2.2" - chalk: "npm:5.3.0" + chalk: "npm:5.4.1" clsx: "npm:1.2.1" d3: "npm:7.9.0" d3-dag: "npm:1.1.0" @@ -9547,7 +9547,7 @@ __metadata: "@local/tsconfig": "npm:0.0.0-private" "@types/fs-extra": "npm:9.0.13" "@types/prettier": "npm:3.0.0" - chalk: "npm:4.1.2" + chalk: "npm:5.4.1" envalid: "npm:7.3.1" eslint: "npm:9.17.0" execa: "npm:5.1.1" @@ -22246,10 +22246,10 @@ __metadata: languageName: node linkType: hard -"chalk@npm:5.3.0, chalk@npm:^5.2.0, chalk@npm:^5.3.0": - version: 5.3.0 - resolution: "chalk@npm:5.3.0" - checksum: 10c0/8297d436b2c0f95801103ff2ef67268d362021b8210daf8ddbe349695333eb3610a71122172ff3b0272f1ef2cf7cc2c41fdaa4715f52e49ffe04c56340feed09 +"chalk@npm:5.4.1, chalk@npm:^5.2.0, chalk@npm:^5.3.0": + version: 5.4.1 + resolution: "chalk@npm:5.4.1" + checksum: 10c0/b23e88132c702f4855ca6d25cb5538b1114343e41472d5263ee8a37cccfccd9c4216d111e1097c6a27830407a1dc81fecdf2a56f2c63033d4dbbd88c10b0dcef languageName: node linkType: hard From f28138f7d77bad0dee330ba64133ba958e4bdb25 Mon Sep 17 00:00:00 2001 From: "hash-worker[bot]" <180894564+hash-worker[bot]@users.noreply.github.com> Date: Fri, 27 Dec 2024 13:13:55 +0000 Subject: [PATCH 106/159] Update npm package `fs-extra` to v11.2.0 (#6016) Co-authored-by: hash-worker[bot] <180894564+hash-worker[bot]@users.noreply.github.com> --- apps/hashdotdev/package.json | 4 +-- apps/plugin-browser/package.json | 2 +- libs/@local/repo-chores/node/package.json | 4 +-- yarn.lock | 41 +++++++++++------------ 4 files changed, 25 insertions(+), 26 deletions(-) diff --git a/apps/hashdotdev/package.json b/apps/hashdotdev/package.json index 1e2eb8b70a5..cbe664ba5b9 100644 --- a/apps/hashdotdev/package.json +++ b/apps/hashdotdev/package.json @@ -36,7 +36,7 @@ "d3-dag": "1.1.0", "date-fns": "4.1.0", "feed": "4.2.2", - "fs-extra": "10.1.0", + "fs-extra": "11.2.0", "gray-matter": "4.0.3", "html-to-text": "9.0.5", "image-size": "1.2.0", @@ -68,7 +68,7 @@ "@local/eslint": "0.0.0-private", "@local/tsconfig": "0.0.0-private", "@types/d3": "7.4.3", - "@types/fs-extra": "9.0.13", + "@types/fs-extra": "11.0.4", "@types/gtag.js": "0.0.20", "@types/html-to-text": "9.0.4", "@types/md5": "2.3.5", diff --git a/apps/plugin-browser/package.json b/apps/plugin-browser/package.json index 631488a5ef7..32e7a2244ec 100755 --- a/apps/plugin-browser/package.json +++ b/apps/plugin-browser/package.json @@ -75,7 +75,7 @@ "dotenv-flow": "3.3.0", "eslint": "9.17.0", "file-loader": "6.2.0", - "fs-extra": "11.1.0", + "fs-extra": "11.2.0", "html-loader": "4.2.0", "html-webpack-plugin": "5.6.3", "process": "0.11.10", diff --git a/libs/@local/repo-chores/node/package.json b/libs/@local/repo-chores/node/package.json index 732e269e5b9..0c6111f6f71 100644 --- a/libs/@local/repo-chores/node/package.json +++ b/libs/@local/repo-chores/node/package.json @@ -14,7 +14,7 @@ "chalk": "5.4.1", "envalid": "7.3.1", "execa": "5.1.1", - "fs-extra": "11.1.0", + "fs-extra": "11.2.0", "globby": "11.1.0", "prettier": "3.4.2", "regex-parser": "2.3.0", @@ -24,7 +24,7 @@ "devDependencies": { "@local/eslint": "0.0.0-private", "@local/tsconfig": "0.0.0-private", - "@types/fs-extra": "9.0.13", + "@types/fs-extra": "11.0.4", "@types/prettier": "3.0.0", "eslint": "9.17.0", "typescript": "5.7.2" diff --git a/yarn.lock b/yarn.lock index 9a7fe8f1dd7..decd87abdf0 100644 --- a/yarn.lock +++ b/yarn.lock @@ -733,7 +733,7 @@ __metadata: "@mui/material": "npm:5.16.13" "@mui/system": "npm:5.16.13" "@types/d3": "npm:7.4.3" - "@types/fs-extra": "npm:9.0.13" + "@types/fs-extra": "npm:11.0.4" "@types/gtag.js": "npm:0.0.20" "@types/html-to-text": "npm:9.0.4" "@types/md5": "npm:2.3.5" @@ -754,7 +754,7 @@ __metadata: eslint: "npm:9.17.0" execa: "npm:7.2.0" feed: "npm:4.2.2" - fs-extra: "npm:10.1.0" + fs-extra: "npm:11.2.0" gray-matter: "npm:4.0.3" html-to-text: "npm:9.0.5" image-size: "npm:1.2.0" @@ -826,7 +826,7 @@ __metadata: eslint: "npm:9.17.0" file-loader: "npm:6.2.0" fractional-indexing: "npm:2.1.0" - fs-extra: "npm:11.1.0" + fs-extra: "npm:11.2.0" graphql: "npm:16.10.0" html-loader: "npm:4.2.0" html-webpack-plugin: "npm:5.6.3" @@ -9545,13 +9545,13 @@ __metadata: "@blockprotocol/core": "patch:@blockprotocol/core@npm%3A0.1.3#~/.yarn/patches/@blockprotocol-core-npm-0.1.3-7c4f062e15.patch" "@local/eslint": "npm:0.0.0-private" "@local/tsconfig": "npm:0.0.0-private" - "@types/fs-extra": "npm:9.0.13" + "@types/fs-extra": "npm:11.0.4" "@types/prettier": "npm:3.0.0" chalk: "npm:5.4.1" envalid: "npm:7.3.1" eslint: "npm:9.17.0" execa: "npm:5.1.1" - fs-extra: "npm:11.1.0" + fs-extra: "npm:11.2.0" globby: "npm:11.1.0" prettier: "npm:3.4.2" regex-parser: "npm:2.3.0" @@ -17717,12 +17717,13 @@ __metadata: languageName: node linkType: hard -"@types/fs-extra@npm:9.0.13": - version: 9.0.13 - resolution: "@types/fs-extra@npm:9.0.13" +"@types/fs-extra@npm:11.0.4": + version: 11.0.4 + resolution: "@types/fs-extra@npm:11.0.4" dependencies: + "@types/jsonfile": "npm:*" "@types/node": "npm:*" - checksum: 10c0/576d4e9d382393316ed815c593f7f5c157408ec5e184521d077fcb15d514b5a985245f153ef52142b9b976cb9bd8f801850d51238153ebd0dc9e96b7a7548588 + checksum: 10c0/9e34f9b24ea464f3c0b18c3f8a82aefc36dc524cc720fc2b886e5465abc66486ff4e439ea3fb2c0acebf91f6d3f74e514f9983b1f02d4243706bdbb7511796ad languageName: node linkType: hard @@ -17944,6 +17945,15 @@ __metadata: languageName: node linkType: hard +"@types/jsonfile@npm:*": + version: 6.1.4 + resolution: "@types/jsonfile@npm:6.1.4" + dependencies: + "@types/node": "npm:*" + checksum: 10c0/b12d068b021e4078f6ac4441353965769be87acf15326173e2aea9f3bf8ead41bd0ad29421df5bbeb0123ec3fc02eb0a734481d52903704a1454a1845896b9eb + languageName: node + linkType: hard + "@types/jsonpath@npm:0.2.4": version: 0.2.4 resolution: "@types/jsonpath@npm:0.2.4" @@ -28551,17 +28561,6 @@ __metadata: languageName: node linkType: hard -"fs-extra@npm:11.1.0": - version: 11.1.0 - resolution: "fs-extra@npm:11.1.0" - dependencies: - graceful-fs: "npm:^4.2.0" - jsonfile: "npm:^6.0.1" - universalify: "npm:^2.0.0" - checksum: 10c0/8085a078ead6a95711cc3cb689f9a64ad7393a1cdf7ed1bdab9dbef384f4a8fac941d20b1eb3067c427c82730a1078f9cfe93d86b98e848ee5445024ad0a3fa4 - languageName: node - linkType: hard - "fs-extra@npm:11.1.1": version: 11.1.1 resolution: "fs-extra@npm:11.1.1" @@ -28573,7 +28572,7 @@ __metadata: languageName: node linkType: hard -"fs-extra@npm:^11.1.0, fs-extra@npm:^11.2.0": +"fs-extra@npm:11.2.0, fs-extra@npm:^11.1.0, fs-extra@npm:^11.2.0": version: 11.2.0 resolution: "fs-extra@npm:11.2.0" dependencies: From d19a24084a50f0ba38567a6d3e3e7ea37f6d5b9f Mon Sep 17 00:00:00 2001 From: "hash-worker[bot]" <180894564+hash-worker[bot]@users.noreply.github.com> Date: Fri, 27 Dec 2024 14:28:10 +0000 Subject: [PATCH 107/159] Update nextjs monorepo to v15.1.3 (#6010) Co-authored-by: hash-worker[bot] <180894564+hash-worker[bot]@users.noreply.github.com> --- apps/hash-frontend/package.json | 4 +- apps/hashdotdev/package.json | 2 +- .../@local/hash-isomorphic-utils/package.json | 2 +- yarn.lock | 98 +++++++++---------- 4 files changed, 53 insertions(+), 53 deletions(-) diff --git a/apps/hash-frontend/package.json b/apps/hash-frontend/package.json index e90d2632cc1..672faf4189e 100644 --- a/apps/hash-frontend/package.json +++ b/apps/hash-frontend/package.json @@ -86,7 +86,7 @@ "marked": "4.3.0", "material-ui-popup-state": "4.1.0", "millify": "6.1.0", - "next": "15.1.2", + "next": "15.1.3", "next-seo": "6.6.0", "nextjs-progressbar": "0.0.16", "notistack": "2.0.8", @@ -132,7 +132,7 @@ "@graphql-codegen/typescript-operations": "2.5.13", "@local/eslint": "0.0.0-private", "@local/tsconfig": "0.0.0-private", - "@next/bundle-analyzer": "15.1.2", + "@next/bundle-analyzer": "15.1.3", "@types/dotenv-flow": "3.3.3", "@types/gapi": "0.0.47", "@types/google.accounts": "0.0.15", diff --git a/apps/hashdotdev/package.json b/apps/hashdotdev/package.json index cbe664ba5b9..0540e4aa5ce 100644 --- a/apps/hashdotdev/package.json +++ b/apps/hashdotdev/package.json @@ -43,7 +43,7 @@ "katex": "0.16.18", "md5": "2.3.0", "mock-block-dock": "0.0.21", - "next": "15.1.2", + "next": "15.1.3", "next-mdx-remote": "4.4.1", "next-seo": "6.6.0", "nextjs-progressbar": "0.0.16", diff --git a/libs/@local/hash-isomorphic-utils/package.json b/libs/@local/hash-isomorphic-utils/package.json index e1368f4de88..8e9cf125a38 100644 --- a/libs/@local/hash-isomorphic-utils/package.json +++ b/libs/@local/hash-isomorphic-utils/package.json @@ -68,7 +68,7 @@ "@vitest/coverage-istanbul": "2.1.8", "eslint": "9.17.0", "graphql": "16.10.0", - "next": "15.1.2", + "next": "15.1.3", "prettier": "3.4.2", "react": "19.0.0", "rimraf": "6.0.1", diff --git a/yarn.lock b/yarn.lock index decd87abdf0..1c31409197d 100644 --- a/yarn.lock +++ b/yarn.lock @@ -497,7 +497,7 @@ __metadata: "@mui/icons-material": "npm:5.16.13" "@mui/material": "npm:5.16.13" "@mui/system": "npm:5.16.13" - "@next/bundle-analyzer": "npm:15.1.2" + "@next/bundle-analyzer": "npm:15.1.3" "@ory/client": "npm:1.1.41" "@ory/integrations": "npm:1.1.4" "@popperjs/core": "npm:2.11.8" @@ -552,7 +552,7 @@ __metadata: marked: "npm:4.3.0" material-ui-popup-state: "npm:4.1.0" millify: "npm:6.1.0" - next: "npm:15.1.2" + next: "npm:15.1.3" next-seo: "npm:6.6.0" nextjs-progressbar: "npm:0.0.16" notistack: "npm:2.0.8" @@ -761,7 +761,7 @@ __metadata: katex: "npm:0.16.18" md5: "npm:2.3.0" mock-block-dock: "npm:0.0.21" - next: "npm:15.1.2" + next: "npm:15.1.3" next-mdx-remote: "npm:4.4.1" next-seo: "npm:6.6.0" nextjs-progressbar: "npm:0.0.16" @@ -9485,7 +9485,7 @@ __metadata: immer: "npm:9.0.21" jsonschema: "npm:1.4.1" lodash-es: "npm:4.17.21" - next: "npm:15.1.2" + next: "npm:15.1.3" pluralize: "npm:8.0.0" prettier: "npm:3.4.2" prosemirror-commands: "npm:1.3.1" @@ -10133,19 +10133,19 @@ __metadata: languageName: node linkType: hard -"@next/bundle-analyzer@npm:15.1.2": - version: 15.1.2 - resolution: "@next/bundle-analyzer@npm:15.1.2" +"@next/bundle-analyzer@npm:15.1.3": + version: 15.1.3 + resolution: "@next/bundle-analyzer@npm:15.1.3" dependencies: webpack-bundle-analyzer: "npm:4.10.1" - checksum: 10c0/bf1a1ef6554bd7c39b26cebe9a9e3c387d5874dc33278662732a269e106aa091255524e87c0fb43546918962450fcebee25a24c7c14d76afeb6c1268907b6246 + checksum: 10c0/0f84431b40f2657f20c0e98b71c17ff91bc6b75d64ad1cca6589ed84de658c61c3dfd544cb543743d6a6b03218e3cb0850695f5c40ba0573b51944efc40905ba languageName: node linkType: hard -"@next/env@npm:15.1.2": - version: 15.1.2 - resolution: "@next/env@npm:15.1.2" - checksum: 10c0/07f2b258bd0e8937bfd33515c48b920491d9c281de5f1fa58c4c222dc8e7e0ad3745ca6035bfef788f07d9a39c583bc18cb0cdfbaa8c2177761d9c2bbdd9592f +"@next/env@npm:15.1.3": + version: 15.1.3 + resolution: "@next/env@npm:15.1.3" + checksum: 10c0/873e7977fe2a4d087f41fa2f9dff957111b88d59631437ab6fc13a11eb6d4ef59aa8109ca80f978389956e4b75b033ff8f68e05e96ce8d9fdcfa977dc90363ae languageName: node linkType: hard @@ -10158,58 +10158,58 @@ __metadata: languageName: node linkType: hard -"@next/swc-darwin-arm64@npm:15.1.2": - version: 15.1.2 - resolution: "@next/swc-darwin-arm64@npm:15.1.2" +"@next/swc-darwin-arm64@npm:15.1.3": + version: 15.1.3 + resolution: "@next/swc-darwin-arm64@npm:15.1.3" conditions: os=darwin & cpu=arm64 languageName: node linkType: hard -"@next/swc-darwin-x64@npm:15.1.2": - version: 15.1.2 - resolution: "@next/swc-darwin-x64@npm:15.1.2" +"@next/swc-darwin-x64@npm:15.1.3": + version: 15.1.3 + resolution: "@next/swc-darwin-x64@npm:15.1.3" conditions: os=darwin & cpu=x64 languageName: node linkType: hard -"@next/swc-linux-arm64-gnu@npm:15.1.2": - version: 15.1.2 - resolution: "@next/swc-linux-arm64-gnu@npm:15.1.2" +"@next/swc-linux-arm64-gnu@npm:15.1.3": + version: 15.1.3 + resolution: "@next/swc-linux-arm64-gnu@npm:15.1.3" conditions: os=linux & cpu=arm64 & libc=glibc languageName: node linkType: hard -"@next/swc-linux-arm64-musl@npm:15.1.2": - version: 15.1.2 - resolution: "@next/swc-linux-arm64-musl@npm:15.1.2" +"@next/swc-linux-arm64-musl@npm:15.1.3": + version: 15.1.3 + resolution: "@next/swc-linux-arm64-musl@npm:15.1.3" conditions: os=linux & cpu=arm64 & libc=musl languageName: node linkType: hard -"@next/swc-linux-x64-gnu@npm:15.1.2": - version: 15.1.2 - resolution: "@next/swc-linux-x64-gnu@npm:15.1.2" +"@next/swc-linux-x64-gnu@npm:15.1.3": + version: 15.1.3 + resolution: "@next/swc-linux-x64-gnu@npm:15.1.3" conditions: os=linux & cpu=x64 & libc=glibc languageName: node linkType: hard -"@next/swc-linux-x64-musl@npm:15.1.2": - version: 15.1.2 - resolution: "@next/swc-linux-x64-musl@npm:15.1.2" +"@next/swc-linux-x64-musl@npm:15.1.3": + version: 15.1.3 + resolution: "@next/swc-linux-x64-musl@npm:15.1.3" conditions: os=linux & cpu=x64 & libc=musl languageName: node linkType: hard -"@next/swc-win32-arm64-msvc@npm:15.1.2": - version: 15.1.2 - resolution: "@next/swc-win32-arm64-msvc@npm:15.1.2" +"@next/swc-win32-arm64-msvc@npm:15.1.3": + version: 15.1.3 + resolution: "@next/swc-win32-arm64-msvc@npm:15.1.3" conditions: os=win32 & cpu=arm64 languageName: node linkType: hard -"@next/swc-win32-x64-msvc@npm:15.1.2": - version: 15.1.2 - resolution: "@next/swc-win32-x64-msvc@npm:15.1.2" +"@next/swc-win32-x64-msvc@npm:15.1.3": + version: 15.1.3 + resolution: "@next/swc-win32-x64-msvc@npm:15.1.3" conditions: os=win32 & cpu=x64 languageName: node linkType: hard @@ -36935,19 +36935,19 @@ __metadata: languageName: node linkType: hard -"next@npm:15.1.2, next@npm:>=12.0.10": - version: 15.1.2 - resolution: "next@npm:15.1.2" +"next@npm:15.1.3, next@npm:>=12.0.10": + version: 15.1.3 + resolution: "next@npm:15.1.3" dependencies: - "@next/env": "npm:15.1.2" - "@next/swc-darwin-arm64": "npm:15.1.2" - "@next/swc-darwin-x64": "npm:15.1.2" - "@next/swc-linux-arm64-gnu": "npm:15.1.2" - "@next/swc-linux-arm64-musl": "npm:15.1.2" - "@next/swc-linux-x64-gnu": "npm:15.1.2" - "@next/swc-linux-x64-musl": "npm:15.1.2" - "@next/swc-win32-arm64-msvc": "npm:15.1.2" - "@next/swc-win32-x64-msvc": "npm:15.1.2" + "@next/env": "npm:15.1.3" + "@next/swc-darwin-arm64": "npm:15.1.3" + "@next/swc-darwin-x64": "npm:15.1.3" + "@next/swc-linux-arm64-gnu": "npm:15.1.3" + "@next/swc-linux-arm64-musl": "npm:15.1.3" + "@next/swc-linux-x64-gnu": "npm:15.1.3" + "@next/swc-linux-x64-musl": "npm:15.1.3" + "@next/swc-win32-arm64-msvc": "npm:15.1.3" + "@next/swc-win32-x64-msvc": "npm:15.1.3" "@swc/counter": "npm:0.1.3" "@swc/helpers": "npm:0.5.15" busboy: "npm:1.6.0" @@ -36992,7 +36992,7 @@ __metadata: optional: true bin: next: dist/bin/next - checksum: 10c0/320b949336fa41210ebe5cee66fce7edb4dc3474b438898590e43f6dfe30212620b090801d6f8cc4d37bfb54cb316680f65b58110cc8885f8c2b108a80e4ecee + checksum: 10c0/3450a2277057c74de9bda5390796e7971afb5c7725af8fce43045b4f5d4e4a5752a14a2fa7f78ad4eab523a11c6b147893038f607a9d87a8f7f7bdcd560245b5 languageName: node linkType: hard From a96396ee9f9689b70b5922f0e146baa7afc6db45 Mon Sep 17 00:00:00 2001 From: "hash-worker[bot]" <180894564+hash-worker[bot]@users.noreply.github.com> Date: Fri, 27 Dec 2024 14:43:41 +0000 Subject: [PATCH 108/159] Update npm package `markdownlint-cli2` to v0.17.0 (#6014) Co-authored-by: hash-worker[bot] <180894564+hash-worker[bot]@users.noreply.github.com> --- package.json | 2 +- yarn.lock | 196 ++++++++++++++++++++++++++++++--------------------- 2 files changed, 117 insertions(+), 81 deletions(-) diff --git a/package.json b/package.json index 9ba75e07292..9c07843ad3b 100644 --- a/package.json +++ b/package.json @@ -107,7 +107,7 @@ "@taplo/cli": "0.7.0", "@yarnpkg/types": "^4.0.0", "lefthook": "1.10.1", - "markdownlint-cli2": "0.16.0", + "markdownlint-cli2": "0.17.0", "npm-run-all2": "7.0.2", "prettier": "3.4.2", "prettier-plugin-packagejson": "2.5.6", diff --git a/yarn.lock b/yarn.lock index 1c31409197d..bf03cba65a3 100644 --- a/yarn.lock +++ b/yarn.lock @@ -17961,6 +17961,13 @@ __metadata: languageName: node linkType: hard +"@types/katex@npm:^0.16.0": + version: 0.16.7 + resolution: "@types/katex@npm:0.16.7" + checksum: 10c0/68dcb9f68a90513ec78ca0196a142e15c2a2c270b1520d752bafd47a99207115085a64087b50140359017d7e9c870b3c68e7e4d36668c9e348a9ef0c48919b5a + languageName: node + linkType: hard + "@types/keyv@npm:^3.1.4": version: 3.1.4 resolution: "@types/keyv@npm:3.1.4" @@ -29871,7 +29878,7 @@ __metadata: "@taplo/cli": "npm:0.7.0" "@yarnpkg/types": "npm:^4.0.0" lefthook: "npm:1.10.1" - markdownlint-cli2: "npm:0.16.0" + markdownlint-cli2: "npm:0.17.0" npm-run-all2: "npm:7.0.2" prettier: "npm:3.4.2" prettier-plugin-packagejson: "npm:2.5.6" @@ -33092,7 +33099,7 @@ __metadata: languageName: node linkType: hard -"katex@npm:0.16.18": +"katex@npm:0.16.18, katex@npm:^0.16.0": version: 0.16.18 resolution: "katex@npm:0.16.18" dependencies: @@ -34430,36 +34437,35 @@ __metadata: languageName: node linkType: hard -"markdownlint-cli2@npm:0.16.0": - version: 0.16.0 - resolution: "markdownlint-cli2@npm:0.16.0" +"markdownlint-cli2@npm:0.17.0": + version: 0.17.0 + resolution: "markdownlint-cli2@npm:0.17.0" dependencies: globby: "npm:14.0.2" js-yaml: "npm:4.1.0" jsonc-parser: "npm:3.3.1" - markdownlint: "npm:0.36.1" + markdownlint: "npm:0.37.2" markdownlint-cli2-formatter-default: "npm:0.0.5" micromatch: "npm:4.0.8" bin: - markdownlint-cli2: markdownlint-cli2.js - checksum: 10c0/485fcddcba6e82bfd276cebb509bfa421d2a97e678a1db13b06af6e66bd3f5d518cde7f66bf138842ad984f00cd4ebe4f637bd6a351911d5d260707bb8f5b316 - languageName: node - linkType: hard - -"markdownlint-micromark@npm:0.1.12": - version: 0.1.12 - resolution: "markdownlint-micromark@npm:0.1.12" - checksum: 10c0/6833c2b9eb6fd63c43dde30aff8bc526cb97638b287535f8277e2c97015602df0670becdece639986dbe3ac2b279d7c1d308c0a65cb5d2aacc331ea768afa86e + markdownlint-cli2: markdownlint-cli2-bin.mjs + checksum: 10c0/019cf1aaea77ee440d8ba6b86d0b59316dc9a9e6d4ccaebdcf5b7988830b9cfd8c215b08f6eeedfbd440ec2471fedd33a61731e914e9c1767c8aebc673764fa0 languageName: node linkType: hard -"markdownlint@npm:0.36.1": - version: 0.36.1 - resolution: "markdownlint@npm:0.36.1" +"markdownlint@npm:0.37.2": + version: 0.37.2 + resolution: "markdownlint@npm:0.37.2" dependencies: markdown-it: "npm:14.1.0" - markdownlint-micromark: "npm:0.1.12" - checksum: 10c0/1f93a010c5421a9c9cbd51aeb4046c674b4797ef1c6ad55b0344e7a6ecec46dd38d526e623fd6a3d4c486fe594119c5161dad6033b6468f7719d3c69b5d0cea6 + micromark: "npm:4.0.1" + micromark-extension-directive: "npm:3.0.2" + micromark-extension-gfm-autolink-literal: "npm:2.1.0" + micromark-extension-gfm-footnote: "npm:2.1.0" + micromark-extension-gfm-table: "npm:2.1.0" + micromark-extension-math: "npm:3.1.0" + micromark-util-types: "npm:2.0.1" + checksum: 10c0/f0ebaac0028dcf9b748d3b37e5dd2be90752cd559fd4cb3df15414a5231b46212120dba5fefafee9f4b1e5dd31dad356ae694081a9500b8b7cc9883b6132af0c languageName: node linkType: hard @@ -35216,19 +35222,22 @@ __metadata: languageName: node linkType: hard -"micromark-extension-gfm-autolink-literal@npm:^1.0.0": - version: 1.0.5 - resolution: "micromark-extension-gfm-autolink-literal@npm:1.0.5" +"micromark-extension-directive@npm:3.0.2": + version: 3.0.2 + resolution: "micromark-extension-directive@npm:3.0.2" dependencies: - micromark-util-character: "npm:^1.0.0" - micromark-util-sanitize-uri: "npm:^1.0.0" - micromark-util-symbol: "npm:^1.0.0" - micromark-util-types: "npm:^1.0.0" - checksum: 10c0/4964a52605ac36d24501d427e2d173fa39b5e0402275cb45068eba4898f4cb9cc57f7007b21b7514f0ab5f7b371b1701a5156a10b6ac8e77a7f36e830cf481d4 + devlop: "npm:^1.0.0" + micromark-factory-space: "npm:^2.0.0" + micromark-factory-whitespace: "npm:^2.0.0" + micromark-util-character: "npm:^2.0.0" + micromark-util-symbol: "npm:^2.0.0" + micromark-util-types: "npm:^2.0.0" + parse-entities: "npm:^4.0.0" + checksum: 10c0/74137485375f02c1b640c2120dd6b9f6aa1e39ca5cd2463df7974ef1cc80203f5ef90448ce009973355a49ba169ef1441eabe57a36877c7b86373788612773da languageName: node linkType: hard -"micromark-extension-gfm-autolink-literal@npm:^2.0.0": +"micromark-extension-gfm-autolink-literal@npm:2.1.0, micromark-extension-gfm-autolink-literal@npm:^2.0.0": version: 2.1.0 resolution: "micromark-extension-gfm-autolink-literal@npm:2.1.0" dependencies: @@ -35240,23 +35249,19 @@ __metadata: languageName: node linkType: hard -"micromark-extension-gfm-footnote@npm:^1.0.0": - version: 1.1.2 - resolution: "micromark-extension-gfm-footnote@npm:1.1.2" +"micromark-extension-gfm-autolink-literal@npm:^1.0.0": + version: 1.0.5 + resolution: "micromark-extension-gfm-autolink-literal@npm:1.0.5" dependencies: - micromark-core-commonmark: "npm:^1.0.0" - micromark-factory-space: "npm:^1.0.0" micromark-util-character: "npm:^1.0.0" - micromark-util-normalize-identifier: "npm:^1.0.0" micromark-util-sanitize-uri: "npm:^1.0.0" micromark-util-symbol: "npm:^1.0.0" micromark-util-types: "npm:^1.0.0" - uvu: "npm:^0.5.0" - checksum: 10c0/b8090876cc3da5436c6253b0b40e39ceaa470c2429f699c19ee4163cef3102c4cd16c4ac2ec8caf916037fad310cfb52a9ef182c75d50fca7419ba08faad9b39 + checksum: 10c0/4964a52605ac36d24501d427e2d173fa39b5e0402275cb45068eba4898f4cb9cc57f7007b21b7514f0ab5f7b371b1701a5156a10b6ac8e77a7f36e830cf481d4 languageName: node linkType: hard -"micromark-extension-gfm-footnote@npm:^2.0.0": +"micromark-extension-gfm-footnote@npm:2.1.0, micromark-extension-gfm-footnote@npm:^2.0.0": version: 2.1.0 resolution: "micromark-extension-gfm-footnote@npm:2.1.0" dependencies: @@ -35272,6 +35277,22 @@ __metadata: languageName: node linkType: hard +"micromark-extension-gfm-footnote@npm:^1.0.0": + version: 1.1.2 + resolution: "micromark-extension-gfm-footnote@npm:1.1.2" + dependencies: + micromark-core-commonmark: "npm:^1.0.0" + micromark-factory-space: "npm:^1.0.0" + micromark-util-character: "npm:^1.0.0" + micromark-util-normalize-identifier: "npm:^1.0.0" + micromark-util-sanitize-uri: "npm:^1.0.0" + micromark-util-symbol: "npm:^1.0.0" + micromark-util-types: "npm:^1.0.0" + uvu: "npm:^0.5.0" + checksum: 10c0/b8090876cc3da5436c6253b0b40e39ceaa470c2429f699c19ee4163cef3102c4cd16c4ac2ec8caf916037fad310cfb52a9ef182c75d50fca7419ba08faad9b39 + languageName: node + linkType: hard + "micromark-extension-gfm-strikethrough@npm:^1.0.0": version: 1.0.7 resolution: "micromark-extension-gfm-strikethrough@npm:1.0.7" @@ -35300,6 +35321,19 @@ __metadata: languageName: node linkType: hard +"micromark-extension-gfm-table@npm:2.1.0, micromark-extension-gfm-table@npm:^2.0.0": + version: 2.1.0 + resolution: "micromark-extension-gfm-table@npm:2.1.0" + dependencies: + devlop: "npm:^1.0.0" + micromark-factory-space: "npm:^2.0.0" + micromark-util-character: "npm:^2.0.0" + micromark-util-symbol: "npm:^2.0.0" + micromark-util-types: "npm:^2.0.0" + checksum: 10c0/c1b564ab68576406046d825b9574f5b4dbedbb5c44bede49b5babc4db92f015d9057dd79d8e0530f2fecc8970a695c40ac2e5e1d4435ccf3ef161038d0d1463b + languageName: node + linkType: hard + "micromark-extension-gfm-table@npm:^1.0.0": version: 1.0.7 resolution: "micromark-extension-gfm-table@npm:1.0.7" @@ -35313,19 +35347,6 @@ __metadata: languageName: node linkType: hard -"micromark-extension-gfm-table@npm:^2.0.0": - version: 2.1.0 - resolution: "micromark-extension-gfm-table@npm:2.1.0" - dependencies: - devlop: "npm:^1.0.0" - micromark-factory-space: "npm:^2.0.0" - micromark-util-character: "npm:^2.0.0" - micromark-util-symbol: "npm:^2.0.0" - micromark-util-types: "npm:^2.0.0" - checksum: 10c0/c1b564ab68576406046d825b9574f5b4dbedbb5c44bede49b5babc4db92f015d9057dd79d8e0530f2fecc8970a695c40ac2e5e1d4435ccf3ef161038d0d1463b - languageName: node - linkType: hard - "micromark-extension-gfm-tagfilter@npm:^1.0.0": version: 1.0.2 resolution: "micromark-extension-gfm-tagfilter@npm:1.0.2" @@ -35402,6 +35423,21 @@ __metadata: languageName: node linkType: hard +"micromark-extension-math@npm:3.1.0": + version: 3.1.0 + resolution: "micromark-extension-math@npm:3.1.0" + dependencies: + "@types/katex": "npm:^0.16.0" + devlop: "npm:^1.0.0" + katex: "npm:^0.16.0" + micromark-factory-space: "npm:^2.0.0" + micromark-util-character: "npm:^2.0.0" + micromark-util-symbol: "npm:^2.0.0" + micromark-util-types: "npm:^2.0.0" + checksum: 10c0/56e6f2185a4613f9d47e7e98cf8605851c990957d9229c942b005e286c8087b61dc9149448d38b2f8be6d42cc6a64aad7e1f2778ddd86fbbb1a2f48a3ca1872f + languageName: node + linkType: hard + "micromark-extension-mdx-expression@npm:^1.0.0": version: 1.0.8 resolution: "micromark-extension-mdx-expression@npm:1.0.8" @@ -35870,6 +35906,13 @@ __metadata: languageName: node linkType: hard +"micromark-util-types@npm:2.0.1, micromark-util-types@npm:^2.0.0": + version: 2.0.1 + resolution: "micromark-util-types@npm:2.0.1" + checksum: 10c0/872ec9334bb42afcc91c5bed8b7ee03b75654b36c6f221ab4d2b1bb0299279f00db948bf38ec6bc1ec03d0cf7842c21ab805190bf676157ba587eb0386d38b71 + languageName: node + linkType: hard + "micromark-util-types@npm:^1.0.0, micromark-util-types@npm:^1.0.1": version: 1.1.0 resolution: "micromark-util-types@npm:1.1.0" @@ -35877,10 +35920,28 @@ __metadata: languageName: node linkType: hard -"micromark-util-types@npm:^2.0.0": - version: 2.0.1 - resolution: "micromark-util-types@npm:2.0.1" - checksum: 10c0/872ec9334bb42afcc91c5bed8b7ee03b75654b36c6f221ab4d2b1bb0299279f00db948bf38ec6bc1ec03d0cf7842c21ab805190bf676157ba587eb0386d38b71 +"micromark@npm:4.0.1, micromark@npm:^4.0.0": + version: 4.0.1 + resolution: "micromark@npm:4.0.1" + dependencies: + "@types/debug": "npm:^4.0.0" + debug: "npm:^4.0.0" + decode-named-character-reference: "npm:^1.0.0" + devlop: "npm:^1.0.0" + micromark-core-commonmark: "npm:^2.0.0" + micromark-factory-space: "npm:^2.0.0" + micromark-util-character: "npm:^2.0.0" + micromark-util-chunked: "npm:^2.0.0" + micromark-util-combine-extensions: "npm:^2.0.0" + micromark-util-decode-numeric-character-reference: "npm:^2.0.0" + micromark-util-encode: "npm:^2.0.0" + micromark-util-normalize-identifier: "npm:^2.0.0" + micromark-util-resolve-all: "npm:^2.0.0" + micromark-util-sanitize-uri: "npm:^2.0.0" + micromark-util-subtokenize: "npm:^2.0.0" + micromark-util-symbol: "npm:^2.0.0" + micromark-util-types: "npm:^2.0.0" + checksum: 10c0/b5d950c84664ce209575e5a54946488f0a1e1240d080544e657b65074c9b08208a5315d9db066b93cbc199ec05f68552ba8b09fd5e716c726f4a4712275a7c5c languageName: node linkType: hard @@ -35909,31 +35970,6 @@ __metadata: languageName: node linkType: hard -"micromark@npm:^4.0.0": - version: 4.0.1 - resolution: "micromark@npm:4.0.1" - dependencies: - "@types/debug": "npm:^4.0.0" - debug: "npm:^4.0.0" - decode-named-character-reference: "npm:^1.0.0" - devlop: "npm:^1.0.0" - micromark-core-commonmark: "npm:^2.0.0" - micromark-factory-space: "npm:^2.0.0" - micromark-util-character: "npm:^2.0.0" - micromark-util-chunked: "npm:^2.0.0" - micromark-util-combine-extensions: "npm:^2.0.0" - micromark-util-decode-numeric-character-reference: "npm:^2.0.0" - micromark-util-encode: "npm:^2.0.0" - micromark-util-normalize-identifier: "npm:^2.0.0" - micromark-util-resolve-all: "npm:^2.0.0" - micromark-util-sanitize-uri: "npm:^2.0.0" - micromark-util-subtokenize: "npm:^2.0.0" - micromark-util-symbol: "npm:^2.0.0" - micromark-util-types: "npm:^2.0.0" - checksum: 10c0/b5d950c84664ce209575e5a54946488f0a1e1240d080544e657b65074c9b08208a5315d9db066b93cbc199ec05f68552ba8b09fd5e716c726f4a4712275a7c5c - languageName: node - linkType: hard - "micromatch@npm:4.0.8, micromatch@npm:^4.0.0, micromatch@npm:^4.0.2, micromatch@npm:^4.0.4, micromatch@npm:^4.0.5, micromatch@npm:^4.0.8": version: 4.0.8 resolution: "micromatch@npm:4.0.8" From d73da3d55999fdcc731a8d1c10f70d62bb3af0db Mon Sep 17 00:00:00 2001 From: "hash-worker[bot]" <180894564+hash-worker[bot]@users.noreply.github.com> Date: Fri, 27 Dec 2024 16:26:28 +0000 Subject: [PATCH 109/159] Update Rust crate `reqwest` to v0.12.11 (#6007) Co-authored-by: hash-worker[bot] <180894564+hash-worker[bot]@users.noreply.github.com> --- Cargo.lock | 9 +++++---- Cargo.toml | 2 +- 2 files changed, 6 insertions(+), 5 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index 34291b8dd9c..117957f66b4 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -3493,9 +3493,9 @@ dependencies = [ [[package]] name = "hyper-util" -version = "0.1.9" +version = "0.1.10" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "41296eb09f183ac68eec06e03cdbea2e759633d4067b2f6552fc2e009bcad08b" +checksum = "df2dcfbe0677734ab2f3ffa7fa7bfd4706bfdc1ef393f2ee30184aed67e631b4" dependencies = [ "bytes", "futures-channel", @@ -6077,9 +6077,9 @@ checksum = "2b15c43186be67a4fd63bee50d0303afffcef381492ebe2c5d87f324e1b8815c" [[package]] name = "reqwest" -version = "0.12.9" +version = "0.12.11" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "a77c62af46e79de0a562e1a9849205ffcb7fc1238876e9bd743357570e04046f" +checksum = "7fe060fe50f524be480214aba758c71f99f90ee8c83c5a36b5e9e1d568eb4eb3" dependencies = [ "base64 0.22.1", "bytes", @@ -6110,6 +6110,7 @@ dependencies = [ "tokio", "tokio-rustls 0.26.0", "tokio-util", + "tower 0.5.2", "tower-service", "url", "wasm-bindgen", diff --git a/Cargo.toml b/Cargo.toml index f46d738e809..4a918a279a6 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -128,7 +128,7 @@ pdfium-render = { version = "0.8.26" } postgres-types = { version = "=0.2.8", default-features = false } prometheus-client = { version = "=0.22.3", default-features = false } regex = { version = "=1.11.1", default-features = false, features = ["perf", "unicode"] } -reqwest = { version = "=0.12.9", default-features = false, features = ["rustls-tls"] } +reqwest = { version = "=0.12.11", default-features = false, features = ["rustls-tls"] } semver = { version = "=1.0.24", default-features = false } sentry-types = { version = "=0.35.0", default-features = false } serde = { version = "=1.0.216", default-features = false } From 2659462cc237ce17e07e50f04839772117774da5 Mon Sep 17 00:00:00 2001 From: "hash-worker[bot]" <180894564+hash-worker[bot]@users.noreply.github.com> Date: Fri, 27 Dec 2024 20:55:50 +0000 Subject: [PATCH 110/159] Update Rust crate `scc` to v2.3.0 (#6017) Co-authored-by: hash-worker[bot] <180894564+hash-worker[bot]@users.noreply.github.com> --- Cargo.lock | 4 ++-- Cargo.toml | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index 117957f66b4..1a6af7e5117 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -6382,9 +6382,9 @@ dependencies = [ [[package]] name = "scc" -version = "2.2.6" +version = "2.3.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "94b13f8ea6177672c49d12ed964cca44836f59621981b04a3e26b87e675181de" +checksum = "28e1c91382686d21b5ac7959341fcb9780fa7c03773646995a87c950fa7be640" dependencies = [ "sdd", ] diff --git a/Cargo.toml b/Cargo.toml index 4a918a279a6..876dfb5d991 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -203,7 +203,7 @@ quote = { version = "=1.0.37", default-features = false } rand = { version = "=0.8.5", default-features = false } refinery = { version = "=0.8.14", default-features = false } rustc_version = { version = "=0.4.1", default-features = false } -scc = { version = "=2.2.6", default-features = false } +scc = { version = "=2.3.0", default-features = false } sentry = { version = "=0.35.0", default-features = false, features = ["backtrace", "contexts", "debug-images", "panic", "reqwest", "rustls", "tower-http", "tracing"] } seq-macro = { version = "=0.3.5", default-features = false } serde_plain = { version = "=1.0.2", default-features = false } From f6b8fb02741afe90e2144847898bbbe2fa74066d Mon Sep 17 00:00:00 2001 From: "hash-worker[bot]" <180894564+hash-worker[bot]@users.noreply.github.com> Date: Sat, 28 Dec 2024 00:41:48 +0000 Subject: [PATCH 111/159] Update Rust crate `serde` to v1.0.217 (#6018) Co-authored-by: hash-worker[bot] <180894564+hash-worker[bot]@users.noreply.github.com> --- Cargo.lock | 8 ++++---- Cargo.toml | 2 +- 2 files changed, 5 insertions(+), 5 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index 1a6af7e5117..77da9452e2a 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -6590,9 +6590,9 @@ checksum = "a3f0bf26fd526d2a95683cd0f87bf103b8539e2ca1ef48ce002d67aad59aa0b4" [[package]] name = "serde" -version = "1.0.216" +version = "1.0.217" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "0b9781016e935a97e8beecf0c933758c97a5520d32930e460142b4cd80c6338e" +checksum = "02fc4265df13d6fa1d00ecff087228cc0a2b5f3c0e87e258d8b94a156e984c70" dependencies = [ "serde_derive", ] @@ -6609,9 +6609,9 @@ dependencies = [ [[package]] name = "serde_derive" -version = "1.0.216" +version = "1.0.217" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "46f859dbbf73865c6627ed570e78961cd3ac92407a2d117204c49232485da55e" +checksum = "5a9bf7cf98d04a2b28aead066b7496853d4779c9cc183c440dbac457641e19a0" dependencies = [ "proc-macro2", "quote", diff --git a/Cargo.toml b/Cargo.toml index 876dfb5d991..cc470f6558e 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -131,7 +131,7 @@ regex = { version = "=1.11.1", default-features = false, features = reqwest = { version = "=0.12.11", default-features = false, features = ["rustls-tls"] } semver = { version = "=1.0.24", default-features = false } sentry-types = { version = "=0.35.0", default-features = false } -serde = { version = "=1.0.216", default-features = false } +serde = { version = "=1.0.217", default-features = false } serde_json = { version = "=1.0.134" } text-size = { version = "=1.1.1", default-features = false } time = { version = "=0.3.37", default-features = false } From bd96027cd21b4945da48bfb849f6ab42d4ec7106 Mon Sep 17 00:00:00 2001 From: "hash-worker[bot]" <180894564+hash-worker[bot]@users.noreply.github.com> Date: Sat, 28 Dec 2024 08:27:19 +0000 Subject: [PATCH 112/159] Update Rust crate `aws-config` to v1.5.12 (#6019) Co-authored-by: hash-worker[bot] <180894564+hash-worker[bot]@users.noreply.github.com> --- Cargo.lock | 32 ++++++++++++++++---------------- Cargo.toml | 2 +- 2 files changed, 17 insertions(+), 17 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index 77da9452e2a..ddb03124aa8 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -422,9 +422,9 @@ dependencies = [ [[package]] name = "aws-config" -version = "1.5.11" +version = "1.5.12" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "a5d1c2c88936a73c699225d0bc00684a534166b0cebc2659c3cdf08de8edc64c" +checksum = "649316840239f4e58df0b7f620c428f5fababbbca2d504488c641534050bd141" dependencies = [ "aws-credential-types", "aws-runtime", @@ -464,9 +464,9 @@ dependencies = [ [[package]] name = "aws-runtime" -version = "1.5.1" +version = "1.5.2" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "300a12520b4e6d08b73f77680f12c16e8ae43250d55100e0b2be46d78da16a48" +checksum = "44f6f1124d6e19ab6daf7f2e615644305dc6cb2d706892a8a8c0b98db35de020" dependencies = [ "aws-credential-types", "aws-sigv4", @@ -524,9 +524,9 @@ dependencies = [ [[package]] name = "aws-sdk-sso" -version = "1.51.0" +version = "1.52.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "74995133da38f109a0eb8e8c886f9e80c713b6e9f2e6e5a6a1ba4450ce2ffc46" +checksum = "cb25f7129c74d36afe33405af4517524df8f74b635af8c2c8e91c1552b8397b2" dependencies = [ "aws-credential-types", "aws-runtime", @@ -546,9 +546,9 @@ dependencies = [ [[package]] name = "aws-sdk-ssooidc" -version = "1.52.0" +version = "1.53.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "e7062a779685cbf3b2401eb36151e2c6589fd5f3569b8a6bc2d199e5aaa1d059" +checksum = "d03a3d5ef14851625eafd89660a751776f938bf32f309308b20dcca41c44b568" dependencies = [ "aws-credential-types", "aws-runtime", @@ -568,9 +568,9 @@ dependencies = [ [[package]] name = "aws-sdk-sts" -version = "1.52.0" +version = "1.53.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "299dae7b1dc0ee50434453fa5a229dc4b22bd3ee50409ff16becf1f7346e0193" +checksum = "cf3a9f073ae3a53b54421503063dfb87ff1ea83b876f567d92e8b8d9942ba91b" dependencies = [ "aws-credential-types", "aws-runtime", @@ -615,9 +615,9 @@ dependencies = [ [[package]] name = "aws-smithy-async" -version = "1.2.2" +version = "1.2.3" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "8aa8ff1492fd9fb99ae28e8467af0dbbb7c31512b16fabf1a0f10d7bb6ef78bb" +checksum = "427cb637d15d63d6f9aae26358e1c9a9c09d5aa490d64b09354c8217cfef0f28" dependencies = [ "futures-util", "pin-project-lite", @@ -698,9 +698,9 @@ dependencies = [ [[package]] name = "aws-smithy-runtime" -version = "1.7.5" +version = "1.7.6" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "431a10d0e07e09091284ef04453dae4069283aa108d209974d67e77ae1caa658" +checksum = "a05dd41a70fc74051758ee75b5c4db2c0ca070ed9229c3df50e9475cda1cb985" dependencies = [ "aws-smithy-async", "aws-smithy-http", @@ -742,9 +742,9 @@ dependencies = [ [[package]] name = "aws-smithy-types" -version = "1.2.10" +version = "1.2.11" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "8ecbf4d5dfb169812e2b240a4350f15ad3c6b03a54074e5712818801615f2dc5" +checksum = "38ddc9bd6c28aeb303477170ddd183760a956a03e083b3902a990238a7e3792d" dependencies = [ "base64-simd", "bytes", diff --git a/Cargo.toml b/Cargo.toml index cc470f6558e..0ceca412b47 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -155,7 +155,7 @@ anstyle-yansi = { version = "=2.0.2", default-features = false } approx = { version = "=0.5.1", default-features = false } async-scoped = { version = "=0.9.0", default-features = false } async-trait = { version = "=0.1.83", default-features = false } -aws-config = { version = "=1.5.11" } +aws-config = { version = "=1.5.12" } aws-sdk-s3 = { version = "=1.66.0", default-features = false } bitvec = { version = "=1.0.1", default-features = false } bytes-utils = { version = "=0.1.4", default-features = false } From 103dafdda33cc19ac59d3a7323d0c1240b6e117e Mon Sep 17 00:00:00 2001 From: "hash-worker[bot]" <180894564+hash-worker[bot]@users.noreply.github.com> Date: Sat, 28 Dec 2024 11:08:23 +0000 Subject: [PATCH 113/159] Update Rust crate `aws-sdk-s3` to v1.67.0 (#6020) Co-authored-by: hash-worker[bot] <180894564+hash-worker[bot]@users.noreply.github.com> --- Cargo.lock | 4 ++-- Cargo.toml | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index ddb03124aa8..0a7e394629f 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -490,9 +490,9 @@ dependencies = [ [[package]] name = "aws-sdk-s3" -version = "1.66.0" +version = "1.67.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "154488d16ab0d627d15ab2832b57e68a16684c8c902f14cb8a75ec933fc94852" +checksum = "bbc644164269a1e38ce7f2f7373629d3fb3d310c0e3feb5573a29744288b24d3" dependencies = [ "aws-credential-types", "aws-runtime", diff --git a/Cargo.toml b/Cargo.toml index 0ceca412b47..7f7d1c4708d 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -156,7 +156,7 @@ approx = { version = "=0.5.1", default-features = false } async-scoped = { version = "=0.9.0", default-features = false } async-trait = { version = "=0.1.83", default-features = false } aws-config = { version = "=1.5.12" } -aws-sdk-s3 = { version = "=1.66.0", default-features = false } +aws-sdk-s3 = { version = "=1.67.0", default-features = false } bitvec = { version = "=1.0.1", default-features = false } bytes-utils = { version = "=0.1.4", default-features = false } clap = { version = "=4.5.23", features = ["color", "error-context", "help", "std", "suggestions", "usage"] } From 2c6c0dfd5346e578d76df6a3c99e0315c4a4db34 Mon Sep 17 00:00:00 2001 From: "hash-worker[bot]" <180894564+hash-worker[bot]@users.noreply.github.com> Date: Sat, 28 Dec 2024 20:58:57 +0000 Subject: [PATCH 114/159] Update Rust crate `syn` to v2.0.93 (#6021) Co-authored-by: hash-worker[bot] <180894564+hash-worker[bot]@users.noreply.github.com> --- Cargo.lock | 124 ++++++++++++++++++++++++++--------------------------- Cargo.toml | 2 +- 2 files changed, 63 insertions(+), 63 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index 0a7e394629f..089a6bfcf24 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -213,7 +213,7 @@ checksum = "0ae92a5119aa49cdbcf6b9f893fe4e1d98b04ccbf82ee0584ad948a44a734dea" dependencies = [ "proc-macro2", "quote", - "syn 2.0.92", + "syn 2.0.93", ] [[package]] @@ -262,7 +262,7 @@ checksum = "965c2d33e53cb6b267e148a4cb0760bc01f4904c1cd4bb4002a085bb016d1490" dependencies = [ "proc-macro2", "quote", - "syn 2.0.92", + "syn 2.0.93", "synstructure", ] @@ -274,7 +274,7 @@ checksum = "7b18050c2cd6fe86c3a76584ef5e0baf286d038cda203eb6223df2cc413565f7" dependencies = [ "proc-macro2", "quote", - "syn 2.0.92", + "syn 2.0.93", ] [[package]] @@ -347,7 +347,7 @@ checksum = "c7c24de15d275a1ecfd47a380fb4d5ec9bfe0933f309ed5e705b775596a3574d" dependencies = [ "proc-macro2", "quote", - "syn 2.0.92", + "syn 2.0.93", ] [[package]] @@ -358,7 +358,7 @@ checksum = "721cae7de5c34fbb2acd27e21e6d2cf7b886dce0c27388d46c4e6c47ea4318dd" dependencies = [ "proc-macro2", "quote", - "syn 2.0.92", + "syn 2.0.93", ] [[package]] @@ -1255,7 +1255,7 @@ dependencies = [ "heck 0.5.0", "proc-macro2", "quote", - "syn 2.0.92", + "syn 2.0.93", ] [[package]] @@ -1516,7 +1516,7 @@ checksum = "f46882e17999c6cc590af592290432be3bce0428cb0d5f8b6715e4dc7b383eb3" dependencies = [ "proc-macro2", "quote", - "syn 2.0.92", + "syn 2.0.93", ] [[package]] @@ -1540,7 +1540,7 @@ dependencies = [ "proc-macro2", "quote", "strsim", - "syn 2.0.92", + "syn 2.0.93", ] [[package]] @@ -1551,7 +1551,7 @@ checksum = "d336a2a514f6ccccaa3e09b02d41d35330c07ddf03a62165fcec10bb561c7806" dependencies = [ "darling_core", "quote", - "syn 2.0.92", + "syn 2.0.93", ] [[package]] @@ -1710,7 +1710,7 @@ checksum = "62d671cc41a825ebabc75757b62d3d168c577f9149b2d49ece1dad1f72119d25" dependencies = [ "proc-macro2", "quote", - "syn 2.0.92", + "syn 2.0.93", ] [[package]] @@ -1731,7 +1731,7 @@ dependencies = [ "darling", "proc-macro2", "quote", - "syn 2.0.92", + "syn 2.0.93", ] [[package]] @@ -1741,7 +1741,7 @@ source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "ab63b0e2bf4d5928aff72e83a7dace85d7bba5fe12dcc3c5a572d78caffd3f3c" dependencies = [ "derive_builder_core", - "syn 2.0.92", + "syn 2.0.93", ] [[package]] @@ -1761,7 +1761,7 @@ checksum = "cb7330aeadfbe296029522e6c40f315320aba36fc43a5b3632f3795348f3bd22" dependencies = [ "proc-macro2", "quote", - "syn 2.0.92", + "syn 2.0.93", "unicode-xid", ] @@ -1800,7 +1800,7 @@ checksum = "97369cbbc041bc366949bc74d34658d6cda5621039731c6310521892a3a20ae0" dependencies = [ "proc-macro2", "quote", - "syn 2.0.92", + "syn 2.0.93", ] [[package]] @@ -1861,7 +1861,7 @@ dependencies = [ "enum-ordinalize", "proc-macro2", "quote", - "syn 2.0.92", + "syn 2.0.93", ] [[package]] @@ -1894,7 +1894,7 @@ dependencies = [ "heck 0.5.0", "proc-macro2", "quote", - "syn 2.0.92", + "syn 2.0.93", ] [[package]] @@ -1914,7 +1914,7 @@ checksum = "0d28318a75d4aead5c4db25382e8ef717932d0346600cacae6357eb5941bc5ff" dependencies = [ "proc-macro2", "quote", - "syn 2.0.92", + "syn 2.0.93", ] [[package]] @@ -1935,7 +1935,7 @@ checksum = "de0d48a183585823424a4ce1aa132d174a6a81bd540895822eb4c8373a8e49e8" dependencies = [ "proc-macro2", "quote", - "syn 2.0.92", + "syn 2.0.93", ] [[package]] @@ -2188,7 +2188,7 @@ checksum = "e99b8b3c28ae0e84b604c75f721c21dc77afb3706076af5e8216d15fd1deaae3" dependencies = [ "frunk_proc_macro_helpers", "quote", - "syn 2.0.92", + "syn 2.0.93", ] [[package]] @@ -2200,7 +2200,7 @@ dependencies = [ "frunk_core", "proc-macro2", "quote", - "syn 2.0.92", + "syn 2.0.93", ] [[package]] @@ -2212,7 +2212,7 @@ dependencies = [ "frunk_core", "frunk_proc_macro_helpers", "quote", - "syn 2.0.92", + "syn 2.0.93", ] [[package]] @@ -2298,7 +2298,7 @@ checksum = "162ee34ebcb7c64a8abebc059ce0fee27c2262618d7b60ed8faf72fef13c3650" dependencies = [ "proc-macro2", "quote", - "syn 2.0.92", + "syn 2.0.93", ] [[package]] @@ -2861,7 +2861,7 @@ dependencies = [ "quote", "regex", "sha2", - "syn 2.0.92", + "syn 2.0.93", "walkdir", ] @@ -3771,7 +3771,7 @@ checksum = "c34819042dc3d3971c46c2190835914dfbe0c3c13f61449b2997f4e9722dfa60" dependencies = [ "proc-macro2", "quote", - "syn 2.0.92", + "syn 2.0.93", ] [[package]] @@ -4359,7 +4359,7 @@ dependencies = [ "heck 0.5.0", "proc-macro2", "quote", - "syn 2.0.92", + "syn 2.0.93", ] [[package]] @@ -4479,7 +4479,7 @@ dependencies = [ "quote", "regex-syntax 0.8.5", "rustc_version", - "syn 2.0.92", + "syn 2.0.93", ] [[package]] @@ -4865,7 +4865,7 @@ checksum = "ed3955f1a9c7c0c15e092f9c887db08b1fc683305fdf6eb6684f22555355e202" dependencies = [ "proc-macro2", "quote", - "syn 2.0.92", + "syn 2.0.93", ] [[package]] @@ -5295,7 +5295,7 @@ checksum = "3c0f5fad0874fc7abcd4d750e76917eaebbecaa2c20bde22e1dbeeba8beb758c" dependencies = [ "proc-macro2", "quote", - "syn 2.0.92", + "syn 2.0.93", ] [[package]] @@ -5420,7 +5420,7 @@ dependencies = [ "heck 0.5.0", "proc-macro2", "quote", - "syn 2.0.92", + "syn 2.0.93", ] [[package]] @@ -5489,7 +5489,7 @@ source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "479cf940fbbb3426c32c5d5176f62ad57549a0bb84773423ba8be9d089f5faba" dependencies = [ "proc-macro2", - "syn 2.0.92", + "syn 2.0.93", ] [[package]] @@ -5562,7 +5562,7 @@ source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "a65f2e60fbf1063868558d69c6beacf412dc755f9fc020f514b7955fc914fe30" dependencies = [ "quote", - "syn 2.0.92", + "syn 2.0.93", ] [[package]] @@ -5585,7 +5585,7 @@ checksum = "440f724eba9f6996b75d63681b0a92b06947f1457076d503a4d2e2c8f56442b8" dependencies = [ "proc-macro2", "quote", - "syn 2.0.92", + "syn 2.0.93", ] [[package]] @@ -5631,7 +5631,7 @@ dependencies = [ "prost", "prost-types", "regex", - "syn 2.0.92", + "syn 2.0.93", "tempfile", ] @@ -5645,7 +5645,7 @@ dependencies = [ "itertools 0.13.0", "proc-macro2", "quote", - "syn 2.0.92", + "syn 2.0.93", ] [[package]] @@ -5966,7 +5966,7 @@ checksum = "bcc303e793d3734489387d205e9b186fac9c6cfacedd98cbb2e8a5943595f3e6" dependencies = [ "proc-macro2", "quote", - "syn 2.0.92", + "syn 2.0.93", ] [[package]] @@ -6022,7 +6022,7 @@ dependencies = [ "quote", "refinery-core", "regex", - "syn 2.0.92", + "syn 2.0.93", ] [[package]] @@ -6615,7 +6615,7 @@ checksum = "5a9bf7cf98d04a2b28aead066b7496853d4779c9cc183c440dbac457641e19a0" dependencies = [ "proc-macro2", "quote", - "syn 2.0.92", + "syn 2.0.93", ] [[package]] @@ -6626,7 +6626,7 @@ checksum = "e578a843d40b4189a4d66bba51d7684f57da5bd7c304c64e14bd63efbef49509" dependencies = [ "proc-macro2", "quote", - "syn 2.0.92", + "syn 2.0.93", ] [[package]] @@ -6708,7 +6708,7 @@ dependencies = [ "darling", "proc-macro2", "quote", - "syn 2.0.92", + "syn 2.0.93", ] [[package]] @@ -6927,7 +6927,7 @@ dependencies = [ "proc-macro2", "quote", "structmeta-derive", - "syn 2.0.92", + "syn 2.0.93", ] [[package]] @@ -6938,7 +6938,7 @@ checksum = "152a0b65a590ff6c3da95cabe2353ee04e6167c896b28e3b14478c2636c922fc" dependencies = [ "proc-macro2", "quote", - "syn 2.0.92", + "syn 2.0.93", ] [[package]] @@ -6975,9 +6975,9 @@ dependencies = [ [[package]] name = "syn" -version = "2.0.92" +version = "2.0.93" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "70ae51629bf965c5c098cc9e87908a3df5301051a9e087d6f9bef5c9771ed126" +checksum = "9c786062daee0d6db1132800e623df74274a0a87322d8e183338e01b3d98d058" dependencies = [ "proc-macro2", "quote", @@ -7001,7 +7001,7 @@ checksum = "c8af7666ab7b6390ab78131fb5b0fce11d6b7a6951602017c35fa82800708971" dependencies = [ "proc-macro2", "quote", - "syn 2.0.92", + "syn 2.0.93", ] [[package]] @@ -7102,7 +7102,7 @@ checksum = "e0e3d9676af494694e11a3e367a4bfa7f6d1d5566bd0fe9aceb4aa9281122ab8" dependencies = [ "proc-macro2", "quote", - "syn 2.0.92", + "syn 2.0.93", ] [[package]] @@ -7243,7 +7243,7 @@ dependencies = [ "prettyplease", "proc-macro2", "quote", - "syn 2.0.92", + "syn 2.0.93", ] [[package]] @@ -7277,7 +7277,7 @@ checksum = "5999e24eaa32083191ba4e425deb75cdf25efefabe5aaccb7446dd0d4122a3f5" dependencies = [ "proc-macro2", "quote", - "syn 2.0.92", + "syn 2.0.93", ] [[package]] @@ -7289,7 +7289,7 @@ dependencies = [ "proc-macro2", "quote", "structmeta", - "syn 2.0.92", + "syn 2.0.93", ] [[package]] @@ -7327,7 +7327,7 @@ checksum = "4fee6c4efc90059e10f81e6d42c60a18f76588c3d74cb83a0b242a2b6c7504c1" dependencies = [ "proc-macro2", "quote", - "syn 2.0.92", + "syn 2.0.93", ] [[package]] @@ -7338,7 +7338,7 @@ checksum = "7b50fa271071aae2e6ee85f842e2e28ba8cd2c5fb67f11fcb1fd70b276f9e7d4" dependencies = [ "proc-macro2", "quote", - "syn 2.0.92", + "syn 2.0.93", ] [[package]] @@ -7443,7 +7443,7 @@ checksum = "693d596312e88961bc67d7f1f97af8a70227d9f90c31bba5806eec004978d752" dependencies = [ "proc-macro2", "quote", - "syn 2.0.92", + "syn 2.0.93", ] [[package]] @@ -7629,7 +7629,7 @@ dependencies = [ "prost-build", "prost-types", "quote", - "syn 2.0.92", + "syn 2.0.93", ] [[package]] @@ -7742,7 +7742,7 @@ checksum = "395ae124c09f9e6918a2310af6038fba074bcf474ac352496d5910dd59a2226d" dependencies = [ "proc-macro2", "quote", - "syn 2.0.92", + "syn 2.0.93", ] [[package]] @@ -7858,7 +7858,7 @@ checksum = "70977707304198400eb4835a78f6a9f928bf41bba420deb8fdb175cd965d77a7" dependencies = [ "proc-macro2", "quote", - "syn 2.0.92", + "syn 2.0.93", ] [[package]] @@ -7904,7 +7904,7 @@ dependencies = [ "proc-macro2", "quote", "serde_derive_internals", - "syn 2.0.92", + "syn 2.0.93", ] [[package]] @@ -7969,7 +7969,7 @@ checksum = "70b20a22c42c8f1cd23ce5e34f165d4d37038f5b663ad20fb6adbdf029172483" dependencies = [ "proc-macro2", "quote", - "syn 2.0.92", + "syn 2.0.93", ] [[package]] @@ -8147,7 +8147,7 @@ dependencies = [ "proc-macro-error", "proc-macro2", "quote", - "syn 2.0.92", + "syn 2.0.93", "url", "uuid", ] @@ -8284,7 +8284,7 @@ dependencies = [ "log", "proc-macro2", "quote", - "syn 2.0.92", + "syn 2.0.93", "wasm-bindgen-shared", ] @@ -8319,7 +8319,7 @@ checksum = "30d7a95b763d3c45903ed6c81f156801839e5ee968bb07e534c44df0fcd330c2" dependencies = [ "proc-macro2", "quote", - "syn 2.0.92", + "syn 2.0.93", "wasm-bindgen-backend", "wasm-bindgen-shared", ] @@ -8352,7 +8352,7 @@ checksum = "54171416ce73aa0b9c377b51cc3cb542becee1cd678204812e8392e5b0e4a031" dependencies = [ "proc-macro2", "quote", - "syn 2.0.92", + "syn 2.0.93", ] [[package]] @@ -8818,7 +8818,7 @@ checksum = "fa4f8080344d4671fb4e831a13ad1e68092748387dfc4f55e356242fae12ce3e" dependencies = [ "proc-macro2", "quote", - "syn 2.0.92", + "syn 2.0.93", ] [[package]] @@ -8838,7 +8838,7 @@ checksum = "ce36e65b0d2999d2aafac989fb249189a141aee1f53c612c1f37d72631959f69" dependencies = [ "proc-macro2", "quote", - "syn 2.0.92", + "syn 2.0.93", ] [[package]] diff --git a/Cargo.toml b/Cargo.toml index 7f7d1c4708d..5f459adcb85 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -212,7 +212,7 @@ sha2 = { version = "=0.10.8", default-features = false } similar-asserts = { version = "=1.6.0", default-features = false } supports-color = { version = "=3.0.2", default-features = false } supports-unicode = { version = "=3.0.0", default-features = false } -syn = { version = "=2.0.92", default-features = false } +syn = { version = "=2.0.93", default-features = false } tachyonix = { version = "=0.3.1", default-features = false } tarpc = { version = "=0.35.0", default-features = false } temporal-client = { git = "https://github.com/temporalio/sdk-core", rev = "4a2368d" } From dadbc0e3bedd1ed7309cbff9dce2756f238bbe68 Mon Sep 17 00:00:00 2001 From: "hash-worker[bot]" <180894564+hash-worker[bot]@users.noreply.github.com> Date: Sat, 28 Dec 2024 22:54:36 +0000 Subject: [PATCH 115/159] Update GitHub Action `Swatinem/rust-cache` to v2.7.6 (#6022) Co-authored-by: hash-worker[bot] <180894564+hash-worker[bot]@users.noreply.github.com> --- .github/workflows/bench.yml | 4 ++-- .github/workflows/lint.yml | 2 +- .github/workflows/test.yml | 4 ++-- 3 files changed, 5 insertions(+), 5 deletions(-) diff --git a/.github/workflows/bench.yml b/.github/workflows/bench.yml index 11e1321e29d..e3fb0c43ff0 100644 --- a/.github/workflows/bench.yml +++ b/.github/workflows/bench.yml @@ -136,7 +136,7 @@ jobs: - name: Cache Rust dependencies if: steps.benches.outputs.has-rust == 'true' - uses: Swatinem/rust-cache@82a92a6e8fbeee089604da2575dc567ae9ddeaab # v2.7.5 + uses: Swatinem/rust-cache@720f7e45ccee46c12a7b1d7bed2ab733be9be5a1 # v2.7.6 with: workspaces: ${{ matrix.directory }} save-if: ${{ !startsWith(github.ref, 'refs/heads/gh-readonly-queue') }} @@ -288,7 +288,7 @@ jobs: - name: Cache Rust dependencies if: steps.benches.outputs.has-rust == 'true' - uses: Swatinem/rust-cache@82a92a6e8fbeee089604da2575dc567ae9ddeaab # v2.7.5 + uses: Swatinem/rust-cache@720f7e45ccee46c12a7b1d7bed2ab733be9be5a1 # v2.7.6 with: workspaces: ${{ matrix.directory }} save-if: ${{ !startsWith(github.ref, 'refs/heads/gh-readonly-queue') }} diff --git a/.github/workflows/lint.yml b/.github/workflows/lint.yml index 953de759354..35d36c263c9 100644 --- a/.github/workflows/lint.yml +++ b/.github/workflows/lint.yml @@ -120,7 +120,7 @@ jobs: - name: Cache Rust dependencies if: always() && steps.lints.outputs.has-rust == 'true' - uses: Swatinem/rust-cache@82a92a6e8fbeee089604da2575dc567ae9ddeaab # v2.7.5 + uses: Swatinem/rust-cache@720f7e45ccee46c12a7b1d7bed2ab733be9be5a1 # v2.7.6 with: workspaces: ${{ matrix.directory }} save-if: ${{ !startsWith(github.ref, 'refs/heads/gh-readonly-queue') }} diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index a5320dea817..22d45f29b78 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -172,7 +172,7 @@ jobs: - name: Cache Rust dependencies if: always() && steps.tests.outputs.has-rust == 'true' - uses: Swatinem/rust-cache@82a92a6e8fbeee089604da2575dc567ae9ddeaab # v2.7.5 + uses: Swatinem/rust-cache@720f7e45ccee46c12a7b1d7bed2ab733be9be5a1 # v2.7.6 with: workspaces: ${{ matrix.directory }} save-if: ${{ !startsWith(github.ref, 'refs/heads/gh-readonly-queue') }} @@ -314,7 +314,7 @@ jobs: - name: Cache Rust dependencies if: steps.tests.outputs.has-rust == 'true' - uses: Swatinem/rust-cache@82a92a6e8fbeee089604da2575dc567ae9ddeaab # v2.7.5 + uses: Swatinem/rust-cache@720f7e45ccee46c12a7b1d7bed2ab733be9be5a1 # v2.7.6 with: workspaces: ${{ matrix.directory }} save-if: ${{ !startsWith(github.ref, 'refs/heads/gh-readonly-queue') }} From ac058f315c96b5d3073b9c390d24b383c313b92c Mon Sep 17 00:00:00 2001 From: "hash-worker[bot]" <180894564+hash-worker[bot]@users.noreply.github.com> Date: Sat, 28 Dec 2024 22:59:39 +0000 Subject: [PATCH 116/159] Update npm package `echarts` to v5.6.0 (#6023) Co-authored-by: hash-worker[bot] <180894564+hash-worker[bot]@users.noreply.github.com> --- blocks/chart/package.json | 2 +- libs/@hashintel/design-system/package.json | 2 +- yarn.lock | 22 +++++++++++----------- 3 files changed, 13 insertions(+), 13 deletions(-) diff --git a/blocks/chart/package.json b/blocks/chart/package.json index daffdc30763..0ba95dc66d2 100644 --- a/blocks/chart/package.json +++ b/blocks/chart/package.json @@ -32,7 +32,7 @@ "@hashintel/design-system": "0.0.8", "@local/hash-isomorphic-utils": "0.0.0-private", "@mui/material": "5.16.13", - "echarts": "5.5.1", + "echarts": "5.6.0", "lodash.debounce": "4.0.8", "react-hook-form": "7.54.1" }, diff --git a/libs/@hashintel/design-system/package.json b/libs/@hashintel/design-system/package.json index cf4218d327e..35794f0a481 100644 --- a/libs/@hashintel/design-system/package.json +++ b/libs/@hashintel/design-system/package.json @@ -47,7 +47,7 @@ "@fortawesome/free-solid-svg-icons": "6.7.2", "@local/hash-isomorphic-utils": "0.0.0-private", "clsx": "1.2.1", - "echarts": "5.5.1", + "echarts": "5.6.0", "react-loading-skeleton": "3.5.0" }, "devDependencies": { diff --git a/yarn.lock b/yarn.lock index bf03cba65a3..86a3dd4d999 100644 --- a/yarn.lock +++ b/yarn.lock @@ -4791,7 +4791,7 @@ __metadata: "@types/react-dom": "npm:19.0.2" "@types/react-is": "npm:19.0.0" block-scripts: "npm:0.3.4" - echarts: "npm:5.5.1" + echarts: "npm:5.6.0" eslint: "npm:9.17.0" lodash.debounce: "npm:4.0.8" mock-block-dock: "npm:0.1.9" @@ -7939,7 +7939,7 @@ __metadata: "@types/react": "npm:19.0.1" "@types/react-dom": "npm:19.0.2" clsx: "npm:1.2.1" - echarts: "npm:5.5.1" + echarts: "npm:5.6.0" eslint: "npm:9.17.0" eslint-plugin-storybook: "npm:0.11.1" react: "npm:19.0.0" @@ -25501,13 +25501,13 @@ __metadata: languageName: node linkType: hard -"echarts@npm:5.5.1, echarts@npm:^5.3.3": - version: 5.5.1 - resolution: "echarts@npm:5.5.1" +"echarts@npm:5.6.0, echarts@npm:^5.3.3": + version: 5.6.0 + resolution: "echarts@npm:5.6.0" dependencies: tslib: "npm:2.3.0" - zrender: "npm:5.6.0" - checksum: 10c0/2f7e3037f17fda99d977092767943f4d9b0c8f886f86701ec88591707713b5e5fd683e56086b6ba5245b322f088184bdb06eac488234c20a1869b08cb6b4e523 + zrender: "npm:5.6.1" + checksum: 10c0/6d6a2ee88534d1ff0433e935c542237b9896de1c94959f47ebc7e0e9da26f59bf11c91ed6fc135b62ad2786c779ee12bc536fa481e60532dad5b6a2f5167e9ea languageName: node linkType: hard @@ -49010,12 +49010,12 @@ __metadata: languageName: node linkType: hard -"zrender@npm:5.6.0": - version: 5.6.0 - resolution: "zrender@npm:5.6.0" +"zrender@npm:5.6.1": + version: 5.6.1 + resolution: "zrender@npm:5.6.1" dependencies: tslib: "npm:2.3.0" - checksum: 10c0/f7c5a1739dfec60b9bead0d0657c47868391b1009cc82a603f9dbf247fa625df28dcdb3e7b2e18404657e2c987f95e0e1bb5613519c2d823854f3dda44e2ee96 + checksum: 10c0/dc1cc570054640cbd8fbb7b92e6252f225319522bfe3e8dc8bf02cc02d414e00a4c8d0a6f89bfc9d96e5e9511fdca94dd3d06bf53690df2b2f12b0fc560ac307 languageName: node linkType: hard From e7fd946f67123064738f06adf65d2c1191453428 Mon Sep 17 00:00:00 2001 From: "hash-worker[bot]" <180894564+hash-worker[bot]@users.noreply.github.com> Date: Sun, 29 Dec 2024 14:54:36 +0000 Subject: [PATCH 117/159] Update Rust crate `jsonschema` to v0.28.0 (#6024) Co-authored-by: hash-worker[bot] <180894564+hash-worker[bot]@users.noreply.github.com> --- Cargo.lock | 8 ++++---- Cargo.toml | 2 +- 2 files changed, 5 insertions(+), 5 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index 089a6bfcf24..7c3b45e19e2 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -3909,9 +3909,9 @@ dependencies = [ [[package]] name = "jsonschema" -version = "0.27.1" +version = "0.28.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "c9deec35f105267485e0b85b4da7861d444ad498bd476418ec10aeaec3c2ead1" +checksum = "74d8eb539cdb4222da29bb658cc9881aa2477b33fb1a74c5c31450395fc1a4b2" dependencies = [ "ahash", "base64 0.22.1", @@ -5971,9 +5971,9 @@ dependencies = [ [[package]] name = "referencing" -version = "0.27.1" +version = "0.28.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "040034d1c0deb1c413e44dafaea2f8bd7d273f1b56de531ab8cee5a93acb1741" +checksum = "093a875008827c0ae15c746189966e162faa05bf347719d06302c548ac63630f" dependencies = [ "ahash", "fluent-uri", diff --git a/Cargo.toml b/Cargo.toml index 5f459adcb85..961e4a6ebc6 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -175,7 +175,7 @@ hyper = { version = "=1.5.2", default-features = false } include_dir = { version = "=0.7.4", default-features = false } insta = { version = "=1.41.1", default-features = false } itertools = { version = "0.13.0", default-features = false } -jsonschema = { version = "=0.27.1", default-features = false } +jsonschema = { version = "=0.28.0", default-features = false } justjson = { version = "=0.3.0", default-features = false } lexical = { version = "=7.0.4", default-features = false } libp2p = { version = "=0.54.1", default-features = false } From dd3c64341befadeb16cd22ad5d301176dcd32cdc Mon Sep 17 00:00:00 2001 From: "hash-worker[bot]" <180894564+hash-worker[bot]@users.noreply.github.com> Date: Mon, 30 Dec 2024 07:55:00 +0000 Subject: [PATCH 118/159] Update npm package `@types/mailchimp__mailchimp_marketing` to v3.0.21 (#6025) Co-authored-by: hash-worker[bot] <180894564+hash-worker[bot]@users.noreply.github.com> --- apps/hash-api/package.json | 2 +- yarn.lock | 10 +++++----- 2 files changed, 6 insertions(+), 6 deletions(-) diff --git a/apps/hash-api/package.json b/apps/hash-api/package.json index be26cccf2a2..a7f29a6db64 100644 --- a/apps/hash-api/package.json +++ b/apps/hash-api/package.json @@ -119,7 +119,7 @@ "@types/html-to-text": "8.1.1", "@types/jsonpath": "0.2.4", "@types/lodash": "4.17.13", - "@types/mailchimp__mailchimp_marketing": "3.0.20", + "@types/mailchimp__mailchimp_marketing": "3.0.21", "@types/md5": "2.3.5", "@types/mime-types": "2.1.4", "@types/nodemailer": "6.4.17", diff --git a/yarn.lock b/yarn.lock index 86a3dd4d999..823726aee12 100644 --- a/yarn.lock +++ b/yarn.lock @@ -394,7 +394,7 @@ __metadata: "@types/html-to-text": "npm:8.1.1" "@types/jsonpath": "npm:0.2.4" "@types/lodash": "npm:4.17.13" - "@types/mailchimp__mailchimp_marketing": "npm:3.0.20" + "@types/mailchimp__mailchimp_marketing": "npm:3.0.21" "@types/md5": "npm:2.3.5" "@types/mime-types": "npm:2.1.4" "@types/nodemailer": "npm:6.4.17" @@ -18063,10 +18063,10 @@ __metadata: languageName: node linkType: hard -"@types/mailchimp__mailchimp_marketing@npm:3.0.20": - version: 3.0.20 - resolution: "@types/mailchimp__mailchimp_marketing@npm:3.0.20" - checksum: 10c0/d0694a85239a0ce82698004fd0ee9bff598fdcfddb330800fc223d163713b2448900c800bf1f28dd6bdcf342d97ad15d92f7eb299bc795976c781a95381e627a +"@types/mailchimp__mailchimp_marketing@npm:3.0.21": + version: 3.0.21 + resolution: "@types/mailchimp__mailchimp_marketing@npm:3.0.21" + checksum: 10c0/2e03d820d54b4ef557edce487d65ca3f3c324b58a73cb3aa3b500886943e198d99e2f1924c07f7c30c0bbdcbbffdc746b566f786d19942ae3a9cfd4c09320ce1 languageName: node linkType: hard From 8fc4c5a2f89140257c88ab41f2250c9a33614232 Mon Sep 17 00:00:00 2001 From: "hash-worker[bot]" <180894564+hash-worker[bot]@users.noreply.github.com> Date: Mon, 30 Dec 2024 08:03:15 +0000 Subject: [PATCH 119/159] Update npm package `katex` to v0.16.19 (#6026) Co-authored-by: hash-worker[bot] <180894564+hash-worker[bot]@users.noreply.github.com> --- apps/hashdotdev/package.json | 2 +- yarn.lock | 10 +++++----- 2 files changed, 6 insertions(+), 6 deletions(-) diff --git a/apps/hashdotdev/package.json b/apps/hashdotdev/package.json index 0540e4aa5ce..ee6f8861adc 100644 --- a/apps/hashdotdev/package.json +++ b/apps/hashdotdev/package.json @@ -40,7 +40,7 @@ "gray-matter": "4.0.3", "html-to-text": "9.0.5", "image-size": "1.2.0", - "katex": "0.16.18", + "katex": "0.16.19", "md5": "2.3.0", "mock-block-dock": "0.0.21", "next": "15.1.3", diff --git a/yarn.lock b/yarn.lock index 823726aee12..ff5b5157e9b 100644 --- a/yarn.lock +++ b/yarn.lock @@ -758,7 +758,7 @@ __metadata: gray-matter: "npm:4.0.3" html-to-text: "npm:9.0.5" image-size: "npm:1.2.0" - katex: "npm:0.16.18" + katex: "npm:0.16.19" md5: "npm:2.3.0" mock-block-dock: "npm:0.0.21" next: "npm:15.1.3" @@ -33099,14 +33099,14 @@ __metadata: languageName: node linkType: hard -"katex@npm:0.16.18, katex@npm:^0.16.0": - version: 0.16.18 - resolution: "katex@npm:0.16.18" +"katex@npm:0.16.19, katex@npm:^0.16.0": + version: 0.16.19 + resolution: "katex@npm:0.16.19" dependencies: commander: "npm:^8.3.0" bin: katex: cli.js - checksum: 10c0/f80844710ae28d435395df522cf2439ce1be240cb5e7196e569e16459f705c232cd1335ff96bb6a76a3a87962ddebeb7e212e25271f11ad8f80a30dec575ba53 + checksum: 10c0/41d53eded6984b6edf5e53ee92e1c5cf1e7a964d225191b5a5565f6fe5f78e9ac79eb873fc546975adf585cb99fdd744fc9b31afd3070bb0905598d1384c7559 languageName: node linkType: hard From 5b0654542eb6d75b3857b2393ad9193d06c751d3 Mon Sep 17 00:00:00 2001 From: "hash-worker[bot]" <180894564+hash-worker[bot]@users.noreply.github.com> Date: Mon, 30 Dec 2024 08:06:02 +0000 Subject: [PATCH 120/159] Update npm package `agentkeepalive` to v4.6.0 (#6027) Co-authored-by: hash-worker[bot] <180894564+hash-worker[bot]@users.noreply.github.com> --- apps/hash-api/package.json | 2 +- apps/hash-integration-worker/package.json | 2 +- libs/@local/hash-backend-utils/package.json | 2 +- yarn.lock | 14 +++++++------- 4 files changed, 10 insertions(+), 10 deletions(-) diff --git a/apps/hash-api/package.json b/apps/hash-api/package.json index a7f29a6db64..5910332a9a9 100644 --- a/apps/hash-api/package.json +++ b/apps/hash-api/package.json @@ -61,7 +61,7 @@ "@temporalio/client": "1.11.5", "@temporalio/proto": "1.11.5", "@types/ws": "8.5.13", - "agentkeepalive": "4.5.0", + "agentkeepalive": "4.6.0", "apollo-datasource": "3.3.2", "apollo-server-core": "3.12.1", "apollo-server-errors": "3.3.1", diff --git a/apps/hash-integration-worker/package.json b/apps/hash-integration-worker/package.json index dda82fc65d6..b3083d8b401 100644 --- a/apps/hash-integration-worker/package.json +++ b/apps/hash-integration-worker/package.json @@ -33,7 +33,7 @@ "@temporalio/activity": "1.11.5", "@temporalio/worker": "1.11.5", "@temporalio/workflow": "1.11.5", - "agentkeepalive": "4.5.0", + "agentkeepalive": "4.6.0", "axios": "1.7.9", "dotenv-flow": "3.3.0", "tsx": "4.19.2", diff --git a/libs/@local/hash-backend-utils/package.json b/libs/@local/hash-backend-utils/package.json index 7060f72ff10..3e8b0246da5 100644 --- a/libs/@local/hash-backend-utils/package.json +++ b/libs/@local/hash-backend-utils/package.json @@ -43,7 +43,7 @@ "@temporalio/proto": "1.11.5", "@temporalio/worker": "1.11.5", "@temporalio/workflow": "1.11.5", - "agentkeepalive": "4.5.0", + "agentkeepalive": "4.6.0", "apollo-datasource": "3.3.2", "axios": "1.7.9", "dotenv-flow": "3.3.0", diff --git a/yarn.lock b/yarn.lock index ff5b5157e9b..52fa4ba455f 100644 --- a/yarn.lock +++ b/yarn.lock @@ -400,7 +400,7 @@ __metadata: "@types/nodemailer": "npm:6.4.17" "@types/ws": "npm:8.5.13" "@vitest/coverage-istanbul": "npm:2.1.8" - agentkeepalive: "npm:4.5.0" + agentkeepalive: "npm:4.6.0" apollo-datasource: "npm:3.3.2" apollo-server-core: "npm:3.12.1" apollo-server-errors: "npm:3.3.1" @@ -640,7 +640,7 @@ __metadata: "@temporalio/worker": "npm:1.11.5" "@temporalio/workflow": "npm:1.11.5" "@types/dotenv-flow": "npm:3.3.3" - agentkeepalive: "npm:4.5.0" + agentkeepalive: "npm:4.6.0" axios: "npm:1.7.9" dotenv-flow: "npm:3.3.0" eslint: "npm:9.17.0" @@ -9381,7 +9381,7 @@ __metadata: "@types/node": "npm:22.10.2" "@types/wait-on": "npm:5.3.4" "@vitest/coverage-istanbul": "npm:2.1.8" - agentkeepalive: "npm:4.5.0" + agentkeepalive: "npm:4.6.0" apollo-datasource: "npm:3.3.2" axios: "npm:1.7.9" dotenv-flow: "npm:3.3.0" @@ -19835,12 +19835,12 @@ __metadata: languageName: node linkType: hard -"agentkeepalive@npm:4.5.0, agentkeepalive@npm:^4.1.0, agentkeepalive@npm:^4.2.1, agentkeepalive@npm:^4.5.0": - version: 4.5.0 - resolution: "agentkeepalive@npm:4.5.0" +"agentkeepalive@npm:4.6.0, agentkeepalive@npm:^4.1.0, agentkeepalive@npm:^4.2.1, agentkeepalive@npm:^4.5.0": + version: 4.6.0 + resolution: "agentkeepalive@npm:4.6.0" dependencies: humanize-ms: "npm:^1.2.1" - checksum: 10c0/394ea19f9710f230722996e156607f48fdf3a345133b0b1823244b7989426c16019a428b56c82d3eabef616e938812981d9009f4792ecc66bd6a59e991c62612 + checksum: 10c0/235c182432f75046835b05f239708107138a40103deee23b6a08caee5136873709155753b394ec212e49e60e94a378189562cb01347765515cff61b692c69187 languageName: node linkType: hard From f8aab1cd916018d100407dd434db46f7b941ed56 Mon Sep 17 00:00:00 2001 From: "hash-worker[bot]" <180894564+hash-worker[bot]@users.noreply.github.com> Date: Mon, 30 Dec 2024 08:10:52 +0000 Subject: [PATCH 121/159] Update npm package `eslint-config-sheriff` to v25.5.0 (#6028) Co-authored-by: hash-worker[bot] <180894564+hash-worker[bot]@users.noreply.github.com> --- libs/@local/eslint/package.json | 2 +- yarn.lock | 10 +++++----- 2 files changed, 6 insertions(+), 6 deletions(-) diff --git a/libs/@local/eslint/package.json b/libs/@local/eslint/package.json index 6b3b320c66f..d24475954a1 100644 --- a/libs/@local/eslint/package.json +++ b/libs/@local/eslint/package.json @@ -29,7 +29,7 @@ "eslint-config-airbnb": "19.0.4", "eslint-config-flat-gitignore": "0.3.0", "eslint-config-prettier": "9.1.0", - "eslint-config-sheriff": "25.4.0", + "eslint-config-sheriff": "25.5.0", "eslint-import-resolver-node": "0.3.9", "eslint-import-resolver-typescript": "3.7.0", "eslint-plugin-canonical": "5.1.2", diff --git a/yarn.lock b/yarn.lock index 52fa4ba455f..a7f9ec266fb 100644 --- a/yarn.lock +++ b/yarn.lock @@ -9304,7 +9304,7 @@ __metadata: eslint-config-airbnb: "npm:19.0.4" eslint-config-flat-gitignore: "npm:0.3.0" eslint-config-prettier: "npm:9.1.0" - eslint-config-sheriff: "npm:25.4.0" + eslint-config-sheriff: "npm:25.5.0" eslint-import-resolver-node: "npm:0.3.9" eslint-import-resolver-typescript: "npm:3.7.0" eslint-plugin-canonical: "npm:5.1.2" @@ -26419,9 +26419,9 @@ __metadata: languageName: node linkType: hard -"eslint-config-sheriff@npm:25.4.0": - version: 25.4.0 - resolution: "eslint-config-sheriff@npm:25.4.0" +"eslint-config-sheriff@npm:25.5.0": + version: 25.5.0 + resolution: "eslint-config-sheriff@npm:25.5.0" dependencies: "@eslint-react/eslint-plugin": "npm:^1.10.1" "@eslint/compat": "npm:^1.2.4" @@ -26457,7 +26457,7 @@ __metadata: peerDependencies: eslint: ">=9.0.0" typescript: ">=5.0.0" - checksum: 10c0/458ffbf413092cb0a94f2155c456646e8036f08c43a03b93531ab00eced2f6f403455c4382a5650672e50e25eb9eb4ff8b3e703137fce3da2c62140d43739fca + checksum: 10c0/f195ae46500c2f3a44d220cfabfcd95f912598bc80b3548fa955e88b629b6bc1bb8772f91745a0d5e99351b9dc8bf388ab46e25365a7986d2ba594ce248f1461 languageName: node linkType: hard From 55f90641a3c87ad2e12e76eddebf4b7987bc8533 Mon Sep 17 00:00:00 2001 From: "hash-worker[bot]" <180894564+hash-worker[bot]@users.noreply.github.com> Date: Mon, 30 Dec 2024 08:14:03 +0000 Subject: [PATCH 122/159] Update npm package `yarn` to v4.6.0 (#6029) Co-authored-by: hash-worker[bot] <180894564+hash-worker[bot]@users.noreply.github.com> --- package.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package.json b/package.json index 9c07843ad3b..1850de16cfc 100644 --- a/package.json +++ b/package.json @@ -113,7 +113,7 @@ "prettier-plugin-packagejson": "2.5.6", "turbo": "2.3.3" }, - "packageManager": "yarn@4.5.3+sha512.3003a14012e2987072d244c720506549c1aab73ee728208f1b2580a9fd67b92d61ba6b08fe93f6dce68fd771e3af1e59a0afa28dd242dd0940d73b95fedd4e90", + "packageManager": "yarn@4.6.0+sha512.5383cc12567a95f1d668fbe762dfe0075c595b4bfff433be478dbbe24e05251a8e8c3eb992a986667c1d53b6c3a9c85b8398c35a960587fbd9fa3a0915406728", "engines": { "node": ">= v22" } From f7c13753e3788fdc235a497008093218dbc1a96e Mon Sep 17 00:00:00 2001 From: "hash-worker[bot]" <180894564+hash-worker[bot]@users.noreply.github.com> Date: Tue, 31 Dec 2024 13:28:22 +0000 Subject: [PATCH 123/159] Update npm package `react-refresh-typescript` to v2.0.10 (#6000) Co-authored-by: hash-worker[bot] <180894564+hash-worker[bot]@users.noreply.github.com> --- apps/plugin-browser/package.json | 2 +- yarn.lock | 12 ++++++------ 2 files changed, 7 insertions(+), 7 deletions(-) diff --git a/apps/plugin-browser/package.json b/apps/plugin-browser/package.json index 32e7a2244ec..03439671c7e 100755 --- a/apps/plugin-browser/package.json +++ b/apps/plugin-browser/package.json @@ -80,7 +80,7 @@ "html-webpack-plugin": "5.6.3", "process": "0.11.10", "react-refresh": "0.16.0", - "react-refresh-typescript": "2.0.9", + "react-refresh-typescript": "2.0.10", "rimraf": "6.0.1", "sass": "1.83.0", "sass-loader": "13.3.3", diff --git a/yarn.lock b/yarn.lock index a7f9ec266fb..beed562ea5e 100644 --- a/yarn.lock +++ b/yarn.lock @@ -835,7 +835,7 @@ __metadata: react: "npm:19.0.0" react-dom: "npm:19.0.0" react-refresh: "npm:0.16.0" - react-refresh-typescript: "npm:2.0.9" + react-refresh-typescript: "npm:2.0.10" rimraf: "npm:6.0.1" sass: "npm:1.83.0" sass-loader: "npm:13.3.3" @@ -41008,13 +41008,13 @@ __metadata: languageName: node linkType: hard -"react-refresh-typescript@npm:2.0.9": - version: 2.0.9 - resolution: "react-refresh-typescript@npm:2.0.9" +"react-refresh-typescript@npm:2.0.10": + version: 2.0.10 + resolution: "react-refresh-typescript@npm:2.0.10" peerDependencies: - react-refresh: 0.10.x || 0.11.x || 0.12.x || 0.13.x || 0.14.x + react-refresh: 0.10.x || 0.11.x || 0.12.x || 0.13.x || 0.14.x || 0.15.x || 0.16.x || 0.17.x typescript: ^4.8 || ^5.0 - checksum: 10c0/a91878d69f69962ae137da141701827bc77ff4425c37a024c400222393b29284e85d8d2a96eeb70f63568f77e5f7e3750912865ade125a21d0061de5d605ac7e + checksum: 10c0/671fa613da5c87c5e6c3bed34ad265dc87c107913e54398fd42ecbd6135c85a7d72cfe0eafa874ad4f6d63234f77e607486128a096753a4df4d346ecf6f59c09 languageName: node linkType: hard From b818a6ec876ead0d7d3c9e13c61bf8f8794294a3 Mon Sep 17 00:00:00 2001 From: "hash-worker[bot]" <180894564+hash-worker[bot]@users.noreply.github.com> Date: Tue, 31 Dec 2024 13:37:51 +0000 Subject: [PATCH 124/159] Update aws-sdk-js-v3 monorepo to v3.717.0 (#5993) Co-authored-by: hash-worker[bot] <180894564+hash-worker[bot]@users.noreply.github.com> --- apps/hash-api/package.json | 6 +-- libs/@local/hash-backend-utils/package.json | 4 +- yarn.lock | 46 ++++++++++----------- 3 files changed, 28 insertions(+), 28 deletions(-) diff --git a/apps/hash-api/package.json b/apps/hash-api/package.json index 5910332a9a9..2a07b2b426c 100644 --- a/apps/hash-api/package.json +++ b/apps/hash-api/package.json @@ -24,11 +24,11 @@ }, "dependencies": { "@apps/hash-graph": "0.0.0-private", - "@aws-sdk/client-s3": "3.716.0", + "@aws-sdk/client-s3": "3.717.0", "@aws-sdk/client-ses": "3.716.0", "@aws-sdk/credential-provider-node": "3.716.0", - "@aws-sdk/s3-presigned-post": "3.716.0", - "@aws-sdk/s3-request-presigner": "3.716.0", + "@aws-sdk/s3-presigned-post": "3.717.0", + "@aws-sdk/s3-request-presigner": "3.717.0", "@blockprotocol/core": "patch:@blockprotocol/core@npm%3A0.1.3#~/.yarn/patches/@blockprotocol-core-npm-0.1.3-7c4f062e15.patch", "@blockprotocol/type-system": "0.1.2-canary.0", "@graphql-tools/schema": "8.5.1", diff --git a/libs/@local/hash-backend-utils/package.json b/libs/@local/hash-backend-utils/package.json index 3e8b0246da5..01144279dea 100644 --- a/libs/@local/hash-backend-utils/package.json +++ b/libs/@local/hash-backend-utils/package.json @@ -23,8 +23,8 @@ "test:unit": "vitest --run" }, "dependencies": { - "@aws-sdk/client-s3": "3.716.0", - "@aws-sdk/s3-request-presigner": "3.716.0", + "@aws-sdk/client-s3": "3.717.0", + "@aws-sdk/s3-request-presigner": "3.717.0", "@blockprotocol/core": "patch:@blockprotocol/core@npm%3A0.1.3#~/.yarn/patches/@blockprotocol-core-npm-0.1.3-7c4f062e15.patch", "@blockprotocol/graph": "0.4.0-canary.0", "@blockprotocol/type-system": "0.1.2-canary.0", diff --git a/yarn.lock b/yarn.lock index beed562ea5e..fc4a3a8e387 100644 --- a/yarn.lock +++ b/yarn.lock @@ -345,11 +345,11 @@ __metadata: resolution: "@apps/hash-api@workspace:apps/hash-api" dependencies: "@apps/hash-graph": "npm:0.0.0-private" - "@aws-sdk/client-s3": "npm:3.716.0" + "@aws-sdk/client-s3": "npm:3.717.0" "@aws-sdk/client-ses": "npm:3.716.0" "@aws-sdk/credential-provider-node": "npm:3.716.0" - "@aws-sdk/s3-presigned-post": "npm:3.716.0" - "@aws-sdk/s3-request-presigner": "npm:3.716.0" + "@aws-sdk/s3-presigned-post": "npm:3.717.0" + "@aws-sdk/s3-request-presigner": "npm:3.717.0" "@blockprotocol/core": "patch:@blockprotocol/core@npm%3A0.1.3#~/.yarn/patches/@blockprotocol-core-npm-0.1.3-7c4f062e15.patch" "@blockprotocol/graph": "npm:0.4.0-canary.0" "@blockprotocol/type-system": "npm:0.1.2-canary.0" @@ -1268,9 +1268,9 @@ __metadata: languageName: node linkType: hard -"@aws-sdk/client-s3@npm:3.716.0": - version: 3.716.0 - resolution: "@aws-sdk/client-s3@npm:3.716.0" +"@aws-sdk/client-s3@npm:3.717.0": + version: 3.717.0 + resolution: "@aws-sdk/client-s3@npm:3.717.0" dependencies: "@aws-crypto/sha1-browser": "npm:5.2.0" "@aws-crypto/sha256-browser": "npm:5.2.0" @@ -1281,7 +1281,7 @@ __metadata: "@aws-sdk/credential-provider-node": "npm:3.716.0" "@aws-sdk/middleware-bucket-endpoint": "npm:3.714.0" "@aws-sdk/middleware-expect-continue": "npm:3.714.0" - "@aws-sdk/middleware-flexible-checksums": "npm:3.716.0" + "@aws-sdk/middleware-flexible-checksums": "npm:3.717.0" "@aws-sdk/middleware-host-header": "npm:3.714.0" "@aws-sdk/middleware-location-constraint": "npm:3.714.0" "@aws-sdk/middleware-logger": "npm:3.714.0" @@ -1330,7 +1330,7 @@ __metadata: "@smithy/util-utf8": "npm:^3.0.0" "@smithy/util-waiter": "npm:^3.2.0" tslib: "npm:^2.6.2" - checksum: 10c0/94606f8f54c8aca44d0cf44f341199894ae8163b125a0fc7abf5a05d42047779d62cca9cc612ec7c62ff8fd4fa29bd2af0ce23b187bdbae52ad95148276fbf56 + checksum: 10c0/f89525742aa38e0acd9c6395dabad3464dfb83c28d019b66ffca4268676ae93089be221e07f087d6d57856ab9c43ffd700c43f9ec392b995aefec29b24549ae0 languageName: node linkType: hard @@ -2061,9 +2061,9 @@ __metadata: languageName: node linkType: hard -"@aws-sdk/middleware-flexible-checksums@npm:3.716.0": - version: 3.716.0 - resolution: "@aws-sdk/middleware-flexible-checksums@npm:3.716.0" +"@aws-sdk/middleware-flexible-checksums@npm:3.717.0": + version: 3.717.0 + resolution: "@aws-sdk/middleware-flexible-checksums@npm:3.717.0" dependencies: "@aws-crypto/crc32": "npm:5.2.0" "@aws-crypto/crc32c": "npm:5.2.0" @@ -2078,7 +2078,7 @@ __metadata: "@smithy/util-stream": "npm:^3.3.2" "@smithy/util-utf8": "npm:^3.0.0" tslib: "npm:^2.6.2" - checksum: 10c0/846cbe0ff3c4448ccbbf80f49004a8d0ba25da6bfbf4a16cb22f132c57eebc3af67d316081e1215ebea54c688835214d062c2b3e7bff8f55c5ef526f59a6b5bd + checksum: 10c0/8034301a5a4d0296a5699b152b03f5db4369ddc433d232ffe6a92febae8a93c09f339218e64fe5eb46f0be4e517e739de67ba093fd7b49a068d13ce987e28cd0 languageName: node linkType: hard @@ -2264,11 +2264,11 @@ __metadata: languageName: node linkType: hard -"@aws-sdk/s3-presigned-post@npm:3.716.0": - version: 3.716.0 - resolution: "@aws-sdk/s3-presigned-post@npm:3.716.0" +"@aws-sdk/s3-presigned-post@npm:3.717.0": + version: 3.717.0 + resolution: "@aws-sdk/s3-presigned-post@npm:3.717.0" dependencies: - "@aws-sdk/client-s3": "npm:3.716.0" + "@aws-sdk/client-s3": "npm:3.717.0" "@aws-sdk/types": "npm:3.714.0" "@aws-sdk/util-format-url": "npm:3.714.0" "@smithy/middleware-endpoint": "npm:^3.2.6" @@ -2277,13 +2277,13 @@ __metadata: "@smithy/util-hex-encoding": "npm:^3.0.0" "@smithy/util-utf8": "npm:^3.0.0" tslib: "npm:^2.6.2" - checksum: 10c0/0fadb0e4d13be8361be79f19db9f549a070ef6689652a80893f8caf846d73e14d19ed4d074bd1962aedf22a9fadc4fcc680570076f8e0d4803615c0a3b4660ad + checksum: 10c0/c43515a426c4cb702e7d7d2d11d6b630b29f3a59d9233250ba95e3d9c48be71c805c13e452b7c2363967f6db8d9edf03ab6ef76bcc7b1ead96866a4457affb05 languageName: node linkType: hard -"@aws-sdk/s3-request-presigner@npm:3.716.0": - version: 3.716.0 - resolution: "@aws-sdk/s3-request-presigner@npm:3.716.0" +"@aws-sdk/s3-request-presigner@npm:3.717.0": + version: 3.717.0 + resolution: "@aws-sdk/s3-request-presigner@npm:3.717.0" dependencies: "@aws-sdk/signature-v4-multi-region": "npm:3.716.0" "@aws-sdk/types": "npm:3.714.0" @@ -2293,7 +2293,7 @@ __metadata: "@smithy/smithy-client": "npm:^3.5.1" "@smithy/types": "npm:^3.7.2" tslib: "npm:^2.6.2" - checksum: 10c0/fc895528a38111be2fd24ac99c8a58b8023f73d3fbc0be6d58f40a0b6896c4973d46e153d2c5bac0977e741cb80c473a39bf826423393911c9e015071cbf1190 + checksum: 10c0/8ecef5fc7c584ef34319a83c096d0b2701d6fa4f8195a71eaadcbfccbd8690b1102097d10ef047d662cf661531e199dd30d133765ae7a59310ae3153e6c44abf languageName: node linkType: hard @@ -9355,8 +9355,8 @@ __metadata: version: 0.0.0-use.local resolution: "@local/hash-backend-utils@workspace:libs/@local/hash-backend-utils" dependencies: - "@aws-sdk/client-s3": "npm:3.716.0" - "@aws-sdk/s3-request-presigner": "npm:3.716.0" + "@aws-sdk/client-s3": "npm:3.717.0" + "@aws-sdk/s3-request-presigner": "npm:3.717.0" "@blockprotocol/core": "patch:@blockprotocol/core@npm%3A0.1.3#~/.yarn/patches/@blockprotocol-core-npm-0.1.3-7c4f062e15.patch" "@blockprotocol/graph": "npm:0.4.0-canary.0" "@blockprotocol/type-system": "npm:0.1.2-canary.0" From 95eceae97519b81bffadc89be0895ea215fff2b1 Mon Sep 17 00:00:00 2001 From: "hash-worker[bot]" <180894564+hash-worker[bot]@users.noreply.github.com> Date: Tue, 31 Dec 2024 13:48:06 +0000 Subject: [PATCH 125/159] Update npm package `react-hook-form` to v7.54.2 (#5992) Co-authored-by: hash-worker[bot] <180894564+hash-worker[bot]@users.noreply.github.com> --- apps/hash-frontend/package.json | 2 +- blocks/chart/package.json | 2 +- libs/@hashintel/query-editor/package.json | 4 ++-- libs/@hashintel/type-editor/package.json | 4 ++-- yarn.lock | 20 ++++++++++---------- 5 files changed, 16 insertions(+), 16 deletions(-) diff --git a/apps/hash-frontend/package.json b/apps/hash-frontend/package.json index 672faf4189e..9bdb235e0bf 100644 --- a/apps/hash-frontend/package.json +++ b/apps/hash-frontend/package.json @@ -106,7 +106,7 @@ "react-dom": "19.0.0", "react-dropzone": "14.3.5", "react-full-screen": "1.1.1", - "react-hook-form": "7.54.1", + "react-hook-form": "7.54.2", "react-markdown": "9.0.1", "react-pdf": "9.2.1", "react-responsive-carousel": "3.2.23", diff --git a/blocks/chart/package.json b/blocks/chart/package.json index 0ba95dc66d2..f1e8afd6424 100644 --- a/blocks/chart/package.json +++ b/blocks/chart/package.json @@ -34,7 +34,7 @@ "@mui/material": "5.16.13", "echarts": "5.6.0", "lodash.debounce": "4.0.8", - "react-hook-form": "7.54.1" + "react-hook-form": "7.54.2" }, "devDependencies": { "@emotion/react": "11.14.0", diff --git a/libs/@hashintel/query-editor/package.json b/libs/@hashintel/query-editor/package.json index 0775886deb3..4734d471b3b 100644 --- a/libs/@hashintel/query-editor/package.json +++ b/libs/@hashintel/query-editor/package.json @@ -35,7 +35,7 @@ "eslint-plugin-storybook": "0.11.1", "react": "19.0.0", "react-dom": "19.0.0", - "react-hook-form": "7.54.1", + "react-hook-form": "7.54.2", "typescript": "5.7.2" }, "peerDependencies": { @@ -43,6 +43,6 @@ "@mui/system": "^5.14.0", "react": "^19.0.0", "react-dom": "^19.0.0", - "react-hook-form": "7.54.1" + "react-hook-form": "7.54.2" } } diff --git a/libs/@hashintel/type-editor/package.json b/libs/@hashintel/type-editor/package.json index 4dbc1631e11..fbedf6b777d 100644 --- a/libs/@hashintel/type-editor/package.json +++ b/libs/@hashintel/type-editor/package.json @@ -44,7 +44,7 @@ "eslint-plugin-storybook": "0.11.1", "react": "19.0.0", "react-dom": "19.0.0", - "react-hook-form": "7.54.1", + "react-hook-form": "7.54.2", "typescript": "5.7.2" }, "peerDependencies": { @@ -52,6 +52,6 @@ "@mui/system": "^5.14.0", "react": "^19.0.0", "react-dom": "^19.0.0", - "react-hook-form": "7.54.1" + "react-hook-form": "7.54.2" } } diff --git a/yarn.lock b/yarn.lock index fc4a3a8e387..94eff82bcb3 100644 --- a/yarn.lock +++ b/yarn.lock @@ -572,7 +572,7 @@ __metadata: react-dom: "npm:19.0.0" react-dropzone: "npm:14.3.5" react-full-screen: "npm:1.1.1" - react-hook-form: "npm:7.54.1" + react-hook-form: "npm:7.54.2" react-markdown: "npm:9.0.1" react-pdf: "npm:9.2.1" react-responsive-carousel: "npm:3.2.23" @@ -4798,7 +4798,7 @@ __metadata: prettier: "npm:3.4.2" react: "npm:19.0.0" react-dom: "npm:19.0.0" - react-hook-form: "npm:7.54.1" + react-hook-form: "npm:7.54.2" typescript: "npm:5.7.2" peerDependencies: react: ^19.0.0 @@ -7974,14 +7974,14 @@ __metadata: eslint-plugin-storybook: "npm:0.11.1" react: "npm:19.0.0" react-dom: "npm:19.0.0" - react-hook-form: "npm:7.54.1" + react-hook-form: "npm:7.54.2" typescript: "npm:5.7.2" peerDependencies: "@mui/material": ^5.14.0 "@mui/system": ^5.14.0 react: ^19.0.0 react-dom: ^19.0.0 - react-hook-form: 7.54.1 + react-hook-form: 7.54.2 languageName: unknown linkType: soft @@ -8009,7 +8009,7 @@ __metadata: material-ui-popup-state: "npm:4.1.0" react: "npm:19.0.0" react-dom: "npm:19.0.0" - react-hook-form: "npm:7.54.1" + react-hook-form: "npm:7.54.2" rooks: "npm:7.14.1" setimmediate: "npm:1.0.5" typescript: "npm:5.7.2" @@ -8018,7 +8018,7 @@ __metadata: "@mui/system": ^5.14.0 react: ^19.0.0 react-dom: ^19.0.0 - react-hook-form: 7.54.1 + react-hook-form: 7.54.2 languageName: unknown linkType: soft @@ -40776,12 +40776,12 @@ __metadata: languageName: node linkType: hard -"react-hook-form@npm:7.54.1": - version: 7.54.1 - resolution: "react-hook-form@npm:7.54.1" +"react-hook-form@npm:7.54.2": + version: 7.54.2 + resolution: "react-hook-form@npm:7.54.2" peerDependencies: react: ^16.8.0 || ^17 || ^18 || ^19 - checksum: 10c0/2d960ddf8aa654f34e36f5d995f0ec067a4c01340d650eca44f22aa4421e278dcc449c8522e66c5c66b1c61d62fbdf914b9e0a8de9deb4c6346cc3b37ef4eb82 + checksum: 10c0/6eebead2900e3d369a989e7a20429f390dc75b3897142aa3107f1f6dabb9ae64fed201ea98cdcd8676e40466c97748aeb0c0d83264f5bd3a84dbc0b8e4863415 languageName: node linkType: hard From d5aae6e1085c422694cfb6f54443f24a562010e6 Mon Sep 17 00:00:00 2001 From: "hash-worker[bot]" <180894564+hash-worker[bot]@users.noreply.github.com> Date: Tue, 31 Dec 2024 14:00:51 +0000 Subject: [PATCH 126/159] Update npm package `markdownlint-cli2` to v0.17.1 (#6032) Co-authored-by: hash-worker[bot] <180894564+hash-worker[bot]@users.noreply.github.com> --- package.json | 2 +- yarn.lock | 69 ++++++++++++++++++++++++++-------------------------- 2 files changed, 36 insertions(+), 35 deletions(-) diff --git a/package.json b/package.json index 1850de16cfc..84b95e615ce 100644 --- a/package.json +++ b/package.json @@ -107,7 +107,7 @@ "@taplo/cli": "0.7.0", "@yarnpkg/types": "^4.0.0", "lefthook": "1.10.1", - "markdownlint-cli2": "0.17.0", + "markdownlint-cli2": "0.17.1", "npm-run-all2": "7.0.2", "prettier": "3.4.2", "prettier-plugin-packagejson": "2.5.6", diff --git a/yarn.lock b/yarn.lock index 94eff82bcb3..c4ff7f2acd7 100644 --- a/yarn.lock +++ b/yarn.lock @@ -29878,7 +29878,7 @@ __metadata: "@taplo/cli": "npm:0.7.0" "@yarnpkg/types": "npm:^4.0.0" lefthook: "npm:1.10.1" - markdownlint-cli2: "npm:0.17.0" + markdownlint-cli2: "npm:0.17.1" npm-run-all2: "npm:7.0.2" prettier: "npm:3.4.2" prettier-plugin-packagejson: "npm:2.5.6" @@ -34437,35 +34437,36 @@ __metadata: languageName: node linkType: hard -"markdownlint-cli2@npm:0.17.0": - version: 0.17.0 - resolution: "markdownlint-cli2@npm:0.17.0" +"markdownlint-cli2@npm:0.17.1": + version: 0.17.1 + resolution: "markdownlint-cli2@npm:0.17.1" dependencies: globby: "npm:14.0.2" js-yaml: "npm:4.1.0" jsonc-parser: "npm:3.3.1" - markdownlint: "npm:0.37.2" + markdownlint: "npm:0.37.3" markdownlint-cli2-formatter-default: "npm:0.0.5" micromatch: "npm:4.0.8" bin: markdownlint-cli2: markdownlint-cli2-bin.mjs - checksum: 10c0/019cf1aaea77ee440d8ba6b86d0b59316dc9a9e6d4ccaebdcf5b7988830b9cfd8c215b08f6eeedfbd440ec2471fedd33a61731e914e9c1767c8aebc673764fa0 + checksum: 10c0/e7add987daf4eb3f7eb81e78d2a6094185d9673e638b75d37c42a7a944b08811bf6c9cdbe83d9996ab5a25d321881037ae0ccabe8971c444b45f58bfd6d2a93c languageName: node linkType: hard -"markdownlint@npm:0.37.2": - version: 0.37.2 - resolution: "markdownlint@npm:0.37.2" +"markdownlint@npm:0.37.3": + version: 0.37.3 + resolution: "markdownlint@npm:0.37.3" dependencies: markdown-it: "npm:14.1.0" micromark: "npm:4.0.1" + micromark-core-commonmark: "npm:2.0.2" micromark-extension-directive: "npm:3.0.2" micromark-extension-gfm-autolink-literal: "npm:2.1.0" micromark-extension-gfm-footnote: "npm:2.1.0" micromark-extension-gfm-table: "npm:2.1.0" micromark-extension-math: "npm:3.1.0" micromark-util-types: "npm:2.0.1" - checksum: 10c0/f0ebaac0028dcf9b748d3b37e5dd2be90752cd559fd4cb3df15414a5231b46212120dba5fefafee9f4b1e5dd31dad356ae694081a9500b8b7cc9883b6132af0c + checksum: 10c0/55db705a9fe08d35876918cde4dc37efc15fc03a7abd4f5874b9cc2db699200c9ac7fde45d31ca846ae88c79ec264679f9f19fd8649d430a0a7cba488bec3dcc languageName: node linkType: hard @@ -35174,6 +35175,30 @@ __metadata: languageName: node linkType: hard +"micromark-core-commonmark@npm:2.0.2, micromark-core-commonmark@npm:^2.0.0": + version: 2.0.2 + resolution: "micromark-core-commonmark@npm:2.0.2" + dependencies: + decode-named-character-reference: "npm:^1.0.0" + devlop: "npm:^1.0.0" + micromark-factory-destination: "npm:^2.0.0" + micromark-factory-label: "npm:^2.0.0" + micromark-factory-space: "npm:^2.0.0" + micromark-factory-title: "npm:^2.0.0" + micromark-factory-whitespace: "npm:^2.0.0" + micromark-util-character: "npm:^2.0.0" + micromark-util-chunked: "npm:^2.0.0" + micromark-util-classify-character: "npm:^2.0.0" + micromark-util-html-tag-name: "npm:^2.0.0" + micromark-util-normalize-identifier: "npm:^2.0.0" + micromark-util-resolve-all: "npm:^2.0.0" + micromark-util-subtokenize: "npm:^2.0.0" + micromark-util-symbol: "npm:^2.0.0" + micromark-util-types: "npm:^2.0.0" + checksum: 10c0/87c7a75cd339189eb6f1d6323037f7d108d1331d953b84fe839b37fd385ee2292b27222327c1ceffda46ba5d5d4dee703482475e5ee8744be40c9e308d8acb77 + languageName: node + linkType: hard + "micromark-core-commonmark@npm:^1.0.0, micromark-core-commonmark@npm:^1.0.1": version: 1.1.0 resolution: "micromark-core-commonmark@npm:1.1.0" @@ -35198,30 +35223,6 @@ __metadata: languageName: node linkType: hard -"micromark-core-commonmark@npm:^2.0.0": - version: 2.0.2 - resolution: "micromark-core-commonmark@npm:2.0.2" - dependencies: - decode-named-character-reference: "npm:^1.0.0" - devlop: "npm:^1.0.0" - micromark-factory-destination: "npm:^2.0.0" - micromark-factory-label: "npm:^2.0.0" - micromark-factory-space: "npm:^2.0.0" - micromark-factory-title: "npm:^2.0.0" - micromark-factory-whitespace: "npm:^2.0.0" - micromark-util-character: "npm:^2.0.0" - micromark-util-chunked: "npm:^2.0.0" - micromark-util-classify-character: "npm:^2.0.0" - micromark-util-html-tag-name: "npm:^2.0.0" - micromark-util-normalize-identifier: "npm:^2.0.0" - micromark-util-resolve-all: "npm:^2.0.0" - micromark-util-subtokenize: "npm:^2.0.0" - micromark-util-symbol: "npm:^2.0.0" - micromark-util-types: "npm:^2.0.0" - checksum: 10c0/87c7a75cd339189eb6f1d6323037f7d108d1331d953b84fe839b37fd385ee2292b27222327c1ceffda46ba5d5d4dee703482475e5ee8744be40c9e308d8acb77 - languageName: node - linkType: hard - "micromark-extension-directive@npm:3.0.2": version: 3.0.2 resolution: "micromark-extension-directive@npm:3.0.2" From 1b417d40fe78f07583565352a3b86ddf6f6b6606 Mon Sep 17 00:00:00 2001 From: "hash-worker[bot]" <180894564+hash-worker[bot]@users.noreply.github.com> Date: Wed, 1 Jan 2025 00:47:56 +0000 Subject: [PATCH 127/159] Update Rust crate `jsonschema` to v0.28.1 (#6033) Co-authored-by: hash-worker[bot] <180894564+hash-worker[bot]@users.noreply.github.com> --- Cargo.lock | 8 ++++---- Cargo.toml | 2 +- 2 files changed, 5 insertions(+), 5 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index 7c3b45e19e2..78e34dc4f33 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -3909,9 +3909,9 @@ dependencies = [ [[package]] name = "jsonschema" -version = "0.28.0" +version = "0.28.1" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "74d8eb539cdb4222da29bb658cc9881aa2477b33fb1a74c5c31450395fc1a4b2" +checksum = "c2303ef9ebb6acd7afe7c48cbc06ab807349c429d4e47c4cde8b35400503198f" dependencies = [ "ahash", "base64 0.22.1", @@ -5971,9 +5971,9 @@ dependencies = [ [[package]] name = "referencing" -version = "0.28.0" +version = "0.28.1" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "093a875008827c0ae15c746189966e162faa05bf347719d06302c548ac63630f" +checksum = "2fb7a1f338d8e32357ad1d7078454c248e5fdd2188fbb6966b400c2fa4d4f566" dependencies = [ "ahash", "fluent-uri", diff --git a/Cargo.toml b/Cargo.toml index 961e4a6ebc6..0a9866af848 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -175,7 +175,7 @@ hyper = { version = "=1.5.2", default-features = false } include_dir = { version = "=0.7.4", default-features = false } insta = { version = "=1.41.1", default-features = false } itertools = { version = "0.13.0", default-features = false } -jsonschema = { version = "=0.28.0", default-features = false } +jsonschema = { version = "=0.28.1", default-features = false } justjson = { version = "=0.3.0", default-features = false } lexical = { version = "=7.0.4", default-features = false } libp2p = { version = "=0.54.1", default-features = false } From d52ed7359ad5ecc1599e4aef4e4929d8885e0fe9 Mon Sep 17 00:00:00 2001 From: "hash-worker[bot]" <180894564+hash-worker[bot]@users.noreply.github.com> Date: Wed, 1 Jan 2025 00:53:24 +0000 Subject: [PATCH 128/159] Update Rust crate `reqwest` to v0.12.12 (#6034) Co-authored-by: hash-worker[bot] <180894564+hash-worker[bot]@users.noreply.github.com> --- Cargo.lock | 4 ++-- Cargo.toml | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index 78e34dc4f33..be13e2b68dc 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -6077,9 +6077,9 @@ checksum = "2b15c43186be67a4fd63bee50d0303afffcef381492ebe2c5d87f324e1b8815c" [[package]] name = "reqwest" -version = "0.12.11" +version = "0.12.12" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "7fe060fe50f524be480214aba758c71f99f90ee8c83c5a36b5e9e1d568eb4eb3" +checksum = "43e734407157c3c2034e0258f5e4473ddb361b1e85f95a66690d67264d7cd1da" dependencies = [ "base64 0.22.1", "bytes", diff --git a/Cargo.toml b/Cargo.toml index 0a9866af848..3b76debb72f 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -128,7 +128,7 @@ pdfium-render = { version = "0.8.26" } postgres-types = { version = "=0.2.8", default-features = false } prometheus-client = { version = "=0.22.3", default-features = false } regex = { version = "=1.11.1", default-features = false, features = ["perf", "unicode"] } -reqwest = { version = "=0.12.11", default-features = false, features = ["rustls-tls"] } +reqwest = { version = "=0.12.12", default-features = false, features = ["rustls-tls"] } semver = { version = "=1.0.24", default-features = false } sentry-types = { version = "=0.35.0", default-features = false } serde = { version = "=1.0.217", default-features = false } From e2072c53f67fa39627029e683b7cf710a91fd549 Mon Sep 17 00:00:00 2001 From: "hash-worker[bot]" <180894564+hash-worker[bot]@users.noreply.github.com> Date: Wed, 1 Jan 2025 01:54:32 +0000 Subject: [PATCH 129/159] Update Rust crate `winnow` to v0.6.21 (#6035) Co-authored-by: hash-worker[bot] <180894564+hash-worker[bot]@users.noreply.github.com> --- Cargo.lock | 4 ++-- Cargo.toml | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index be13e2b68dc..12c89e449a2 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -8678,9 +8678,9 @@ checksum = "589f6da84c646204747d1270a2a5661ea66ed1cced2631d546fdfb155959f9ec" [[package]] name = "winnow" -version = "0.6.20" +version = "0.6.21" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "36c1fec1a2bb5866f07c25f68c26e565c4c200aebb96d7e55710c19d3e8ac49b" +checksum = "e6f5bb5257f2407a5425c6e749bfd9692192a73e70a6060516ac04f889087d68" dependencies = [ "memchr", ] diff --git a/Cargo.toml b/Cargo.toml index 3b76debb72f..2ee5763b6b5 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -235,7 +235,7 @@ tsify = { version = "=0.4.5", default-features = false } unicode-ident = { version = "=1.0.14", default-features = false } virtue = { version = "=0.0.18", default-features = false } walkdir = { version = "=2.5.0", default-features = false } -winnow = { version = "=0.6.20", default-features = false } +winnow = { version = "=0.6.21", default-features = false } [profile.dev] codegen-backend = "cranelift" From 87cef3ac355ad4c7087c60cef30e09f4c1b086f2 Mon Sep 17 00:00:00 2001 From: "hash-worker[bot]" <180894564+hash-worker[bot]@users.noreply.github.com> Date: Wed, 1 Jan 2025 02:01:06 +0000 Subject: [PATCH 130/159] Update Rust crate `itertools` to 0.14.0 (#6036) Co-authored-by: hash-worker[bot] <180894564+hash-worker[bot]@users.noreply.github.com> --- Cargo.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Cargo.toml b/Cargo.toml index 2ee5763b6b5..0486e966d3d 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -174,7 +174,7 @@ humansize = { version = "=2.1.3", default-features = false } hyper = { version = "=1.5.2", default-features = false } include_dir = { version = "=0.7.4", default-features = false } insta = { version = "=1.41.1", default-features = false } -itertools = { version = "0.13.0", default-features = false } +itertools = { version = "0.14.0", default-features = false } jsonschema = { version = "=0.28.1", default-features = false } justjson = { version = "=0.3.0", default-features = false } lexical = { version = "=7.0.4", default-features = false } From c136e991f2162af7bb63a412f71f7dbd1c059195 Mon Sep 17 00:00:00 2001 From: "hash-worker[bot]" <180894564+hash-worker[bot]@users.noreply.github.com> Date: Wed, 1 Jan 2025 11:29:03 +0000 Subject: [PATCH 131/159] Update GitHub Action `Swatinem/rust-cache` to v2.7.7 (#6037) Co-authored-by: hash-worker[bot] <180894564+hash-worker[bot]@users.noreply.github.com> --- .github/workflows/bench.yml | 4 ++-- .github/workflows/lint.yml | 2 +- .github/workflows/test.yml | 4 ++-- 3 files changed, 5 insertions(+), 5 deletions(-) diff --git a/.github/workflows/bench.yml b/.github/workflows/bench.yml index e3fb0c43ff0..7bf4c2fce2e 100644 --- a/.github/workflows/bench.yml +++ b/.github/workflows/bench.yml @@ -136,7 +136,7 @@ jobs: - name: Cache Rust dependencies if: steps.benches.outputs.has-rust == 'true' - uses: Swatinem/rust-cache@720f7e45ccee46c12a7b1d7bed2ab733be9be5a1 # v2.7.6 + uses: Swatinem/rust-cache@f0deed1e0edfc6a9be95417288c0e1099b1eeec3 # v2.7.7 with: workspaces: ${{ matrix.directory }} save-if: ${{ !startsWith(github.ref, 'refs/heads/gh-readonly-queue') }} @@ -288,7 +288,7 @@ jobs: - name: Cache Rust dependencies if: steps.benches.outputs.has-rust == 'true' - uses: Swatinem/rust-cache@720f7e45ccee46c12a7b1d7bed2ab733be9be5a1 # v2.7.6 + uses: Swatinem/rust-cache@f0deed1e0edfc6a9be95417288c0e1099b1eeec3 # v2.7.7 with: workspaces: ${{ matrix.directory }} save-if: ${{ !startsWith(github.ref, 'refs/heads/gh-readonly-queue') }} diff --git a/.github/workflows/lint.yml b/.github/workflows/lint.yml index 35d36c263c9..c3fd347a8db 100644 --- a/.github/workflows/lint.yml +++ b/.github/workflows/lint.yml @@ -120,7 +120,7 @@ jobs: - name: Cache Rust dependencies if: always() && steps.lints.outputs.has-rust == 'true' - uses: Swatinem/rust-cache@720f7e45ccee46c12a7b1d7bed2ab733be9be5a1 # v2.7.6 + uses: Swatinem/rust-cache@f0deed1e0edfc6a9be95417288c0e1099b1eeec3 # v2.7.7 with: workspaces: ${{ matrix.directory }} save-if: ${{ !startsWith(github.ref, 'refs/heads/gh-readonly-queue') }} diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index 22d45f29b78..0bb538d08fb 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -172,7 +172,7 @@ jobs: - name: Cache Rust dependencies if: always() && steps.tests.outputs.has-rust == 'true' - uses: Swatinem/rust-cache@720f7e45ccee46c12a7b1d7bed2ab733be9be5a1 # v2.7.6 + uses: Swatinem/rust-cache@f0deed1e0edfc6a9be95417288c0e1099b1eeec3 # v2.7.7 with: workspaces: ${{ matrix.directory }} save-if: ${{ !startsWith(github.ref, 'refs/heads/gh-readonly-queue') }} @@ -314,7 +314,7 @@ jobs: - name: Cache Rust dependencies if: steps.tests.outputs.has-rust == 'true' - uses: Swatinem/rust-cache@720f7e45ccee46c12a7b1d7bed2ab733be9be5a1 # v2.7.6 + uses: Swatinem/rust-cache@f0deed1e0edfc6a9be95417288c0e1099b1eeec3 # v2.7.7 with: workspaces: ${{ matrix.directory }} save-if: ${{ !startsWith(github.ref, 'refs/heads/gh-readonly-queue') }} From 665715e6cbdf57bd47ddc0ac579c27677a36a665 Mon Sep 17 00:00:00 2001 From: "hash-worker[bot]" <180894564+hash-worker[bot]@users.noreply.github.com> Date: Wed, 1 Jan 2025 11:29:54 +0000 Subject: [PATCH 132/159] Update GitHub Action `taiki-e/install-action` to v2.47.2 (#6038) Co-authored-by: hash-worker[bot] <180894564+hash-worker[bot]@users.noreply.github.com> --- .github/actions/warm-up-repo/action.yml | 2 +- .github/workflows/bench.yml | 4 ++-- .github/workflows/lint.yml | 2 +- .github/workflows/test.yml | 4 ++-- 4 files changed, 6 insertions(+), 6 deletions(-) diff --git a/.github/actions/warm-up-repo/action.yml b/.github/actions/warm-up-repo/action.yml index 518902188a5..caf5754a16c 100644 --- a/.github/actions/warm-up-repo/action.yml +++ b/.github/actions/warm-up-repo/action.yml @@ -17,7 +17,7 @@ runs: # cache: yarn ## Currently disabled because of frequent timeouts - name: Install WASM tools - uses: taiki-e/install-action@acd25891978b4cdaebd139d3efef606d26513b14 # v2.47.0 + uses: taiki-e/install-action@dbc32cd89278f24bd864023c3340ac21971f0bec # v2.47.2 with: tool: wasm-pack@0.12.1 diff --git a/.github/workflows/bench.yml b/.github/workflows/bench.yml index 7bf4c2fce2e..2dad9b9a740 100644 --- a/.github/workflows/bench.yml +++ b/.github/workflows/bench.yml @@ -99,7 +99,7 @@ jobs: - name: Install Rust tools if: steps.benches.outputs.has-rust == 'true' - uses: taiki-e/install-action@acd25891978b4cdaebd139d3efef606d26513b14 # v2.47.0 + uses: taiki-e/install-action@dbc32cd89278f24bd864023c3340ac21971f0bec # v2.47.2 with: tool: just@1.34.0,critcmp@0.1.8 @@ -251,7 +251,7 @@ jobs: - name: Install Rust tools if: steps.benches.outputs.has-rust == 'true' - uses: taiki-e/install-action@acd25891978b4cdaebd139d3efef606d26513b14 # v2.47.0 + uses: taiki-e/install-action@dbc32cd89278f24bd864023c3340ac21971f0bec # v2.47.2 with: tool: just@1.34.0,critcmp@0.1.8 diff --git a/.github/workflows/lint.yml b/.github/workflows/lint.yml index c3fd347a8db..6336dad62ec 100644 --- a/.github/workflows/lint.yml +++ b/.github/workflows/lint.yml @@ -111,7 +111,7 @@ jobs: - name: Install Rust tools if: always() && steps.lints.outputs.has-rust == 'true' - uses: taiki-e/install-action@acd25891978b4cdaebd139d3efef606d26513b14 # v2.47.0 + uses: taiki-e/install-action@dbc32cd89278f24bd864023c3340ac21971f0bec # v2.47.2 with: tool: just@1.34.0,cargo-hack@0.6.30,clippy-sarif@0.6.5,sarif-fmt@0.6.5 diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index 0bb538d08fb..da266e92904 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -163,7 +163,7 @@ jobs: - name: Install Rust tools if: always() && steps.tests.outputs.has-rust == 'true' - uses: taiki-e/install-action@acd25891978b4cdaebd139d3efef606d26513b14 # v2.47.0 + uses: taiki-e/install-action@dbc32cd89278f24bd864023c3340ac21971f0bec # v2.47.2 with: tool: just@1.34.0,cargo-hack@0.6.30,cargo-nextest@0.9.72,cargo-llvm-cov@0.6.11 @@ -281,7 +281,7 @@ jobs: - name: Install Rust tools if: steps.tests.outputs.has-rust == 'true' - uses: taiki-e/install-action@acd25891978b4cdaebd139d3efef606d26513b14 # v2.47.0 + uses: taiki-e/install-action@dbc32cd89278f24bd864023c3340ac21971f0bec # v2.47.2 with: tool: just@1.34.0,cargo-hack@0.6.30,cargo-nextest@0.9.72,cargo-llvm-cov@0.6.11 From 7340290007dc415e66147eccfaca11023340be2c Mon Sep 17 00:00:00 2001 From: "hash-worker[bot]" <180894564+hash-worker[bot]@users.noreply.github.com> Date: Wed, 1 Jan 2025 11:39:46 +0000 Subject: [PATCH 133/159] Update npm package `@types/node` to v22.10.3 (#6039) Co-authored-by: hash-worker[bot] <180894564+hash-worker[bot]@users.noreply.github.com> --- apps/hash-ai-worker-ts/package.json | 2 +- apps/hash-realtime/package.json | 2 +- apps/hash-search-loader/package.json | 2 +- apps/hashdotdev/package.json | 2 +- libs/@blockprotocol/graph/package.json | 2 +- .../type-system/typescript/package.json | 2 +- libs/@local/eslint/package.json | 2 +- .../graph/client/typescript/package.json | 2 +- .../harpc/client/typescript/package.json | 2 +- libs/@local/hash-backend-utils/package.json | 2 +- .../@local/hash-isomorphic-utils/package.json | 2 +- .../typescript/package.json | 2 +- libs/@local/status/typescript/package.json | 2 +- yarn.lock | 34 +++++++++---------- 14 files changed, 30 insertions(+), 30 deletions(-) diff --git a/apps/hash-ai-worker-ts/package.json b/apps/hash-ai-worker-ts/package.json index ac58a972a78..1486f5408d8 100644 --- a/apps/hash-ai-worker-ts/package.json +++ b/apps/hash-ai-worker-ts/package.json @@ -106,7 +106,7 @@ "@types/lodash.pickby": "4.6.9", "@types/md5": "2.3.5", "@types/mime-types": "2.1.4", - "@types/node": "22.10.2", + "@types/node": "22.10.3", "@types/papaparse": "5.3.15", "@types/sanitize-html": "2.13.0", "@vitest/coverage-istanbul": "2.1.8", diff --git a/apps/hash-realtime/package.json b/apps/hash-realtime/package.json index 95a36bb05d0..3db9e301ca4 100644 --- a/apps/hash-realtime/package.json +++ b/apps/hash-realtime/package.json @@ -24,7 +24,7 @@ "devDependencies": { "@local/eslint": "0.0.0-private", "@local/tsconfig": "0.0.0-private", - "@types/node": "22.10.2", + "@types/node": "22.10.3", "@types/set-interval-async": "1.0.3", "eslint": "9.17.0", "typescript": "5.7.2" diff --git a/apps/hash-search-loader/package.json b/apps/hash-search-loader/package.json index 67504124ddb..19b1bb0dad2 100644 --- a/apps/hash-search-loader/package.json +++ b/apps/hash-search-loader/package.json @@ -24,7 +24,7 @@ "devDependencies": { "@local/eslint": "0.0.0-private", "@local/tsconfig": "0.0.0-private", - "@types/node": "22.10.2", + "@types/node": "22.10.3", "eslint": "9.17.0", "typescript": "5.7.2" } diff --git a/apps/hashdotdev/package.json b/apps/hashdotdev/package.json index ee6f8861adc..0d113e506e6 100644 --- a/apps/hashdotdev/package.json +++ b/apps/hashdotdev/package.json @@ -72,7 +72,7 @@ "@types/gtag.js": "0.0.20", "@types/html-to-text": "9.0.4", "@types/md5": "2.3.5", - "@types/node": "22.10.2", + "@types/node": "22.10.3", "@types/prismjs": "1.26.5", "@types/react": "19.0.1", "@types/react-dom": "19.0.2", diff --git a/libs/@blockprotocol/graph/package.json b/libs/@blockprotocol/graph/package.json index 79cc19a2aef..51c79fd0ef0 100644 --- a/libs/@blockprotocol/graph/package.json +++ b/libs/@blockprotocol/graph/package.json @@ -79,7 +79,7 @@ "@local/eslint": "0.0.0-private", "@local/tsconfig": "0.0.0-private", "@types/lodash.isequal": "4.5.8", - "@types/node": "22.10.2", + "@types/node": "22.10.3", "@types/react": "19.0.1", "eslint": "9.17.0", "rimraf": "6.0.1", diff --git a/libs/@blockprotocol/type-system/typescript/package.json b/libs/@blockprotocol/type-system/typescript/package.json index 64b04930e1d..1325a0bbc7d 100644 --- a/libs/@blockprotocol/type-system/typescript/package.json +++ b/libs/@blockprotocol/type-system/typescript/package.json @@ -59,7 +59,7 @@ "@rollup/plugin-node-resolve": "16.0.0", "@rollup/plugin-typescript": "12.1.2", "@rollup/plugin-wasm": "6.2.2", - "@types/node": "22.10.2", + "@types/node": "22.10.3", "@types/react": "19.0.1", "@vitest/coverage-istanbul": "2.1.8", "eslint": "9.17.0", diff --git a/libs/@local/eslint/package.json b/libs/@local/eslint/package.json index d24475954a1..173971bef3f 100644 --- a/libs/@local/eslint/package.json +++ b/libs/@local/eslint/package.json @@ -43,7 +43,7 @@ "@local/tsconfig": "0.0.0-private", "@types/babel__core": "^7", "@types/eslint__eslintrc": "2.1.2", - "@types/node": "22.10.2", + "@types/node": "22.10.3", "rimraf": "6.0.1", "typescript": "5.7.2" } diff --git a/libs/@local/graph/client/typescript/package.json b/libs/@local/graph/client/typescript/package.json index da73c659504..5843aae8d61 100644 --- a/libs/@local/graph/client/typescript/package.json +++ b/libs/@local/graph/client/typescript/package.json @@ -19,7 +19,7 @@ "@local/tsconfig": "0.0.0-private", "@redocly/cli": "1.26.1", "@rust/hash-graph-api": "0.0.0-private", - "@types/node": "22.10.2", + "@types/node": "22.10.3", "fix-esm-import-path": "1.10.1", "rimraf": "6.0.1", "typescript": "5.7.2" diff --git a/libs/@local/harpc/client/typescript/package.json b/libs/@local/harpc/client/typescript/package.json index 63bd34b60f3..9eb5dc092f9 100644 --- a/libs/@local/harpc/client/typescript/package.json +++ b/libs/@local/harpc/client/typescript/package.json @@ -45,7 +45,7 @@ "@local/eslint": "0.0.0-private", "@local/tsconfig": "0.0.0-private", "@rust/harpc-wire-protocol": "0.0.0-private", - "@types/node": "22.10.2", + "@types/node": "22.10.3", "@vitest/coverage-istanbul": "2.1.8", "eslint": "9.17.0", "rimraf": "6.0.1", diff --git a/libs/@local/hash-backend-utils/package.json b/libs/@local/hash-backend-utils/package.json index 01144279dea..6c9a7c8224d 100644 --- a/libs/@local/hash-backend-utils/package.json +++ b/libs/@local/hash-backend-utils/package.json @@ -59,7 +59,7 @@ "@local/eslint": "0.0.0-private", "@local/tsconfig": "0.0.0-private", "@types/dotenv-flow": "3.3.3", - "@types/node": "22.10.2", + "@types/node": "22.10.3", "@types/wait-on": "5.3.4", "@vitest/coverage-istanbul": "2.1.8", "eslint": "9.17.0", diff --git a/libs/@local/hash-isomorphic-utils/package.json b/libs/@local/hash-isomorphic-utils/package.json index 8e9cf125a38..df49008d1b7 100644 --- a/libs/@local/hash-isomorphic-utils/package.json +++ b/libs/@local/hash-isomorphic-utils/package.json @@ -63,7 +63,7 @@ "@local/tsconfig": "0.0.0-private", "@temporalio/workflow": "1.11.5", "@types/lodash-es": "4.17.12", - "@types/node": "22.10.2", + "@types/node": "22.10.3", "@types/pluralize": "0.0.33", "@vitest/coverage-istanbul": "2.1.8", "eslint": "9.17.0", diff --git a/libs/@local/internal-api-client/typescript/package.json b/libs/@local/internal-api-client/typescript/package.json index 9a6ac33a96b..c677ec6f5c6 100644 --- a/libs/@local/internal-api-client/typescript/package.json +++ b/libs/@local/internal-api-client/typescript/package.json @@ -16,7 +16,7 @@ }, "devDependencies": { "@openapitools/openapi-generator-cli": "2.15.3", - "@types/node": "22.10.2", + "@types/node": "22.10.3", "prettier": "3.4.2", "rimraf": "6.0.1", "typescript": "5.7.2" diff --git a/libs/@local/status/typescript/package.json b/libs/@local/status/typescript/package.json index c69bcd48c9a..46af7e4ec1d 100644 --- a/libs/@local/status/typescript/package.json +++ b/libs/@local/status/typescript/package.json @@ -25,7 +25,7 @@ "@local/eslint": "0.0.0-private", "@local/tsconfig": "0.0.0-private", "@types/lodash-es": "4.17.12", - "@types/node": "22.10.2", + "@types/node": "22.10.3", "@types/yargs": "17.0.33", "eslint": "9.17.0", "quicktype": "16.0.43", diff --git a/yarn.lock b/yarn.lock index c4ff7f2acd7..cc4ae9a606a 100644 --- a/yarn.lock +++ b/yarn.lock @@ -298,7 +298,7 @@ __metadata: "@types/lodash.pickby": "npm:4.6.9" "@types/md5": "npm:2.3.5" "@types/mime-types": "npm:2.1.4" - "@types/node": "npm:22.10.2" + "@types/node": "npm:22.10.3" "@types/papaparse": "npm:5.3.15" "@types/sanitize-html": "npm:2.13.0" "@vitest/coverage-istanbul": "npm:2.1.8" @@ -658,7 +658,7 @@ __metadata: "@local/eslint": "npm:0.0.0-private" "@local/hash-backend-utils": "npm:0.0.0-private" "@local/tsconfig": "npm:0.0.0-private" - "@types/node": "npm:22.10.2" + "@types/node": "npm:22.10.3" "@types/set-interval-async": "npm:1.0.3" eslint: "npm:9.17.0" set-interval-async: "npm:2.0.3" @@ -677,7 +677,7 @@ __metadata: "@local/hash-backend-utils": "npm:0.0.0-private" "@local/hash-isomorphic-utils": "npm:0.0.0-private" "@local/tsconfig": "npm:0.0.0-private" - "@types/node": "npm:22.10.2" + "@types/node": "npm:22.10.3" eslint: "npm:9.17.0" hot-shots: "npm:8.5.2" tsx: "npm:4.19.2" @@ -737,7 +737,7 @@ __metadata: "@types/gtag.js": "npm:0.0.20" "@types/html-to-text": "npm:9.0.4" "@types/md5": "npm:2.3.5" - "@types/node": "npm:22.10.2" + "@types/node": "npm:22.10.3" "@types/prismjs": "npm:1.26.5" "@types/react": "npm:19.0.1" "@types/react-dom": "npm:19.0.2" @@ -4536,7 +4536,7 @@ __metadata: "@local/eslint": "npm:0.0.0-private" "@local/tsconfig": "npm:0.0.0-private" "@types/lodash.isequal": "npm:4.5.8" - "@types/node": "npm:22.10.2" + "@types/node": "npm:22.10.3" "@types/react": "npm:19.0.1" ajv: "npm:8.17.1" ajv-formats: "npm:3.0.1" @@ -4625,7 +4625,7 @@ __metadata: "@rollup/plugin-node-resolve": "npm:16.0.0" "@rollup/plugin-typescript": "npm:12.1.2" "@rollup/plugin-wasm": "npm:6.2.2" - "@types/node": "npm:22.10.2" + "@types/node": "npm:22.10.3" "@types/react": "npm:19.0.1" "@vitest/coverage-istanbul": "npm:2.1.8" eslint: "npm:9.17.0" @@ -9298,7 +9298,7 @@ __metadata: "@local/tsconfig": "npm:0.0.0-private" "@types/babel__core": "npm:^7" "@types/eslint__eslintrc": "npm:2.1.2" - "@types/node": "npm:22.10.2" + "@types/node": "npm:22.10.3" effect: "npm:3.12.0" eslint: "npm:9.17.0" eslint-config-airbnb: "npm:19.0.4" @@ -9337,7 +9337,7 @@ __metadata: "@multiformats/dns": "npm:1.0.6" "@multiformats/multiaddr": "npm:12.3.4" "@rust/harpc-wire-protocol": "npm:0.0.0-private" - "@types/node": "npm:22.10.2" + "@types/node": "npm:22.10.3" "@vitest/coverage-istanbul": "npm:2.1.8" effect: "npm:3.12.0" eslint: "npm:9.17.0" @@ -9378,7 +9378,7 @@ __metadata: "@temporalio/worker": "npm:1.11.5" "@temporalio/workflow": "npm:1.11.5" "@types/dotenv-flow": "npm:3.3.3" - "@types/node": "npm:22.10.2" + "@types/node": "npm:22.10.3" "@types/wait-on": "npm:5.3.4" "@vitest/coverage-istanbul": "npm:2.1.8" agentkeepalive: "npm:4.6.0" @@ -9407,7 +9407,7 @@ __metadata: "@openapitools/openapi-generator-cli": "npm:2.15.3" "@redocly/cli": "npm:1.26.1" "@rust/hash-graph-api": "npm:0.0.0-private" - "@types/node": "npm:22.10.2" + "@types/node": "npm:22.10.3" axios: "npm:1.7.9" fix-esm-import-path: "npm:1.10.1" rimraf: "npm:6.0.1" @@ -9474,7 +9474,7 @@ __metadata: "@sindresorhus/slugify": "npm:1.1.2" "@temporalio/workflow": "npm:1.11.5" "@types/lodash-es": "npm:4.17.12" - "@types/node": "npm:22.10.2" + "@types/node": "npm:22.10.3" "@types/pluralize": "npm:0.0.33" "@vitest/coverage-istanbul": "npm:2.1.8" apollo-server-express: "npm:3.9.0" @@ -9530,7 +9530,7 @@ __metadata: resolution: "@local/internal-api-client@workspace:libs/@local/internal-api-client/typescript" dependencies: "@openapitools/openapi-generator-cli": "npm:2.15.3" - "@types/node": "npm:22.10.2" + "@types/node": "npm:22.10.3" axios: "npm:1.7.9" prettier: "npm:3.4.2" rimraf: "npm:6.0.1" @@ -9567,7 +9567,7 @@ __metadata: "@local/eslint": "npm:0.0.0-private" "@local/tsconfig": "npm:0.0.0-private" "@types/lodash-es": "npm:4.17.12" - "@types/node": "npm:22.10.2" + "@types/node": "npm:22.10.3" "@types/yargs": "npm:17.0.33" eslint: "npm:9.17.0" execa: "npm:5.1.1" @@ -18163,12 +18163,12 @@ __metadata: languageName: node linkType: hard -"@types/node@npm:*, @types/node@npm:22.10.2, @types/node@npm:>=13.7.0, @types/node@npm:^22.9.0": - version: 22.10.2 - resolution: "@types/node@npm:22.10.2" +"@types/node@npm:*, @types/node@npm:22.10.3, @types/node@npm:>=13.7.0, @types/node@npm:^22.9.0": + version: 22.10.3 + resolution: "@types/node@npm:22.10.3" dependencies: undici-types: "npm:~6.20.0" - checksum: 10c0/2c7b71a040f1ef5320938eca8ebc946e6905caa9bbf3d5665d9b3774a8d15ea9fab1582b849a6d28c7fc80756a62c5666bc66b69f42f4d5dafd1ccb193cdb4ac + checksum: 10c0/0471a73c8672c803b1f2b912c2c466d00a217186933e8ff38ec7779b4a3f88a0eea3b513a59f2abf9de17cc8bbca688a3c6643c6513ac8dd1c3e45d25fab93b1 languageName: node linkType: hard From b169db39f0c8bbc83c13e015f8fe547448e686f3 Mon Sep 17 00:00:00 2001 From: "hash-worker[bot]" <180894564+hash-worker[bot]@users.noreply.github.com> Date: Wed, 1 Jan 2025 12:36:20 +0000 Subject: [PATCH 134/159] Update Rust crate `axum-core` to 0.5.0 (#6040) Co-authored-by: hash-worker[bot] <180894564+hash-worker[bot]@users.noreply.github.com> --- Cargo.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Cargo.toml b/Cargo.toml index 0486e966d3d..e7c1240db1b 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -92,7 +92,7 @@ ahash = { version = "=0.8.11", default-features = false } ariadne = { version = "=0.5.0", default-features = false } aws-types = { version = "=1.3.3", default-features = false } axum = { version = "0.7.5" } -axum-core = { version = "0.4.5" } +axum-core = { version = "0.5.0" } bumpalo = { version = "=3.16.0", default-features = false } bytes = { version = "1.9.0" } clap_builder = { version = "=4.5.23", default-features = false, features = ["std"] } From 36788a7fb7338c417857f1b790559de5d4b32eb4 Mon Sep 17 00:00:00 2001 From: "hash-worker[bot]" <180894564+hash-worker[bot]@users.noreply.github.com> Date: Thu, 2 Jan 2025 01:36:11 +0000 Subject: [PATCH 135/159] Update Rust crate `syn` to v2.0.94 (#6042) Co-authored-by: hash-worker[bot] <180894564+hash-worker[bot]@users.noreply.github.com> --- Cargo.lock | 158 +++++++++++++++++++++++++++++++---------------------- Cargo.toml | 2 +- 2 files changed, 94 insertions(+), 66 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index 12c89e449a2..c35452bf4d9 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -213,7 +213,7 @@ checksum = "0ae92a5119aa49cdbcf6b9f893fe4e1d98b04ccbf82ee0584ad948a44a734dea" dependencies = [ "proc-macro2", "quote", - "syn 2.0.93", + "syn 2.0.94", ] [[package]] @@ -262,7 +262,7 @@ checksum = "965c2d33e53cb6b267e148a4cb0760bc01f4904c1cd4bb4002a085bb016d1490" dependencies = [ "proc-macro2", "quote", - "syn 2.0.93", + "syn 2.0.94", "synstructure", ] @@ -274,7 +274,7 @@ checksum = "7b18050c2cd6fe86c3a76584ef5e0baf286d038cda203eb6223df2cc413565f7" dependencies = [ "proc-macro2", "quote", - "syn 2.0.93", + "syn 2.0.94", ] [[package]] @@ -347,7 +347,7 @@ checksum = "c7c24de15d275a1ecfd47a380fb4d5ec9bfe0933f309ed5e705b775596a3574d" dependencies = [ "proc-macro2", "quote", - "syn 2.0.93", + "syn 2.0.94", ] [[package]] @@ -358,7 +358,7 @@ checksum = "721cae7de5c34fbb2acd27e21e6d2cf7b886dce0c27388d46c4e6c47ea4318dd" dependencies = [ "proc-macro2", "quote", - "syn 2.0.93", + "syn 2.0.94", ] [[package]] @@ -793,7 +793,7 @@ source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "edca88bc138befd0323b20752846e6587272d3b03b0343c8ea28a6f819e6e71f" dependencies = [ "async-trait", - "axum-core", + "axum-core 0.4.5", "bytes", "futures-util", "http 1.2.0", @@ -841,6 +841,25 @@ dependencies = [ "tracing", ] +[[package]] +name = "axum-core" +version = "0.5.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "df1362f362fd16024ae199c1970ce98f9661bf5ef94b9808fee734bc3698b733" +dependencies = [ + "bytes", + "futures-util", + "http 1.2.0", + "http-body 1.0.1", + "http-body-util", + "mime", + "pin-project-lite", + "rustversion", + "sync_wrapper", + "tower-layer", + "tower-service", +] + [[package]] name = "backoff" version = "0.4.0" @@ -1255,7 +1274,7 @@ dependencies = [ "heck 0.5.0", "proc-macro2", "quote", - "syn 2.0.93", + "syn 2.0.94", ] [[package]] @@ -1516,7 +1535,7 @@ checksum = "f46882e17999c6cc590af592290432be3bce0428cb0d5f8b6715e4dc7b383eb3" dependencies = [ "proc-macro2", "quote", - "syn 2.0.93", + "syn 2.0.94", ] [[package]] @@ -1540,7 +1559,7 @@ dependencies = [ "proc-macro2", "quote", "strsim", - "syn 2.0.93", + "syn 2.0.94", ] [[package]] @@ -1551,7 +1570,7 @@ checksum = "d336a2a514f6ccccaa3e09b02d41d35330c07ddf03a62165fcec10bb561c7806" dependencies = [ "darling_core", "quote", - "syn 2.0.93", + "syn 2.0.94", ] [[package]] @@ -1710,7 +1729,7 @@ checksum = "62d671cc41a825ebabc75757b62d3d168c577f9149b2d49ece1dad1f72119d25" dependencies = [ "proc-macro2", "quote", - "syn 2.0.93", + "syn 2.0.94", ] [[package]] @@ -1731,7 +1750,7 @@ dependencies = [ "darling", "proc-macro2", "quote", - "syn 2.0.93", + "syn 2.0.94", ] [[package]] @@ -1741,7 +1760,7 @@ source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "ab63b0e2bf4d5928aff72e83a7dace85d7bba5fe12dcc3c5a572d78caffd3f3c" dependencies = [ "derive_builder_core", - "syn 2.0.93", + "syn 2.0.94", ] [[package]] @@ -1761,7 +1780,7 @@ checksum = "cb7330aeadfbe296029522e6c40f315320aba36fc43a5b3632f3795348f3bd22" dependencies = [ "proc-macro2", "quote", - "syn 2.0.93", + "syn 2.0.94", "unicode-xid", ] @@ -1800,7 +1819,7 @@ checksum = "97369cbbc041bc366949bc74d34658d6cda5621039731c6310521892a3a20ae0" dependencies = [ "proc-macro2", "quote", - "syn 2.0.93", + "syn 2.0.94", ] [[package]] @@ -1861,7 +1880,7 @@ dependencies = [ "enum-ordinalize", "proc-macro2", "quote", - "syn 2.0.93", + "syn 2.0.94", ] [[package]] @@ -1894,7 +1913,7 @@ dependencies = [ "heck 0.5.0", "proc-macro2", "quote", - "syn 2.0.93", + "syn 2.0.94", ] [[package]] @@ -1914,7 +1933,7 @@ checksum = "0d28318a75d4aead5c4db25382e8ef717932d0346600cacae6357eb5941bc5ff" dependencies = [ "proc-macro2", "quote", - "syn 2.0.93", + "syn 2.0.94", ] [[package]] @@ -1935,7 +1954,7 @@ checksum = "de0d48a183585823424a4ce1aa132d174a6a81bd540895822eb4c8373a8e49e8" dependencies = [ "proc-macro2", "quote", - "syn 2.0.93", + "syn 2.0.94", ] [[package]] @@ -2188,7 +2207,7 @@ checksum = "e99b8b3c28ae0e84b604c75f721c21dc77afb3706076af5e8216d15fd1deaae3" dependencies = [ "frunk_proc_macro_helpers", "quote", - "syn 2.0.93", + "syn 2.0.94", ] [[package]] @@ -2200,7 +2219,7 @@ dependencies = [ "frunk_core", "proc-macro2", "quote", - "syn 2.0.93", + "syn 2.0.94", ] [[package]] @@ -2212,7 +2231,7 @@ dependencies = [ "frunk_core", "frunk_proc_macro_helpers", "quote", - "syn 2.0.93", + "syn 2.0.94", ] [[package]] @@ -2298,7 +2317,7 @@ checksum = "162ee34ebcb7c64a8abebc059ce0fee27c2262618d7b60ed8faf72fef13c3650" dependencies = [ "proc-macro2", "quote", - "syn 2.0.93", + "syn 2.0.94", ] [[package]] @@ -2714,7 +2733,7 @@ version = "0.0.0" dependencies = [ "async-trait", "axum", - "axum-core", + "axum-core 0.5.0", "bytes", "derive-where", "derive_more", @@ -2861,7 +2880,7 @@ dependencies = [ "quote", "regex", "sha2", - "syn 2.0.93", + "syn 2.0.94", "walkdir", ] @@ -3771,7 +3790,7 @@ checksum = "c34819042dc3d3971c46c2190835914dfbe0c3c13f61449b2997f4e9722dfa60" dependencies = [ "proc-macro2", "quote", - "syn 2.0.93", + "syn 2.0.94", ] [[package]] @@ -3857,6 +3876,15 @@ dependencies = [ "either", ] +[[package]] +name = "itertools" +version = "0.14.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "2b192c782037fadd9cfa75548310488aabdbf3d2da73885b31bd0abd03351285" +dependencies = [ + "either", +] + [[package]] name = "itoa" version = "1.0.14" @@ -4359,7 +4387,7 @@ dependencies = [ "heck 0.5.0", "proc-macro2", "quote", - "syn 2.0.93", + "syn 2.0.94", ] [[package]] @@ -4479,7 +4507,7 @@ dependencies = [ "quote", "regex-syntax 0.8.5", "rustc_version", - "syn 2.0.93", + "syn 2.0.94", ] [[package]] @@ -4865,7 +4893,7 @@ checksum = "ed3955f1a9c7c0c15e092f9c887db08b1fc683305fdf6eb6684f22555355e202" dependencies = [ "proc-macro2", "quote", - "syn 2.0.93", + "syn 2.0.94", ] [[package]] @@ -5295,7 +5323,7 @@ checksum = "3c0f5fad0874fc7abcd4d750e76917eaebbecaa2c20bde22e1dbeeba8beb758c" dependencies = [ "proc-macro2", "quote", - "syn 2.0.93", + "syn 2.0.94", ] [[package]] @@ -5420,7 +5448,7 @@ dependencies = [ "heck 0.5.0", "proc-macro2", "quote", - "syn 2.0.93", + "syn 2.0.94", ] [[package]] @@ -5489,7 +5517,7 @@ source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "479cf940fbbb3426c32c5d5176f62ad57549a0bb84773423ba8be9d089f5faba" dependencies = [ "proc-macro2", - "syn 2.0.93", + "syn 2.0.94", ] [[package]] @@ -5562,7 +5590,7 @@ source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "a65f2e60fbf1063868558d69c6beacf412dc755f9fc020f514b7955fc914fe30" dependencies = [ "quote", - "syn 2.0.93", + "syn 2.0.94", ] [[package]] @@ -5585,7 +5613,7 @@ checksum = "440f724eba9f6996b75d63681b0a92b06947f1457076d503a4d2e2c8f56442b8" dependencies = [ "proc-macro2", "quote", - "syn 2.0.93", + "syn 2.0.94", ] [[package]] @@ -5631,7 +5659,7 @@ dependencies = [ "prost", "prost-types", "regex", - "syn 2.0.93", + "syn 2.0.94", "tempfile", ] @@ -5645,7 +5673,7 @@ dependencies = [ "itertools 0.13.0", "proc-macro2", "quote", - "syn 2.0.93", + "syn 2.0.94", ] [[package]] @@ -5966,7 +5994,7 @@ checksum = "bcc303e793d3734489387d205e9b186fac9c6cfacedd98cbb2e8a5943595f3e6" dependencies = [ "proc-macro2", "quote", - "syn 2.0.93", + "syn 2.0.94", ] [[package]] @@ -6022,7 +6050,7 @@ dependencies = [ "quote", "refinery-core", "regex", - "syn 2.0.93", + "syn 2.0.94", ] [[package]] @@ -6615,7 +6643,7 @@ checksum = "5a9bf7cf98d04a2b28aead066b7496853d4779c9cc183c440dbac457641e19a0" dependencies = [ "proc-macro2", "quote", - "syn 2.0.93", + "syn 2.0.94", ] [[package]] @@ -6626,7 +6654,7 @@ checksum = "e578a843d40b4189a4d66bba51d7684f57da5bd7c304c64e14bd63efbef49509" dependencies = [ "proc-macro2", "quote", - "syn 2.0.93", + "syn 2.0.94", ] [[package]] @@ -6708,7 +6736,7 @@ dependencies = [ "darling", "proc-macro2", "quote", - "syn 2.0.93", + "syn 2.0.94", ] [[package]] @@ -6927,7 +6955,7 @@ dependencies = [ "proc-macro2", "quote", "structmeta-derive", - "syn 2.0.93", + "syn 2.0.94", ] [[package]] @@ -6938,7 +6966,7 @@ checksum = "152a0b65a590ff6c3da95cabe2353ee04e6167c896b28e3b14478c2636c922fc" dependencies = [ "proc-macro2", "quote", - "syn 2.0.93", + "syn 2.0.94", ] [[package]] @@ -6975,9 +7003,9 @@ dependencies = [ [[package]] name = "syn" -version = "2.0.93" +version = "2.0.94" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "9c786062daee0d6db1132800e623df74274a0a87322d8e183338e01b3d98d058" +checksum = "987bc0be1cdea8b10216bd06e2ca407d40b9543468fafd3ddfb02f36e77f71f3" dependencies = [ "proc-macro2", "quote", @@ -7001,7 +7029,7 @@ checksum = "c8af7666ab7b6390ab78131fb5b0fce11d6b7a6951602017c35fa82800708971" dependencies = [ "proc-macro2", "quote", - "syn 2.0.93", + "syn 2.0.94", ] [[package]] @@ -7102,7 +7130,7 @@ checksum = "e0e3d9676af494694e11a3e367a4bfa7f6d1d5566bd0fe9aceb4aa9281122ab8" dependencies = [ "proc-macro2", "quote", - "syn 2.0.93", + "syn 2.0.94", ] [[package]] @@ -7243,7 +7271,7 @@ dependencies = [ "prettyplease", "proc-macro2", "quote", - "syn 2.0.93", + "syn 2.0.94", ] [[package]] @@ -7277,7 +7305,7 @@ checksum = "5999e24eaa32083191ba4e425deb75cdf25efefabe5aaccb7446dd0d4122a3f5" dependencies = [ "proc-macro2", "quote", - "syn 2.0.93", + "syn 2.0.94", ] [[package]] @@ -7289,7 +7317,7 @@ dependencies = [ "proc-macro2", "quote", "structmeta", - "syn 2.0.93", + "syn 2.0.94", ] [[package]] @@ -7327,7 +7355,7 @@ checksum = "4fee6c4efc90059e10f81e6d42c60a18f76588c3d74cb83a0b242a2b6c7504c1" dependencies = [ "proc-macro2", "quote", - "syn 2.0.93", + "syn 2.0.94", ] [[package]] @@ -7338,7 +7366,7 @@ checksum = "7b50fa271071aae2e6ee85f842e2e28ba8cd2c5fb67f11fcb1fd70b276f9e7d4" dependencies = [ "proc-macro2", "quote", - "syn 2.0.93", + "syn 2.0.94", ] [[package]] @@ -7443,7 +7471,7 @@ checksum = "693d596312e88961bc67d7f1f97af8a70227d9f90c31bba5806eec004978d752" dependencies = [ "proc-macro2", "quote", - "syn 2.0.93", + "syn 2.0.94", ] [[package]] @@ -7629,7 +7657,7 @@ dependencies = [ "prost-build", "prost-types", "quote", - "syn 2.0.93", + "syn 2.0.94", ] [[package]] @@ -7742,7 +7770,7 @@ checksum = "395ae124c09f9e6918a2310af6038fba074bcf474ac352496d5910dd59a2226d" dependencies = [ "proc-macro2", "quote", - "syn 2.0.93", + "syn 2.0.94", ] [[package]] @@ -7858,7 +7886,7 @@ checksum = "70977707304198400eb4835a78f6a9f928bf41bba420deb8fdb175cd965d77a7" dependencies = [ "proc-macro2", "quote", - "syn 2.0.93", + "syn 2.0.94", ] [[package]] @@ -7904,7 +7932,7 @@ dependencies = [ "proc-macro2", "quote", "serde_derive_internals", - "syn 2.0.93", + "syn 2.0.94", ] [[package]] @@ -7920,7 +7948,7 @@ dependencies = [ "hash-codec", "hash-graph-test-data", "iso8601-duration", - "itertools 0.13.0", + "itertools 0.14.0", "postgres-types", "pretty_assertions", "regex", @@ -7969,7 +7997,7 @@ checksum = "70b20a22c42c8f1cd23ce5e34f165d4d37038f5b663ad20fb6adbdf029172483" dependencies = [ "proc-macro2", "quote", - "syn 2.0.93", + "syn 2.0.94", ] [[package]] @@ -8147,7 +8175,7 @@ dependencies = [ "proc-macro-error", "proc-macro2", "quote", - "syn 2.0.93", + "syn 2.0.94", "url", "uuid", ] @@ -8284,7 +8312,7 @@ dependencies = [ "log", "proc-macro2", "quote", - "syn 2.0.93", + "syn 2.0.94", "wasm-bindgen-shared", ] @@ -8319,7 +8347,7 @@ checksum = "30d7a95b763d3c45903ed6c81f156801839e5ee968bb07e534c44df0fcd330c2" dependencies = [ "proc-macro2", "quote", - "syn 2.0.93", + "syn 2.0.94", "wasm-bindgen-backend", "wasm-bindgen-shared", ] @@ -8352,7 +8380,7 @@ checksum = "54171416ce73aa0b9c377b51cc3cb542becee1cd678204812e8392e5b0e4a031" dependencies = [ "proc-macro2", "quote", - "syn 2.0.93", + "syn 2.0.94", ] [[package]] @@ -8818,7 +8846,7 @@ checksum = "fa4f8080344d4671fb4e831a13ad1e68092748387dfc4f55e356242fae12ce3e" dependencies = [ "proc-macro2", "quote", - "syn 2.0.93", + "syn 2.0.94", ] [[package]] @@ -8838,7 +8866,7 @@ checksum = "ce36e65b0d2999d2aafac989fb249189a141aee1f53c612c1f37d72631959f69" dependencies = [ "proc-macro2", "quote", - "syn 2.0.93", + "syn 2.0.94", ] [[package]] diff --git a/Cargo.toml b/Cargo.toml index e7c1240db1b..1a2f9ad3ccd 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -212,7 +212,7 @@ sha2 = { version = "=0.10.8", default-features = false } similar-asserts = { version = "=1.6.0", default-features = false } supports-color = { version = "=3.0.2", default-features = false } supports-unicode = { version = "=3.0.0", default-features = false } -syn = { version = "=2.0.93", default-features = false } +syn = { version = "=2.0.94", default-features = false } tachyonix = { version = "=0.3.1", default-features = false } tarpc = { version = "=0.35.0", default-features = false } temporal-client = { git = "https://github.com/temporalio/sdk-core", rev = "4a2368d" } From c5704ea55e37f1c445c191d48445c7709377ff4d Mon Sep 17 00:00:00 2001 From: "hash-worker[bot]" <180894564+hash-worker[bot]@users.noreply.github.com> Date: Thu, 2 Jan 2025 08:28:03 +0000 Subject: [PATCH 136/159] Update GitHub Action `taiki-e/install-action` to v2.47.3 (#6043) Co-authored-by: hash-worker[bot] <180894564+hash-worker[bot]@users.noreply.github.com> --- .github/actions/warm-up-repo/action.yml | 2 +- .github/workflows/bench.yml | 4 ++-- .github/workflows/lint.yml | 2 +- .github/workflows/test.yml | 4 ++-- 4 files changed, 6 insertions(+), 6 deletions(-) diff --git a/.github/actions/warm-up-repo/action.yml b/.github/actions/warm-up-repo/action.yml index caf5754a16c..b92e5785028 100644 --- a/.github/actions/warm-up-repo/action.yml +++ b/.github/actions/warm-up-repo/action.yml @@ -17,7 +17,7 @@ runs: # cache: yarn ## Currently disabled because of frequent timeouts - name: Install WASM tools - uses: taiki-e/install-action@dbc32cd89278f24bd864023c3340ac21971f0bec # v2.47.2 + uses: taiki-e/install-action@716fb8f756560d6f767650920c8ff20aad9bd48c # v2.47.3 with: tool: wasm-pack@0.12.1 diff --git a/.github/workflows/bench.yml b/.github/workflows/bench.yml index 2dad9b9a740..44c78bd0bf6 100644 --- a/.github/workflows/bench.yml +++ b/.github/workflows/bench.yml @@ -99,7 +99,7 @@ jobs: - name: Install Rust tools if: steps.benches.outputs.has-rust == 'true' - uses: taiki-e/install-action@dbc32cd89278f24bd864023c3340ac21971f0bec # v2.47.2 + uses: taiki-e/install-action@716fb8f756560d6f767650920c8ff20aad9bd48c # v2.47.3 with: tool: just@1.34.0,critcmp@0.1.8 @@ -251,7 +251,7 @@ jobs: - name: Install Rust tools if: steps.benches.outputs.has-rust == 'true' - uses: taiki-e/install-action@dbc32cd89278f24bd864023c3340ac21971f0bec # v2.47.2 + uses: taiki-e/install-action@716fb8f756560d6f767650920c8ff20aad9bd48c # v2.47.3 with: tool: just@1.34.0,critcmp@0.1.8 diff --git a/.github/workflows/lint.yml b/.github/workflows/lint.yml index 6336dad62ec..acbedbe5f6f 100644 --- a/.github/workflows/lint.yml +++ b/.github/workflows/lint.yml @@ -111,7 +111,7 @@ jobs: - name: Install Rust tools if: always() && steps.lints.outputs.has-rust == 'true' - uses: taiki-e/install-action@dbc32cd89278f24bd864023c3340ac21971f0bec # v2.47.2 + uses: taiki-e/install-action@716fb8f756560d6f767650920c8ff20aad9bd48c # v2.47.3 with: tool: just@1.34.0,cargo-hack@0.6.30,clippy-sarif@0.6.5,sarif-fmt@0.6.5 diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index da266e92904..a15f9f1c088 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -163,7 +163,7 @@ jobs: - name: Install Rust tools if: always() && steps.tests.outputs.has-rust == 'true' - uses: taiki-e/install-action@dbc32cd89278f24bd864023c3340ac21971f0bec # v2.47.2 + uses: taiki-e/install-action@716fb8f756560d6f767650920c8ff20aad9bd48c # v2.47.3 with: tool: just@1.34.0,cargo-hack@0.6.30,cargo-nextest@0.9.72,cargo-llvm-cov@0.6.11 @@ -281,7 +281,7 @@ jobs: - name: Install Rust tools if: steps.tests.outputs.has-rust == 'true' - uses: taiki-e/install-action@dbc32cd89278f24bd864023c3340ac21971f0bec # v2.47.2 + uses: taiki-e/install-action@716fb8f756560d6f767650920c8ff20aad9bd48c # v2.47.3 with: tool: just@1.34.0,cargo-hack@0.6.30,cargo-nextest@0.9.72,cargo-llvm-cov@0.6.11 From a42480d9f97753370f6633c7564f7d8e5361f8f1 Mon Sep 17 00:00:00 2001 From: "hash-worker[bot]" <180894564+hash-worker[bot]@users.noreply.github.com> Date: Fri, 3 Jan 2025 01:39:54 +0000 Subject: [PATCH 137/159] Update Rust crate `quote` to v1.0.38 (#6006) Co-authored-by: hash-worker[bot] <180894564+hash-worker[bot]@users.noreply.github.com> --- Cargo.lock | 4 ++-- Cargo.toml | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index c35452bf4d9..17e25f976ce 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -5834,9 +5834,9 @@ dependencies = [ [[package]] name = "quote" -version = "1.0.37" +version = "1.0.38" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "b5b9d34b8991d19d98081b46eacdd8eb58c6f2b201139f7c5f643cc155a633af" +checksum = "0e4dccaaaf89514f546c693ddc140f729f958c247918a13380cccc6078391acc" dependencies = [ "proc-macro2", ] diff --git a/Cargo.toml b/Cargo.toml index 1a2f9ad3ccd..b9dec6c0e8a 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -199,7 +199,7 @@ pretty_assertions = { version = "=1.4.1", default-features = false, featu proc-macro-error2 = { version = "=2.0.1", default-features = false } proc-macro2 = { version = "=1.0.92", default-features = false } proptest = { version = "=1.6.0", default-features = false, features = ["alloc", "std"] } # `std` or `no_std` are required, `no_std` pulls in `libm` -quote = { version = "=1.0.37", default-features = false } +quote = { version = "=1.0.38", default-features = false } rand = { version = "=0.8.5", default-features = false } refinery = { version = "=0.8.14", default-features = false } rustc_version = { version = "=0.4.1", default-features = false } From a2c9c005324c0365618018447410ae8b936086ba Mon Sep 17 00:00:00 2001 From: "hash-worker[bot]" <180894564+hash-worker[bot]@users.noreply.github.com> Date: Fri, 3 Jan 2025 01:52:33 +0000 Subject: [PATCH 138/159] Update Rust toolchains to nightly-2024-12-30 (#6030) Co-authored-by: hash-worker[bot] <180894564+hash-worker[bot]@users.noreply.github.com> Co-authored-by: Tim Diekmann --- libs/@local/repo-chores/rust/bin/cli/subcommand/benches/mod.rs | 2 +- libs/antsi/rust-toolchain.toml | 2 +- libs/deer/rust-toolchain.toml | 2 +- libs/error-stack/README.md | 2 +- libs/error-stack/macros/README.md | 2 +- libs/error-stack/rust-toolchain.toml | 2 +- libs/error-stack/src/lib.rs | 2 +- libs/sarif/rust-toolchain.toml | 2 +- libs/sarif/src/lib.rs | 1 + rust-toolchain.toml | 2 +- 10 files changed, 10 insertions(+), 9 deletions(-) diff --git a/libs/@local/repo-chores/rust/bin/cli/subcommand/benches/mod.rs b/libs/@local/repo-chores/rust/bin/cli/subcommand/benches/mod.rs index 5a71e058302..8ced326d8d5 100644 --- a/libs/@local/repo-chores/rust/bin/cli/subcommand/benches/mod.rs +++ b/libs/@local/repo-chores/rust/bin/cli/subcommand/benches/mod.rs @@ -51,7 +51,7 @@ pub(crate) struct Args { pub(super) async fn run(args: Args) -> Result<(), Box> { match args.subcommand { - Subcommand::Analyze(args) => analyze::run(args).map_err(Into::into), + Subcommand::Analyze(args) => analyze::run(args), Subcommand::Upload(args) => upload::run(args).await, } } diff --git a/libs/antsi/rust-toolchain.toml b/libs/antsi/rust-toolchain.toml index 5791aacb4cb..098a1ba72f4 100644 --- a/libs/antsi/rust-toolchain.toml +++ b/libs/antsi/rust-toolchain.toml @@ -1,3 +1,3 @@ [toolchain] -channel = "nightly-2024-12-23" +channel = "nightly-2024-12-30" components = ['rustfmt', 'clippy', 'llvm-tools-preview', 'rust-analyzer', 'rustc-codegen-cranelift-preview'] diff --git a/libs/deer/rust-toolchain.toml b/libs/deer/rust-toolchain.toml index 4e6bbb199b4..5f2a6bdc758 100644 --- a/libs/deer/rust-toolchain.toml +++ b/libs/deer/rust-toolchain.toml @@ -1,3 +1,3 @@ [toolchain] -channel = "nightly-2024-12-23" +channel = "nightly-2024-12-30" components = ['rustfmt', 'clippy', 'llvm-tools-preview', 'miri', 'rust-analyzer', 'rustc-codegen-cranelift-preview'] diff --git a/libs/error-stack/README.md b/libs/error-stack/README.md index 9924336b7dd..37f3d191e6d 100644 --- a/libs/error-stack/README.md +++ b/libs/error-stack/README.md @@ -7,7 +7,7 @@ [![crates.io](https://img.shields.io/crates/v/error-stack)][crates.io] [![libs.rs](https://img.shields.io/badge/libs.rs-error--stack-orange)][libs.rs] -[![rust-version](https://img.shields.io/static/v1?label=Rust&message=1.83.0/nightly-2024-12-23&color=blue)][rust-version] +[![rust-version](https://img.shields.io/static/v1?label=Rust&message=1.83.0/nightly-2024-12-30&color=blue)][rust-version] [![documentation](https://img.shields.io/docsrs/error-stack)][documentation] [![license](https://img.shields.io/crates/l/error-stack)][license] diff --git a/libs/error-stack/macros/README.md b/libs/error-stack/macros/README.md index 1deb0c38199..08593705b92 100644 --- a/libs/error-stack/macros/README.md +++ b/libs/error-stack/macros/README.md @@ -6,7 +6,7 @@ [![crates.io](https://img.shields.io/crates/v/error-stack-macros)][crates.io] [![libs.rs](https://img.shields.io/badge/libs.rs-error--stack--macros-orange)][libs.rs] -[![rust-version](https://img.shields.io/static/v1?label=Rust&message=1.83.0/nightly-2024-12-23&color=blue)][rust-version] +[![rust-version](https://img.shields.io/static/v1?label=Rust&message=1.83.0/nightly-2024-12-30&color=blue)][rust-version] [![documentation](https://img.shields.io/docsrs/error-stack-macros)][documentation] [![license](https://img.shields.io/crates/l/error-stack)][license] diff --git a/libs/error-stack/rust-toolchain.toml b/libs/error-stack/rust-toolchain.toml index 507fa516bb1..8ab93067fc6 100644 --- a/libs/error-stack/rust-toolchain.toml +++ b/libs/error-stack/rust-toolchain.toml @@ -1,4 +1,4 @@ [toolchain] # Please also update the badges in `README.md`s (`error-stack` and `error-stack-macros`), and `src/lib.rs` -channel = "nightly-2024-12-23" +channel = "nightly-2024-12-30" components = ['rustfmt', 'clippy', 'llvm-tools-preview', 'miri', 'rust-src', 'rust-analyzer', 'rustc-codegen-cranelift-preview'] diff --git a/libs/error-stack/src/lib.rs b/libs/error-stack/src/lib.rs index ed9d65f769b..a331db61be1 100644 --- a/libs/error-stack/src/lib.rs +++ b/libs/error-stack/src/lib.rs @@ -2,7 +2,7 @@ //! //! [![crates.io](https://img.shields.io/crates/v/error-stack)][crates.io] //! [![libs.rs](https://img.shields.io/badge/libs.rs-error--stack-orange)][libs.rs] -//! [![rust-version](https://img.shields.io/static/v1?label=Rust&message=1.83.0/nightly-2024-12-23&color=blue)][rust-version] +//! [![rust-version](https://img.shields.io/static/v1?label=Rust&message=1.83.0/nightly-2024-12-30&color=blue)][rust-version] //! //! [crates.io]: https://crates.io/crates/error-stack //! [libs.rs]: https://lib.rs/crates/error-stack diff --git a/libs/sarif/rust-toolchain.toml b/libs/sarif/rust-toolchain.toml index 5791aacb4cb..098a1ba72f4 100644 --- a/libs/sarif/rust-toolchain.toml +++ b/libs/sarif/rust-toolchain.toml @@ -1,3 +1,3 @@ [toolchain] -channel = "nightly-2024-12-23" +channel = "nightly-2024-12-30" components = ['rustfmt', 'clippy', 'llvm-tools-preview', 'rust-analyzer', 'rustc-codegen-cranelift-preview'] diff --git a/libs/sarif/src/lib.rs b/libs/sarif/src/lib.rs index 0b4a537ab32..d6e6c0d0fa3 100644 --- a/libs/sarif/src/lib.rs +++ b/libs/sarif/src/lib.rs @@ -4,6 +4,7 @@ reason = "conditionally including docs resulting in false positives. We want to globally \ apply the lint as soon as possible." )] +#![feature(coverage_attribute)] #![cfg_attr( doc, feature(doc_auto_cfg), diff --git a/rust-toolchain.toml b/rust-toolchain.toml index 4e6bbb199b4..5f2a6bdc758 100644 --- a/rust-toolchain.toml +++ b/rust-toolchain.toml @@ -1,3 +1,3 @@ [toolchain] -channel = "nightly-2024-12-23" +channel = "nightly-2024-12-30" components = ['rustfmt', 'clippy', 'llvm-tools-preview', 'miri', 'rust-analyzer', 'rustc-codegen-cranelift-preview'] From 9a0e2a6e7d497d7c81dd249fa0b89e4d243c70fd Mon Sep 17 00:00:00 2001 From: "hash-worker[bot]" <180894564+hash-worker[bot]@users.noreply.github.com> Date: Sat, 4 Jan 2025 00:46:17 +0000 Subject: [PATCH 139/159] Update Rust crate `async-trait` to v0.1.84 (#6046) Co-authored-by: hash-worker[bot] <180894564+hash-worker[bot]@users.noreply.github.com> --- Cargo.lock | 6 +++--- Cargo.toml | 2 +- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index 17e25f976ce..1448af3c284 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -352,9 +352,9 @@ dependencies = [ [[package]] name = "async-trait" -version = "0.1.83" +version = "0.1.84" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "721cae7de5c34fbb2acd27e21e6d2cf7b886dce0c27388d46c4e6c47ea4318dd" +checksum = "1b1244b10dcd56c92219da4e14caa97e312079e185f04ba3eea25061561dc0a0" dependencies = [ "proc-macro2", "quote", @@ -5249,7 +5249,7 @@ dependencies = [ "console_error_panic_hook", "console_log", "image", - "itertools 0.13.0", + "itertools 0.14.0", "js-sys", "libloading", "log", diff --git a/Cargo.toml b/Cargo.toml index b9dec6c0e8a..31a510de2a4 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -154,7 +154,7 @@ anstyle = { version = "=1.0.10", default-features = false } anstyle-yansi = { version = "=2.0.2", default-features = false } approx = { version = "=0.5.1", default-features = false } async-scoped = { version = "=0.9.0", default-features = false } -async-trait = { version = "=0.1.83", default-features = false } +async-trait = { version = "=0.1.84", default-features = false } aws-config = { version = "=1.5.12" } aws-sdk-s3 = { version = "=1.67.0", default-features = false } bitvec = { version = "=1.0.1", default-features = false } From 178fea903d7cebf7ed0f07d2026e1af25fc3fadb Mon Sep 17 00:00:00 2001 From: "hash-worker[bot]" <180894564+hash-worker[bot]@users.noreply.github.com> Date: Sat, 4 Jan 2025 00:46:19 +0000 Subject: [PATCH 140/159] Update GitHub Action `taiki-e/install-action` to v2.47.7 (#6045) Co-authored-by: hash-worker[bot] <180894564+hash-worker[bot]@users.noreply.github.com> --- .github/actions/warm-up-repo/action.yml | 2 +- .github/workflows/bench.yml | 4 ++-- .github/workflows/lint.yml | 2 +- .github/workflows/test.yml | 4 ++-- 4 files changed, 6 insertions(+), 6 deletions(-) diff --git a/.github/actions/warm-up-repo/action.yml b/.github/actions/warm-up-repo/action.yml index b92e5785028..764e44cbb58 100644 --- a/.github/actions/warm-up-repo/action.yml +++ b/.github/actions/warm-up-repo/action.yml @@ -17,7 +17,7 @@ runs: # cache: yarn ## Currently disabled because of frequent timeouts - name: Install WASM tools - uses: taiki-e/install-action@716fb8f756560d6f767650920c8ff20aad9bd48c # v2.47.3 + uses: taiki-e/install-action@a86da1a3cb51967612c80d6dc98c5cac03a73025 # v2.47.7 with: tool: wasm-pack@0.12.1 diff --git a/.github/workflows/bench.yml b/.github/workflows/bench.yml index 44c78bd0bf6..f9db03b2cbe 100644 --- a/.github/workflows/bench.yml +++ b/.github/workflows/bench.yml @@ -99,7 +99,7 @@ jobs: - name: Install Rust tools if: steps.benches.outputs.has-rust == 'true' - uses: taiki-e/install-action@716fb8f756560d6f767650920c8ff20aad9bd48c # v2.47.3 + uses: taiki-e/install-action@a86da1a3cb51967612c80d6dc98c5cac03a73025 # v2.47.7 with: tool: just@1.34.0,critcmp@0.1.8 @@ -251,7 +251,7 @@ jobs: - name: Install Rust tools if: steps.benches.outputs.has-rust == 'true' - uses: taiki-e/install-action@716fb8f756560d6f767650920c8ff20aad9bd48c # v2.47.3 + uses: taiki-e/install-action@a86da1a3cb51967612c80d6dc98c5cac03a73025 # v2.47.7 with: tool: just@1.34.0,critcmp@0.1.8 diff --git a/.github/workflows/lint.yml b/.github/workflows/lint.yml index acbedbe5f6f..382b802b7f3 100644 --- a/.github/workflows/lint.yml +++ b/.github/workflows/lint.yml @@ -111,7 +111,7 @@ jobs: - name: Install Rust tools if: always() && steps.lints.outputs.has-rust == 'true' - uses: taiki-e/install-action@716fb8f756560d6f767650920c8ff20aad9bd48c # v2.47.3 + uses: taiki-e/install-action@a86da1a3cb51967612c80d6dc98c5cac03a73025 # v2.47.7 with: tool: just@1.34.0,cargo-hack@0.6.30,clippy-sarif@0.6.5,sarif-fmt@0.6.5 diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index a15f9f1c088..1c4aa9946df 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -163,7 +163,7 @@ jobs: - name: Install Rust tools if: always() && steps.tests.outputs.has-rust == 'true' - uses: taiki-e/install-action@716fb8f756560d6f767650920c8ff20aad9bd48c # v2.47.3 + uses: taiki-e/install-action@a86da1a3cb51967612c80d6dc98c5cac03a73025 # v2.47.7 with: tool: just@1.34.0,cargo-hack@0.6.30,cargo-nextest@0.9.72,cargo-llvm-cov@0.6.11 @@ -281,7 +281,7 @@ jobs: - name: Install Rust tools if: steps.tests.outputs.has-rust == 'true' - uses: taiki-e/install-action@716fb8f756560d6f767650920c8ff20aad9bd48c # v2.47.3 + uses: taiki-e/install-action@a86da1a3cb51967612c80d6dc98c5cac03a73025 # v2.47.7 with: tool: just@1.34.0,cargo-hack@0.6.30,cargo-nextest@0.9.72,cargo-llvm-cov@0.6.11 From 87999a0bda4e443d7840a4ed161ef9d512e13bfc Mon Sep 17 00:00:00 2001 From: "hash-worker[bot]" <180894564+hash-worker[bot]@users.noreply.github.com> Date: Sat, 4 Jan 2025 01:53:33 +0000 Subject: [PATCH 141/159] Update Rust crate `winnow` to v0.6.22 (#6047) Co-authored-by: hash-worker[bot] <180894564+hash-worker[bot]@users.noreply.github.com> --- Cargo.lock | 4 ++-- Cargo.toml | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index 1448af3c284..f043107b39d 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -8706,9 +8706,9 @@ checksum = "589f6da84c646204747d1270a2a5661ea66ed1cced2631d546fdfb155959f9ec" [[package]] name = "winnow" -version = "0.6.21" +version = "0.6.22" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "e6f5bb5257f2407a5425c6e749bfd9692192a73e70a6060516ac04f889087d68" +checksum = "39281189af81c07ec09db316b302a3e67bf9bd7cbf6c820b50e35fee9c2fa980" dependencies = [ "memchr", ] diff --git a/Cargo.toml b/Cargo.toml index 31a510de2a4..c5cf9dc865a 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -235,7 +235,7 @@ tsify = { version = "=0.4.5", default-features = false } unicode-ident = { version = "=1.0.14", default-features = false } virtue = { version = "=0.0.18", default-features = false } walkdir = { version = "=2.5.0", default-features = false } -winnow = { version = "=0.6.21", default-features = false } +winnow = { version = "=0.6.22", default-features = false } [profile.dev] codegen-backend = "cranelift" From 6bee468cad21fbae465083cb86088c6f886b2d84 Mon Sep 17 00:00:00 2001 From: "hash-worker[bot]" <180894564+hash-worker[bot]@users.noreply.github.com> Date: Sat, 4 Jan 2025 01:58:41 +0000 Subject: [PATCH 142/159] Update aws-sdk-rust monorepo (#6048) Co-authored-by: hash-worker[bot] <180894564+hash-worker[bot]@users.noreply.github.com> --- Cargo.lock | 24 ++++++++++++------------ Cargo.toml | 4 ++-- 2 files changed, 14 insertions(+), 14 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index f043107b39d..e4cb2c2af93 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -422,9 +422,9 @@ dependencies = [ [[package]] name = "aws-config" -version = "1.5.12" +version = "1.5.13" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "649316840239f4e58df0b7f620c428f5fababbbca2d504488c641534050bd141" +checksum = "c03a50b30228d3af8865ce83376b4e99e1ffa34728220fe2860e4df0bb5278d6" dependencies = [ "aws-credential-types", "aws-runtime", @@ -464,9 +464,9 @@ dependencies = [ [[package]] name = "aws-runtime" -version = "1.5.2" +version = "1.5.3" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "44f6f1124d6e19ab6daf7f2e615644305dc6cb2d706892a8a8c0b98db35de020" +checksum = "b16d1aa50accc11a4b4d5c50f7fb81cc0cf60328259c587d0e6b0f11385bde46" dependencies = [ "aws-credential-types", "aws-sigv4", @@ -490,9 +490,9 @@ dependencies = [ [[package]] name = "aws-sdk-s3" -version = "1.67.0" +version = "1.68.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "bbc644164269a1e38ce7f2f7373629d3fb3d310c0e3feb5573a29744288b24d3" +checksum = "bc5ddf1dc70287dc9a2f953766a1fe15e3e74aef02fd1335f2afa475c9b4f4fc" dependencies = [ "aws-credential-types", "aws-runtime", @@ -524,9 +524,9 @@ dependencies = [ [[package]] name = "aws-sdk-sso" -version = "1.52.0" +version = "1.53.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "cb25f7129c74d36afe33405af4517524df8f74b635af8c2c8e91c1552b8397b2" +checksum = "1605dc0bf9f0a4b05b451441a17fcb0bda229db384f23bf5cead3adbab0664ac" dependencies = [ "aws-credential-types", "aws-runtime", @@ -546,9 +546,9 @@ dependencies = [ [[package]] name = "aws-sdk-ssooidc" -version = "1.53.0" +version = "1.54.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "d03a3d5ef14851625eafd89660a751776f938bf32f309308b20dcca41c44b568" +checksum = "59f3f73466ff24f6ad109095e0f3f2c830bfb4cd6c8b12f744c8e61ebf4d3ba1" dependencies = [ "aws-credential-types", "aws-runtime", @@ -568,9 +568,9 @@ dependencies = [ [[package]] name = "aws-sdk-sts" -version = "1.53.0" +version = "1.54.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "cf3a9f073ae3a53b54421503063dfb87ff1ea83b876f567d92e8b8d9942ba91b" +checksum = "249b2acaa8e02fd4718705a9494e3eb633637139aa4bb09d70965b0448e865db" dependencies = [ "aws-credential-types", "aws-runtime", diff --git a/Cargo.toml b/Cargo.toml index c5cf9dc865a..55a422a109f 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -155,8 +155,8 @@ anstyle-yansi = { version = "=2.0.2", default-features = false } approx = { version = "=0.5.1", default-features = false } async-scoped = { version = "=0.9.0", default-features = false } async-trait = { version = "=0.1.84", default-features = false } -aws-config = { version = "=1.5.12" } -aws-sdk-s3 = { version = "=1.67.0", default-features = false } +aws-config = { version = "=1.5.13" } +aws-sdk-s3 = { version = "=1.68.0", default-features = false } bitvec = { version = "=1.0.1", default-features = false } bytes-utils = { version = "=0.1.4", default-features = false } clap = { version = "=4.5.23", features = ["color", "error-context", "help", "std", "suggestions", "usage"] } From 920a876327bd118291a1b3562aeb07211ac5c714 Mon Sep 17 00:00:00 2001 From: "hash-worker[bot]" <180894564+hash-worker[bot]@users.noreply.github.com> Date: Sat, 4 Jan 2025 08:29:55 +0000 Subject: [PATCH 143/159] Update npm package `@types/lodash` to v4.17.14 (#6049) Co-authored-by: hash-worker[bot] <180894564+hash-worker[bot]@users.noreply.github.com> --- apps/hash-api/package.json | 2 +- apps/hash-frontend/package.json | 2 +- blocks/embed/package.json | 2 +- yarn.lock | 14 +++++++------- 4 files changed, 10 insertions(+), 10 deletions(-) diff --git a/apps/hash-api/package.json b/apps/hash-api/package.json index 2a07b2b426c..cf1dbda311a 100644 --- a/apps/hash-api/package.json +++ b/apps/hash-api/package.json @@ -118,7 +118,7 @@ "@types/express-http-proxy": "1.6.6", "@types/html-to-text": "8.1.1", "@types/jsonpath": "0.2.4", - "@types/lodash": "4.17.13", + "@types/lodash": "4.17.14", "@types/mailchimp__mailchimp_marketing": "3.0.21", "@types/md5": "2.3.5", "@types/mime-types": "2.1.4", diff --git a/apps/hash-frontend/package.json b/apps/hash-frontend/package.json index 9bdb235e0bf..31556ce8e1f 100644 --- a/apps/hash-frontend/package.json +++ b/apps/hash-frontend/package.json @@ -139,7 +139,7 @@ "@types/google.picker": "0.0.47", "@types/iframe-resizer": "3.5.13", "@types/jsonpath": "0.2.4", - "@types/lodash": "4.17.13", + "@types/lodash": "4.17.14", "@types/papaparse": "5.3.15", "@types/react": "19.0.1", "@types/react-beautiful-dnd": "13.1.8", diff --git a/blocks/embed/package.json b/blocks/embed/package.json index a5e6dda7a66..94103f8bc3a 100644 --- a/blocks/embed/package.json +++ b/blocks/embed/package.json @@ -32,7 +32,7 @@ "devDependencies": { "@local/eslint": "0.0.0-private", "@local/tsconfig": "0.0.0-private", - "@types/lodash": "4.17.13", + "@types/lodash": "4.17.14", "@types/react-dom": "19.0.2", "block-scripts": "0.0.14", "eslint": "9.17.0", diff --git a/yarn.lock b/yarn.lock index cc4ae9a606a..d08dfe918d4 100644 --- a/yarn.lock +++ b/yarn.lock @@ -393,7 +393,7 @@ __metadata: "@types/express-http-proxy": "npm:1.6.6" "@types/html-to-text": "npm:8.1.1" "@types/jsonpath": "npm:0.2.4" - "@types/lodash": "npm:4.17.13" + "@types/lodash": "npm:4.17.14" "@types/mailchimp__mailchimp_marketing": "npm:3.0.21" "@types/md5": "npm:2.3.5" "@types/mime-types": "npm:2.1.4" @@ -519,7 +519,7 @@ __metadata: "@types/google.picker": "npm:0.0.47" "@types/iframe-resizer": "npm:3.5.13" "@types/jsonpath": "npm:0.2.4" - "@types/lodash": "npm:4.17.13" + "@types/lodash": "npm:4.17.14" "@types/papaparse": "npm:5.3.15" "@types/prismjs": "npm:1.26.5" "@types/react": "npm:19.0.1" @@ -4881,7 +4881,7 @@ __metadata: dependencies: "@local/eslint": "npm:0.0.0-private" "@local/tsconfig": "npm:0.0.0-private" - "@types/lodash": "npm:4.17.13" + "@types/lodash": "npm:4.17.14" "@types/react-dom": "npm:19.0.2" block-scripts: "npm:0.0.14" blockprotocol: "patch:blockprotocol@npm%3A0.0.12#~/.yarn/patches/blockprotocol-npm-0.0.12-2558a31f0a.patch" @@ -18049,10 +18049,10 @@ __metadata: languageName: node linkType: hard -"@types/lodash@npm:*, @types/lodash@npm:4.17.13, @types/lodash@npm:^4.14.149, @types/lodash@npm:^4.14.167, @types/lodash@npm:^4.14.182, @types/lodash@npm:^4.17.13, @types/lodash@npm:^4.17.7": - version: 4.17.13 - resolution: "@types/lodash@npm:4.17.13" - checksum: 10c0/c3d0b7efe7933ac0369b99f2f7bff9240d960680fdb74b41ed4bd1b3ca60cca1e31fe4046d9abbde778f941a41bc2a75eb629abf8659fa6c27b66efbbb0802a9 +"@types/lodash@npm:*, @types/lodash@npm:4.17.14, @types/lodash@npm:^4.14.149, @types/lodash@npm:^4.14.167, @types/lodash@npm:^4.14.182, @types/lodash@npm:^4.17.13, @types/lodash@npm:^4.17.7": + version: 4.17.14 + resolution: "@types/lodash@npm:4.17.14" + checksum: 10c0/343c6f722e0b39969036a885ad5aad6578479ead83987128c9b994e6b7f2fb9808244d802d4d332396bb09096f720a6c7060de16a492f5460e06a44560360322 languageName: node linkType: hard From f4bb3bed81c07c1737cc806625baec4cdbba4428 Mon Sep 17 00:00:00 2001 From: "hash-worker[bot]" <180894564+hash-worker[bot]@users.noreply.github.com> Date: Sat, 4 Jan 2025 08:31:38 +0000 Subject: [PATCH 144/159] Update npm package `@types/node` to v22.10.5 (#6050) Co-authored-by: hash-worker[bot] <180894564+hash-worker[bot]@users.noreply.github.com> --- apps/hash-ai-worker-ts/package.json | 2 +- apps/hash-realtime/package.json | 2 +- apps/hash-search-loader/package.json | 2 +- apps/hashdotdev/package.json | 2 +- libs/@blockprotocol/graph/package.json | 2 +- .../type-system/typescript/package.json | 2 +- libs/@local/eslint/package.json | 2 +- .../graph/client/typescript/package.json | 2 +- .../harpc/client/typescript/package.json | 2 +- libs/@local/hash-backend-utils/package.json | 2 +- .../@local/hash-isomorphic-utils/package.json | 2 +- .../typescript/package.json | 2 +- libs/@local/status/typescript/package.json | 2 +- yarn.lock | 34 +++++++++---------- 14 files changed, 30 insertions(+), 30 deletions(-) diff --git a/apps/hash-ai-worker-ts/package.json b/apps/hash-ai-worker-ts/package.json index 1486f5408d8..a88fb85e236 100644 --- a/apps/hash-ai-worker-ts/package.json +++ b/apps/hash-ai-worker-ts/package.json @@ -106,7 +106,7 @@ "@types/lodash.pickby": "4.6.9", "@types/md5": "2.3.5", "@types/mime-types": "2.1.4", - "@types/node": "22.10.3", + "@types/node": "22.10.5", "@types/papaparse": "5.3.15", "@types/sanitize-html": "2.13.0", "@vitest/coverage-istanbul": "2.1.8", diff --git a/apps/hash-realtime/package.json b/apps/hash-realtime/package.json index 3db9e301ca4..9142b99b3d6 100644 --- a/apps/hash-realtime/package.json +++ b/apps/hash-realtime/package.json @@ -24,7 +24,7 @@ "devDependencies": { "@local/eslint": "0.0.0-private", "@local/tsconfig": "0.0.0-private", - "@types/node": "22.10.3", + "@types/node": "22.10.5", "@types/set-interval-async": "1.0.3", "eslint": "9.17.0", "typescript": "5.7.2" diff --git a/apps/hash-search-loader/package.json b/apps/hash-search-loader/package.json index 19b1bb0dad2..e8da926a45b 100644 --- a/apps/hash-search-loader/package.json +++ b/apps/hash-search-loader/package.json @@ -24,7 +24,7 @@ "devDependencies": { "@local/eslint": "0.0.0-private", "@local/tsconfig": "0.0.0-private", - "@types/node": "22.10.3", + "@types/node": "22.10.5", "eslint": "9.17.0", "typescript": "5.7.2" } diff --git a/apps/hashdotdev/package.json b/apps/hashdotdev/package.json index 0d113e506e6..e1a5e0cf435 100644 --- a/apps/hashdotdev/package.json +++ b/apps/hashdotdev/package.json @@ -72,7 +72,7 @@ "@types/gtag.js": "0.0.20", "@types/html-to-text": "9.0.4", "@types/md5": "2.3.5", - "@types/node": "22.10.3", + "@types/node": "22.10.5", "@types/prismjs": "1.26.5", "@types/react": "19.0.1", "@types/react-dom": "19.0.2", diff --git a/libs/@blockprotocol/graph/package.json b/libs/@blockprotocol/graph/package.json index 51c79fd0ef0..57e2297bfed 100644 --- a/libs/@blockprotocol/graph/package.json +++ b/libs/@blockprotocol/graph/package.json @@ -79,7 +79,7 @@ "@local/eslint": "0.0.0-private", "@local/tsconfig": "0.0.0-private", "@types/lodash.isequal": "4.5.8", - "@types/node": "22.10.3", + "@types/node": "22.10.5", "@types/react": "19.0.1", "eslint": "9.17.0", "rimraf": "6.0.1", diff --git a/libs/@blockprotocol/type-system/typescript/package.json b/libs/@blockprotocol/type-system/typescript/package.json index 1325a0bbc7d..a5d5ffd3cc0 100644 --- a/libs/@blockprotocol/type-system/typescript/package.json +++ b/libs/@blockprotocol/type-system/typescript/package.json @@ -59,7 +59,7 @@ "@rollup/plugin-node-resolve": "16.0.0", "@rollup/plugin-typescript": "12.1.2", "@rollup/plugin-wasm": "6.2.2", - "@types/node": "22.10.3", + "@types/node": "22.10.5", "@types/react": "19.0.1", "@vitest/coverage-istanbul": "2.1.8", "eslint": "9.17.0", diff --git a/libs/@local/eslint/package.json b/libs/@local/eslint/package.json index 173971bef3f..15692f8a9e1 100644 --- a/libs/@local/eslint/package.json +++ b/libs/@local/eslint/package.json @@ -43,7 +43,7 @@ "@local/tsconfig": "0.0.0-private", "@types/babel__core": "^7", "@types/eslint__eslintrc": "2.1.2", - "@types/node": "22.10.3", + "@types/node": "22.10.5", "rimraf": "6.0.1", "typescript": "5.7.2" } diff --git a/libs/@local/graph/client/typescript/package.json b/libs/@local/graph/client/typescript/package.json index 5843aae8d61..5962fb269aa 100644 --- a/libs/@local/graph/client/typescript/package.json +++ b/libs/@local/graph/client/typescript/package.json @@ -19,7 +19,7 @@ "@local/tsconfig": "0.0.0-private", "@redocly/cli": "1.26.1", "@rust/hash-graph-api": "0.0.0-private", - "@types/node": "22.10.3", + "@types/node": "22.10.5", "fix-esm-import-path": "1.10.1", "rimraf": "6.0.1", "typescript": "5.7.2" diff --git a/libs/@local/harpc/client/typescript/package.json b/libs/@local/harpc/client/typescript/package.json index 9eb5dc092f9..4ecb55ac4b8 100644 --- a/libs/@local/harpc/client/typescript/package.json +++ b/libs/@local/harpc/client/typescript/package.json @@ -45,7 +45,7 @@ "@local/eslint": "0.0.0-private", "@local/tsconfig": "0.0.0-private", "@rust/harpc-wire-protocol": "0.0.0-private", - "@types/node": "22.10.3", + "@types/node": "22.10.5", "@vitest/coverage-istanbul": "2.1.8", "eslint": "9.17.0", "rimraf": "6.0.1", diff --git a/libs/@local/hash-backend-utils/package.json b/libs/@local/hash-backend-utils/package.json index 6c9a7c8224d..5f3352a1561 100644 --- a/libs/@local/hash-backend-utils/package.json +++ b/libs/@local/hash-backend-utils/package.json @@ -59,7 +59,7 @@ "@local/eslint": "0.0.0-private", "@local/tsconfig": "0.0.0-private", "@types/dotenv-flow": "3.3.3", - "@types/node": "22.10.3", + "@types/node": "22.10.5", "@types/wait-on": "5.3.4", "@vitest/coverage-istanbul": "2.1.8", "eslint": "9.17.0", diff --git a/libs/@local/hash-isomorphic-utils/package.json b/libs/@local/hash-isomorphic-utils/package.json index df49008d1b7..3bf6646c4c9 100644 --- a/libs/@local/hash-isomorphic-utils/package.json +++ b/libs/@local/hash-isomorphic-utils/package.json @@ -63,7 +63,7 @@ "@local/tsconfig": "0.0.0-private", "@temporalio/workflow": "1.11.5", "@types/lodash-es": "4.17.12", - "@types/node": "22.10.3", + "@types/node": "22.10.5", "@types/pluralize": "0.0.33", "@vitest/coverage-istanbul": "2.1.8", "eslint": "9.17.0", diff --git a/libs/@local/internal-api-client/typescript/package.json b/libs/@local/internal-api-client/typescript/package.json index c677ec6f5c6..cfa824d6770 100644 --- a/libs/@local/internal-api-client/typescript/package.json +++ b/libs/@local/internal-api-client/typescript/package.json @@ -16,7 +16,7 @@ }, "devDependencies": { "@openapitools/openapi-generator-cli": "2.15.3", - "@types/node": "22.10.3", + "@types/node": "22.10.5", "prettier": "3.4.2", "rimraf": "6.0.1", "typescript": "5.7.2" diff --git a/libs/@local/status/typescript/package.json b/libs/@local/status/typescript/package.json index 46af7e4ec1d..3f408ca940a 100644 --- a/libs/@local/status/typescript/package.json +++ b/libs/@local/status/typescript/package.json @@ -25,7 +25,7 @@ "@local/eslint": "0.0.0-private", "@local/tsconfig": "0.0.0-private", "@types/lodash-es": "4.17.12", - "@types/node": "22.10.3", + "@types/node": "22.10.5", "@types/yargs": "17.0.33", "eslint": "9.17.0", "quicktype": "16.0.43", diff --git a/yarn.lock b/yarn.lock index d08dfe918d4..7b65f75cabe 100644 --- a/yarn.lock +++ b/yarn.lock @@ -298,7 +298,7 @@ __metadata: "@types/lodash.pickby": "npm:4.6.9" "@types/md5": "npm:2.3.5" "@types/mime-types": "npm:2.1.4" - "@types/node": "npm:22.10.3" + "@types/node": "npm:22.10.5" "@types/papaparse": "npm:5.3.15" "@types/sanitize-html": "npm:2.13.0" "@vitest/coverage-istanbul": "npm:2.1.8" @@ -658,7 +658,7 @@ __metadata: "@local/eslint": "npm:0.0.0-private" "@local/hash-backend-utils": "npm:0.0.0-private" "@local/tsconfig": "npm:0.0.0-private" - "@types/node": "npm:22.10.3" + "@types/node": "npm:22.10.5" "@types/set-interval-async": "npm:1.0.3" eslint: "npm:9.17.0" set-interval-async: "npm:2.0.3" @@ -677,7 +677,7 @@ __metadata: "@local/hash-backend-utils": "npm:0.0.0-private" "@local/hash-isomorphic-utils": "npm:0.0.0-private" "@local/tsconfig": "npm:0.0.0-private" - "@types/node": "npm:22.10.3" + "@types/node": "npm:22.10.5" eslint: "npm:9.17.0" hot-shots: "npm:8.5.2" tsx: "npm:4.19.2" @@ -737,7 +737,7 @@ __metadata: "@types/gtag.js": "npm:0.0.20" "@types/html-to-text": "npm:9.0.4" "@types/md5": "npm:2.3.5" - "@types/node": "npm:22.10.3" + "@types/node": "npm:22.10.5" "@types/prismjs": "npm:1.26.5" "@types/react": "npm:19.0.1" "@types/react-dom": "npm:19.0.2" @@ -4536,7 +4536,7 @@ __metadata: "@local/eslint": "npm:0.0.0-private" "@local/tsconfig": "npm:0.0.0-private" "@types/lodash.isequal": "npm:4.5.8" - "@types/node": "npm:22.10.3" + "@types/node": "npm:22.10.5" "@types/react": "npm:19.0.1" ajv: "npm:8.17.1" ajv-formats: "npm:3.0.1" @@ -4625,7 +4625,7 @@ __metadata: "@rollup/plugin-node-resolve": "npm:16.0.0" "@rollup/plugin-typescript": "npm:12.1.2" "@rollup/plugin-wasm": "npm:6.2.2" - "@types/node": "npm:22.10.3" + "@types/node": "npm:22.10.5" "@types/react": "npm:19.0.1" "@vitest/coverage-istanbul": "npm:2.1.8" eslint: "npm:9.17.0" @@ -9298,7 +9298,7 @@ __metadata: "@local/tsconfig": "npm:0.0.0-private" "@types/babel__core": "npm:^7" "@types/eslint__eslintrc": "npm:2.1.2" - "@types/node": "npm:22.10.3" + "@types/node": "npm:22.10.5" effect: "npm:3.12.0" eslint: "npm:9.17.0" eslint-config-airbnb: "npm:19.0.4" @@ -9337,7 +9337,7 @@ __metadata: "@multiformats/dns": "npm:1.0.6" "@multiformats/multiaddr": "npm:12.3.4" "@rust/harpc-wire-protocol": "npm:0.0.0-private" - "@types/node": "npm:22.10.3" + "@types/node": "npm:22.10.5" "@vitest/coverage-istanbul": "npm:2.1.8" effect: "npm:3.12.0" eslint: "npm:9.17.0" @@ -9378,7 +9378,7 @@ __metadata: "@temporalio/worker": "npm:1.11.5" "@temporalio/workflow": "npm:1.11.5" "@types/dotenv-flow": "npm:3.3.3" - "@types/node": "npm:22.10.3" + "@types/node": "npm:22.10.5" "@types/wait-on": "npm:5.3.4" "@vitest/coverage-istanbul": "npm:2.1.8" agentkeepalive: "npm:4.6.0" @@ -9407,7 +9407,7 @@ __metadata: "@openapitools/openapi-generator-cli": "npm:2.15.3" "@redocly/cli": "npm:1.26.1" "@rust/hash-graph-api": "npm:0.0.0-private" - "@types/node": "npm:22.10.3" + "@types/node": "npm:22.10.5" axios: "npm:1.7.9" fix-esm-import-path: "npm:1.10.1" rimraf: "npm:6.0.1" @@ -9474,7 +9474,7 @@ __metadata: "@sindresorhus/slugify": "npm:1.1.2" "@temporalio/workflow": "npm:1.11.5" "@types/lodash-es": "npm:4.17.12" - "@types/node": "npm:22.10.3" + "@types/node": "npm:22.10.5" "@types/pluralize": "npm:0.0.33" "@vitest/coverage-istanbul": "npm:2.1.8" apollo-server-express: "npm:3.9.0" @@ -9530,7 +9530,7 @@ __metadata: resolution: "@local/internal-api-client@workspace:libs/@local/internal-api-client/typescript" dependencies: "@openapitools/openapi-generator-cli": "npm:2.15.3" - "@types/node": "npm:22.10.3" + "@types/node": "npm:22.10.5" axios: "npm:1.7.9" prettier: "npm:3.4.2" rimraf: "npm:6.0.1" @@ -9567,7 +9567,7 @@ __metadata: "@local/eslint": "npm:0.0.0-private" "@local/tsconfig": "npm:0.0.0-private" "@types/lodash-es": "npm:4.17.12" - "@types/node": "npm:22.10.3" + "@types/node": "npm:22.10.5" "@types/yargs": "npm:17.0.33" eslint: "npm:9.17.0" execa: "npm:5.1.1" @@ -18163,12 +18163,12 @@ __metadata: languageName: node linkType: hard -"@types/node@npm:*, @types/node@npm:22.10.3, @types/node@npm:>=13.7.0, @types/node@npm:^22.9.0": - version: 22.10.3 - resolution: "@types/node@npm:22.10.3" +"@types/node@npm:*, @types/node@npm:22.10.5, @types/node@npm:>=13.7.0, @types/node@npm:^22.9.0": + version: 22.10.5 + resolution: "@types/node@npm:22.10.5" dependencies: undici-types: "npm:~6.20.0" - checksum: 10c0/0471a73c8672c803b1f2b912c2c466d00a217186933e8ff38ec7779b4a3f88a0eea3b513a59f2abf9de17cc8bbca688a3c6643c6513ac8dd1c3e45d25fab93b1 + checksum: 10c0/6a0e7d1fe6a86ef6ee19c3c6af4c15542e61aea2f4cee655b6252efb356795f1f228bc8299921e82924e80ff8eca29b74d9dd0dd5cc1a90983f892f740b480df languageName: node linkType: hard From 455deb2ab14f21a5dab0a23e4aded3c033f35aba Mon Sep 17 00:00:00 2001 From: "hash-worker[bot]" <180894564+hash-worker[bot]@users.noreply.github.com> Date: Sat, 4 Jan 2025 08:37:35 +0000 Subject: [PATCH 145/159] Update aws-sdk-js-v3 monorepo (#6051) Co-authored-by: hash-worker[bot] <180894564+hash-worker[bot]@users.noreply.github.com> --- apps/hash-api/package.json | 10 +- libs/@local/hash-backend-utils/package.json | 4 +- yarn.lock | 186 ++++++++++---------- 3 files changed, 100 insertions(+), 100 deletions(-) diff --git a/apps/hash-api/package.json b/apps/hash-api/package.json index cf1dbda311a..28ae5317351 100644 --- a/apps/hash-api/package.json +++ b/apps/hash-api/package.json @@ -24,11 +24,11 @@ }, "dependencies": { "@apps/hash-graph": "0.0.0-private", - "@aws-sdk/client-s3": "3.717.0", - "@aws-sdk/client-ses": "3.716.0", - "@aws-sdk/credential-provider-node": "3.716.0", - "@aws-sdk/s3-presigned-post": "3.717.0", - "@aws-sdk/s3-request-presigner": "3.717.0", + "@aws-sdk/client-s3": "3.722.0", + "@aws-sdk/client-ses": "3.721.0", + "@aws-sdk/credential-provider-node": "3.721.0", + "@aws-sdk/s3-presigned-post": "3.722.0", + "@aws-sdk/s3-request-presigner": "3.722.0", "@blockprotocol/core": "patch:@blockprotocol/core@npm%3A0.1.3#~/.yarn/patches/@blockprotocol-core-npm-0.1.3-7c4f062e15.patch", "@blockprotocol/type-system": "0.1.2-canary.0", "@graphql-tools/schema": "8.5.1", diff --git a/libs/@local/hash-backend-utils/package.json b/libs/@local/hash-backend-utils/package.json index 5f3352a1561..b6f9d54cd71 100644 --- a/libs/@local/hash-backend-utils/package.json +++ b/libs/@local/hash-backend-utils/package.json @@ -23,8 +23,8 @@ "test:unit": "vitest --run" }, "dependencies": { - "@aws-sdk/client-s3": "3.717.0", - "@aws-sdk/s3-request-presigner": "3.717.0", + "@aws-sdk/client-s3": "3.722.0", + "@aws-sdk/s3-request-presigner": "3.722.0", "@blockprotocol/core": "patch:@blockprotocol/core@npm%3A0.1.3#~/.yarn/patches/@blockprotocol-core-npm-0.1.3-7c4f062e15.patch", "@blockprotocol/graph": "0.4.0-canary.0", "@blockprotocol/type-system": "0.1.2-canary.0", diff --git a/yarn.lock b/yarn.lock index 7b65f75cabe..683ecf1c6ea 100644 --- a/yarn.lock +++ b/yarn.lock @@ -345,11 +345,11 @@ __metadata: resolution: "@apps/hash-api@workspace:apps/hash-api" dependencies: "@apps/hash-graph": "npm:0.0.0-private" - "@aws-sdk/client-s3": "npm:3.717.0" - "@aws-sdk/client-ses": "npm:3.716.0" - "@aws-sdk/credential-provider-node": "npm:3.716.0" - "@aws-sdk/s3-presigned-post": "npm:3.717.0" - "@aws-sdk/s3-request-presigner": "npm:3.717.0" + "@aws-sdk/client-s3": "npm:3.722.0" + "@aws-sdk/client-ses": "npm:3.721.0" + "@aws-sdk/credential-provider-node": "npm:3.721.0" + "@aws-sdk/s3-presigned-post": "npm:3.722.0" + "@aws-sdk/s3-request-presigner": "npm:3.722.0" "@blockprotocol/core": "patch:@blockprotocol/core@npm%3A0.1.3#~/.yarn/patches/@blockprotocol-core-npm-0.1.3-7c4f062e15.patch" "@blockprotocol/graph": "npm:0.4.0-canary.0" "@blockprotocol/type-system": "npm:0.1.2-canary.0" @@ -1268,18 +1268,18 @@ __metadata: languageName: node linkType: hard -"@aws-sdk/client-s3@npm:3.717.0": - version: 3.717.0 - resolution: "@aws-sdk/client-s3@npm:3.717.0" +"@aws-sdk/client-s3@npm:3.722.0": + version: 3.722.0 + resolution: "@aws-sdk/client-s3@npm:3.722.0" dependencies: "@aws-crypto/sha1-browser": "npm:5.2.0" "@aws-crypto/sha256-browser": "npm:5.2.0" "@aws-crypto/sha256-js": "npm:5.2.0" - "@aws-sdk/client-sso-oidc": "npm:3.716.0" - "@aws-sdk/client-sts": "npm:3.716.0" + "@aws-sdk/client-sso-oidc": "npm:3.721.0" + "@aws-sdk/client-sts": "npm:3.721.0" "@aws-sdk/core": "npm:3.716.0" - "@aws-sdk/credential-provider-node": "npm:3.716.0" - "@aws-sdk/middleware-bucket-endpoint": "npm:3.714.0" + "@aws-sdk/credential-provider-node": "npm:3.721.0" + "@aws-sdk/middleware-bucket-endpoint": "npm:3.721.0" "@aws-sdk/middleware-expect-continue": "npm:3.714.0" "@aws-sdk/middleware-flexible-checksums": "npm:3.717.0" "@aws-sdk/middleware-host-header": "npm:3.714.0" @@ -1288,13 +1288,13 @@ __metadata: "@aws-sdk/middleware-recursion-detection": "npm:3.714.0" "@aws-sdk/middleware-sdk-s3": "npm:3.716.0" "@aws-sdk/middleware-ssec": "npm:3.714.0" - "@aws-sdk/middleware-user-agent": "npm:3.716.0" + "@aws-sdk/middleware-user-agent": "npm:3.721.0" "@aws-sdk/region-config-resolver": "npm:3.714.0" "@aws-sdk/signature-v4-multi-region": "npm:3.716.0" "@aws-sdk/types": "npm:3.714.0" "@aws-sdk/util-endpoints": "npm:3.714.0" "@aws-sdk/util-user-agent-browser": "npm:3.714.0" - "@aws-sdk/util-user-agent-node": "npm:3.716.0" + "@aws-sdk/util-user-agent-node": "npm:3.721.0" "@aws-sdk/xml-builder": "npm:3.709.0" "@smithy/config-resolver": "npm:^3.0.13" "@smithy/core": "npm:^2.5.5" @@ -1330,7 +1330,7 @@ __metadata: "@smithy/util-utf8": "npm:^3.0.0" "@smithy/util-waiter": "npm:^3.2.0" tslib: "npm:^2.6.2" - checksum: 10c0/f89525742aa38e0acd9c6395dabad3464dfb83c28d019b66ffca4268676ae93089be221e07f087d6d57856ab9c43ffd700c43f9ec392b995aefec29b24549ae0 + checksum: 10c0/b9e9ff3355baae4e4f0179a6cd1bac88b8c95cf93d9ba35d6e73efadac16053faecbbbcf4a40297faa09872601c02c09426d19c1762a1df898cbbe8c589f19a5 languageName: node linkType: hard @@ -1386,25 +1386,25 @@ __metadata: languageName: node linkType: hard -"@aws-sdk/client-ses@npm:3.716.0": - version: 3.716.0 - resolution: "@aws-sdk/client-ses@npm:3.716.0" +"@aws-sdk/client-ses@npm:3.721.0": + version: 3.721.0 + resolution: "@aws-sdk/client-ses@npm:3.721.0" dependencies: "@aws-crypto/sha256-browser": "npm:5.2.0" "@aws-crypto/sha256-js": "npm:5.2.0" - "@aws-sdk/client-sso-oidc": "npm:3.716.0" - "@aws-sdk/client-sts": "npm:3.716.0" + "@aws-sdk/client-sso-oidc": "npm:3.721.0" + "@aws-sdk/client-sts": "npm:3.721.0" "@aws-sdk/core": "npm:3.716.0" - "@aws-sdk/credential-provider-node": "npm:3.716.0" + "@aws-sdk/credential-provider-node": "npm:3.721.0" "@aws-sdk/middleware-host-header": "npm:3.714.0" "@aws-sdk/middleware-logger": "npm:3.714.0" "@aws-sdk/middleware-recursion-detection": "npm:3.714.0" - "@aws-sdk/middleware-user-agent": "npm:3.716.0" + "@aws-sdk/middleware-user-agent": "npm:3.721.0" "@aws-sdk/region-config-resolver": "npm:3.714.0" "@aws-sdk/types": "npm:3.714.0" "@aws-sdk/util-endpoints": "npm:3.714.0" "@aws-sdk/util-user-agent-browser": "npm:3.714.0" - "@aws-sdk/util-user-agent-node": "npm:3.716.0" + "@aws-sdk/util-user-agent-node": "npm:3.721.0" "@smithy/config-resolver": "npm:^3.0.13" "@smithy/core": "npm:^2.5.5" "@smithy/fetch-http-handler": "npm:^4.1.2" @@ -1432,7 +1432,7 @@ __metadata: "@smithy/util-utf8": "npm:^3.0.0" "@smithy/util-waiter": "npm:^3.2.0" tslib: "npm:^2.6.2" - checksum: 10c0/db39998267f540b751f457e50a4c6df2c2a8faede78d48506b2a942a43a0428c71f8340df4a77b1548abc4cab1fd4cc5594c3c972e41a3694b89b1e62500a879 + checksum: 10c0/5b7056aa8ebf0ca422d82000913ebeac2a9a4a45d955cc15e15617a04b1624f184b5b26451c76ddd0ab1cfa8afb505c19b50b13543b62d45f588adc71004b789 languageName: node linkType: hard @@ -1485,23 +1485,23 @@ __metadata: languageName: node linkType: hard -"@aws-sdk/client-sso-oidc@npm:3.716.0, @aws-sdk/client-sso-oidc@npm:^3.693.0": - version: 3.716.0 - resolution: "@aws-sdk/client-sso-oidc@npm:3.716.0" +"@aws-sdk/client-sso-oidc@npm:3.721.0, @aws-sdk/client-sso-oidc@npm:^3.693.0": + version: 3.721.0 + resolution: "@aws-sdk/client-sso-oidc@npm:3.721.0" dependencies: "@aws-crypto/sha256-browser": "npm:5.2.0" "@aws-crypto/sha256-js": "npm:5.2.0" "@aws-sdk/core": "npm:3.716.0" - "@aws-sdk/credential-provider-node": "npm:3.716.0" + "@aws-sdk/credential-provider-node": "npm:3.721.0" "@aws-sdk/middleware-host-header": "npm:3.714.0" "@aws-sdk/middleware-logger": "npm:3.714.0" "@aws-sdk/middleware-recursion-detection": "npm:3.714.0" - "@aws-sdk/middleware-user-agent": "npm:3.716.0" + "@aws-sdk/middleware-user-agent": "npm:3.721.0" "@aws-sdk/region-config-resolver": "npm:3.714.0" "@aws-sdk/types": "npm:3.714.0" "@aws-sdk/util-endpoints": "npm:3.714.0" "@aws-sdk/util-user-agent-browser": "npm:3.714.0" - "@aws-sdk/util-user-agent-node": "npm:3.716.0" + "@aws-sdk/util-user-agent-node": "npm:3.721.0" "@smithy/config-resolver": "npm:^3.0.13" "@smithy/core": "npm:^2.5.5" "@smithy/fetch-http-handler": "npm:^4.1.2" @@ -1529,8 +1529,8 @@ __metadata: "@smithy/util-utf8": "npm:^3.0.0" tslib: "npm:^2.6.2" peerDependencies: - "@aws-sdk/client-sts": ^3.716.0 - checksum: 10c0/56c158846b2ff895565ff1da0f677d7959700288cf3dc44e7bd17ef87d6188233f6a331d1ded0e91df0068083ef28d50024016a90f5405f55b877b6c7130c7b0 + "@aws-sdk/client-sts": ^3.721.0 + checksum: 10c0/749299eba3e03ae2f93621049642958babb48f4067ce90074e2b6bf279898fd7a13831bfb503a2d1653adf1d4ceed14521b6f3d4b069168f34194cf744e719b4 languageName: node linkType: hard @@ -1580,9 +1580,9 @@ __metadata: languageName: node linkType: hard -"@aws-sdk/client-sso@npm:3.716.0": - version: 3.716.0 - resolution: "@aws-sdk/client-sso@npm:3.716.0" +"@aws-sdk/client-sso@npm:3.721.0": + version: 3.721.0 + resolution: "@aws-sdk/client-sso@npm:3.721.0" dependencies: "@aws-crypto/sha256-browser": "npm:5.2.0" "@aws-crypto/sha256-js": "npm:5.2.0" @@ -1590,12 +1590,12 @@ __metadata: "@aws-sdk/middleware-host-header": "npm:3.714.0" "@aws-sdk/middleware-logger": "npm:3.714.0" "@aws-sdk/middleware-recursion-detection": "npm:3.714.0" - "@aws-sdk/middleware-user-agent": "npm:3.716.0" + "@aws-sdk/middleware-user-agent": "npm:3.721.0" "@aws-sdk/region-config-resolver": "npm:3.714.0" "@aws-sdk/types": "npm:3.714.0" "@aws-sdk/util-endpoints": "npm:3.714.0" "@aws-sdk/util-user-agent-browser": "npm:3.714.0" - "@aws-sdk/util-user-agent-node": "npm:3.716.0" + "@aws-sdk/util-user-agent-node": "npm:3.721.0" "@smithy/config-resolver": "npm:^3.0.13" "@smithy/core": "npm:^2.5.5" "@smithy/fetch-http-handler": "npm:^4.1.2" @@ -1622,7 +1622,7 @@ __metadata: "@smithy/util-retry": "npm:^3.0.11" "@smithy/util-utf8": "npm:^3.0.0" tslib: "npm:^2.6.2" - checksum: 10c0/5c30caf6e21800974ff4c7f1dce230cfd7cfd4be146e356b19c0a4690b6123f23095f32eb73fa96b389f729975bbd5fbfe05c3d940f958c4f2a884fe4b9d44b4 + checksum: 10c0/d0b4b3bead2707d8b327684ce93d45db9bcff6c8c7b2e334acbad5bce74a3dd77f63d6434f9a9de048977e81693dacd7691a847b8480dc03cb07f24163c7a7e1 languageName: node linkType: hard @@ -1674,24 +1674,24 @@ __metadata: languageName: node linkType: hard -"@aws-sdk/client-sts@npm:3.716.0": - version: 3.716.0 - resolution: "@aws-sdk/client-sts@npm:3.716.0" +"@aws-sdk/client-sts@npm:3.721.0": + version: 3.721.0 + resolution: "@aws-sdk/client-sts@npm:3.721.0" dependencies: "@aws-crypto/sha256-browser": "npm:5.2.0" "@aws-crypto/sha256-js": "npm:5.2.0" - "@aws-sdk/client-sso-oidc": "npm:3.716.0" + "@aws-sdk/client-sso-oidc": "npm:3.721.0" "@aws-sdk/core": "npm:3.716.0" - "@aws-sdk/credential-provider-node": "npm:3.716.0" + "@aws-sdk/credential-provider-node": "npm:3.721.0" "@aws-sdk/middleware-host-header": "npm:3.714.0" "@aws-sdk/middleware-logger": "npm:3.714.0" "@aws-sdk/middleware-recursion-detection": "npm:3.714.0" - "@aws-sdk/middleware-user-agent": "npm:3.716.0" + "@aws-sdk/middleware-user-agent": "npm:3.721.0" "@aws-sdk/region-config-resolver": "npm:3.714.0" "@aws-sdk/types": "npm:3.714.0" "@aws-sdk/util-endpoints": "npm:3.714.0" "@aws-sdk/util-user-agent-browser": "npm:3.714.0" - "@aws-sdk/util-user-agent-node": "npm:3.716.0" + "@aws-sdk/util-user-agent-node": "npm:3.721.0" "@smithy/config-resolver": "npm:^3.0.13" "@smithy/core": "npm:^2.5.5" "@smithy/fetch-http-handler": "npm:^4.1.2" @@ -1718,7 +1718,7 @@ __metadata: "@smithy/util-retry": "npm:^3.0.11" "@smithy/util-utf8": "npm:^3.0.0" tslib: "npm:^2.6.2" - checksum: 10c0/3a0a408f264260781dcf992028c60c8dbfad1acf00ae3590db07b1d52d931a05ffbe7f6709783ac8385dc79f44f0427054d21a89333faddd8c50f62eb354f854 + checksum: 10c0/38ea61bd2a37f06debf6e97be7a59fd93eee68d5c1c210bed783609eff4df869d3f8e766e0d1e38d9235af84c27242bc110347a0b1ed1556f3aaa8e919065870 languageName: node linkType: hard @@ -1857,15 +1857,15 @@ __metadata: languageName: node linkType: hard -"@aws-sdk/credential-provider-ini@npm:3.716.0": - version: 3.716.0 - resolution: "@aws-sdk/credential-provider-ini@npm:3.716.0" +"@aws-sdk/credential-provider-ini@npm:3.721.0": + version: 3.721.0 + resolution: "@aws-sdk/credential-provider-ini@npm:3.721.0" dependencies: "@aws-sdk/core": "npm:3.716.0" "@aws-sdk/credential-provider-env": "npm:3.716.0" "@aws-sdk/credential-provider-http": "npm:3.716.0" "@aws-sdk/credential-provider-process": "npm:3.716.0" - "@aws-sdk/credential-provider-sso": "npm:3.716.0" + "@aws-sdk/credential-provider-sso": "npm:3.721.0" "@aws-sdk/credential-provider-web-identity": "npm:3.716.0" "@aws-sdk/types": "npm:3.714.0" "@smithy/credential-provider-imds": "npm:^3.2.8" @@ -1874,8 +1874,8 @@ __metadata: "@smithy/types": "npm:^3.7.2" tslib: "npm:^2.6.2" peerDependencies: - "@aws-sdk/client-sts": ^3.716.0 - checksum: 10c0/1282f893a2149f0105f33dc9cfcbfa519b2936e8fc41da4b85fc89b022824c5689f8fc8652c2a03586ea0719e569da64b51414e831667b0c2c79c4e383cc65c6 + "@aws-sdk/client-sts": ^3.721.0 + checksum: 10c0/f5a4d27afb709781f18b9691af4f2a296cc05b34663109a8fb67e7f8fdc314a5cd586b3ea21ea6f2eeb3a8942d59df1f834657446ef270b01505015df2a69360 languageName: node linkType: hard @@ -1899,15 +1899,15 @@ __metadata: languageName: node linkType: hard -"@aws-sdk/credential-provider-node@npm:3.716.0": - version: 3.716.0 - resolution: "@aws-sdk/credential-provider-node@npm:3.716.0" +"@aws-sdk/credential-provider-node@npm:3.721.0": + version: 3.721.0 + resolution: "@aws-sdk/credential-provider-node@npm:3.721.0" dependencies: "@aws-sdk/credential-provider-env": "npm:3.716.0" "@aws-sdk/credential-provider-http": "npm:3.716.0" - "@aws-sdk/credential-provider-ini": "npm:3.716.0" + "@aws-sdk/credential-provider-ini": "npm:3.721.0" "@aws-sdk/credential-provider-process": "npm:3.716.0" - "@aws-sdk/credential-provider-sso": "npm:3.716.0" + "@aws-sdk/credential-provider-sso": "npm:3.721.0" "@aws-sdk/credential-provider-web-identity": "npm:3.716.0" "@aws-sdk/types": "npm:3.714.0" "@smithy/credential-provider-imds": "npm:^3.2.8" @@ -1915,7 +1915,7 @@ __metadata: "@smithy/shared-ini-file-loader": "npm:^3.1.12" "@smithy/types": "npm:^3.7.2" tslib: "npm:^2.6.2" - checksum: 10c0/41955b9098845652ab892e6edea9ce94705ade42be8ccc96f212efd75a2aec7aaf6cd06beaa9c01dd74e7cca1bc0a23571f94b4593034eccfe199603fc353cd0 + checksum: 10c0/f00269dc2bc4f9defddeb7cd571f48f5abe3098af8765eb36974d351e6f3e87182d8ed05572b954038e596882eb026521646886e0756f8d09b3692d2d8f9e81f languageName: node linkType: hard @@ -1963,19 +1963,19 @@ __metadata: languageName: node linkType: hard -"@aws-sdk/credential-provider-sso@npm:3.716.0": - version: 3.716.0 - resolution: "@aws-sdk/credential-provider-sso@npm:3.716.0" +"@aws-sdk/credential-provider-sso@npm:3.721.0": + version: 3.721.0 + resolution: "@aws-sdk/credential-provider-sso@npm:3.721.0" dependencies: - "@aws-sdk/client-sso": "npm:3.716.0" + "@aws-sdk/client-sso": "npm:3.721.0" "@aws-sdk/core": "npm:3.716.0" - "@aws-sdk/token-providers": "npm:3.714.0" + "@aws-sdk/token-providers": "npm:3.721.0" "@aws-sdk/types": "npm:3.714.0" "@smithy/property-provider": "npm:^3.1.11" "@smithy/shared-ini-file-loader": "npm:^3.1.12" "@smithy/types": "npm:^3.7.2" tslib: "npm:^2.6.2" - checksum: 10c0/5d1e941343164b4246722cc88909cd50966116c2028d9760f2a09b85dae80c1198de682b1f2c1c9d74a62bc8942e4cedb63695782b5b08f167bfef2f09c5abf3 + checksum: 10c0/f4d06ed581d792e412f3b2dc86cae405dff89ae85b7d656aad737c8b5f77731df9162817fafa0f7419fd868fbc2d8f2c299374de3bd4ddafe7b7392e0289a901 languageName: node linkType: hard @@ -2034,9 +2034,9 @@ __metadata: languageName: node linkType: hard -"@aws-sdk/middleware-bucket-endpoint@npm:3.714.0": - version: 3.714.0 - resolution: "@aws-sdk/middleware-bucket-endpoint@npm:3.714.0" +"@aws-sdk/middleware-bucket-endpoint@npm:3.721.0": + version: 3.721.0 + resolution: "@aws-sdk/middleware-bucket-endpoint@npm:3.721.0" dependencies: "@aws-sdk/types": "npm:3.714.0" "@aws-sdk/util-arn-parser": "npm:3.693.0" @@ -2045,7 +2045,7 @@ __metadata: "@smithy/types": "npm:^3.7.2" "@smithy/util-config-provider": "npm:^3.0.0" tslib: "npm:^2.6.2" - checksum: 10c0/41b1bb79e34cd445e783affe896dc01ecdf71b13b68b2354a24c18f9383d2f4ab76cbae516bb5d3413a0aaa094bb783556aed04bc5a7cc4c06c09eecd2c88d73 + checksum: 10c0/ae38ceb423c585549cda79678f2b356641303a9882c6391a2aef4447b5c7b2bdf8b047c534d49cd421dd21cda4a0880a90566d8aab0c79ac25dc27043f475764 languageName: node linkType: hard @@ -2211,9 +2211,9 @@ __metadata: languageName: node linkType: hard -"@aws-sdk/middleware-user-agent@npm:3.716.0": - version: 3.716.0 - resolution: "@aws-sdk/middleware-user-agent@npm:3.716.0" +"@aws-sdk/middleware-user-agent@npm:3.721.0": + version: 3.721.0 + resolution: "@aws-sdk/middleware-user-agent@npm:3.721.0" dependencies: "@aws-sdk/core": "npm:3.716.0" "@aws-sdk/types": "npm:3.714.0" @@ -2222,7 +2222,7 @@ __metadata: "@smithy/protocol-http": "npm:^4.1.8" "@smithy/types": "npm:^3.7.2" tslib: "npm:^2.6.2" - checksum: 10c0/b66356f04adfda722910c2ddabed763fa40af0e9988c37b6dd7f6fb805538122100dbfb4332caa141fdaf0dd2e877e95a32513319046e109af905679697ad431 + checksum: 10c0/9409a5130adfe74eda12c020e522621b3ac25a6e371daee400ffa840f72a28935670d6f5745ddfb9b808fe46f1469c01dcddd945ee7eb0a8c2fc383d71fe0c2b languageName: node linkType: hard @@ -2264,11 +2264,11 @@ __metadata: languageName: node linkType: hard -"@aws-sdk/s3-presigned-post@npm:3.717.0": - version: 3.717.0 - resolution: "@aws-sdk/s3-presigned-post@npm:3.717.0" +"@aws-sdk/s3-presigned-post@npm:3.722.0": + version: 3.722.0 + resolution: "@aws-sdk/s3-presigned-post@npm:3.722.0" dependencies: - "@aws-sdk/client-s3": "npm:3.717.0" + "@aws-sdk/client-s3": "npm:3.722.0" "@aws-sdk/types": "npm:3.714.0" "@aws-sdk/util-format-url": "npm:3.714.0" "@smithy/middleware-endpoint": "npm:^3.2.6" @@ -2277,13 +2277,13 @@ __metadata: "@smithy/util-hex-encoding": "npm:^3.0.0" "@smithy/util-utf8": "npm:^3.0.0" tslib: "npm:^2.6.2" - checksum: 10c0/c43515a426c4cb702e7d7d2d11d6b630b29f3a59d9233250ba95e3d9c48be71c805c13e452b7c2363967f6db8d9edf03ab6ef76bcc7b1ead96866a4457affb05 + checksum: 10c0/8aab3d7ccb9db3365c7182ec26b252e2abaa4f75ffb2de18dea89ae2f5ea8f696b840c684d4caf7706fe4608dbfdb67c1d20b2269c66ff57c3674a2276bf16e4 languageName: node linkType: hard -"@aws-sdk/s3-request-presigner@npm:3.717.0": - version: 3.717.0 - resolution: "@aws-sdk/s3-request-presigner@npm:3.717.0" +"@aws-sdk/s3-request-presigner@npm:3.722.0": + version: 3.722.0 + resolution: "@aws-sdk/s3-request-presigner@npm:3.722.0" dependencies: "@aws-sdk/signature-v4-multi-region": "npm:3.716.0" "@aws-sdk/types": "npm:3.714.0" @@ -2293,7 +2293,7 @@ __metadata: "@smithy/smithy-client": "npm:^3.5.1" "@smithy/types": "npm:^3.7.2" tslib: "npm:^2.6.2" - checksum: 10c0/8ecef5fc7c584ef34319a83c096d0b2701d6fa4f8195a71eaadcbfccbd8690b1102097d10ef047d662cf661531e199dd30d133765ae7a59310ae3153e6c44abf + checksum: 10c0/bf5a73b8dddb2021b15e4a7747d6dcc869ac93f50773ab98de1b87549071e46f3fb78ebfea5961fe5278b55c3fdec597145ada7dcfd63f2d1fdb356c91ba3b02 languageName: node linkType: hard @@ -2336,9 +2336,9 @@ __metadata: languageName: node linkType: hard -"@aws-sdk/token-providers@npm:3.714.0": - version: 3.714.0 - resolution: "@aws-sdk/token-providers@npm:3.714.0" +"@aws-sdk/token-providers@npm:3.721.0": + version: 3.721.0 + resolution: "@aws-sdk/token-providers@npm:3.721.0" dependencies: "@aws-sdk/types": "npm:3.714.0" "@smithy/property-provider": "npm:^3.1.11" @@ -2346,8 +2346,8 @@ __metadata: "@smithy/types": "npm:^3.7.2" tslib: "npm:^2.6.2" peerDependencies: - "@aws-sdk/client-sso-oidc": ^3.714.0 - checksum: 10c0/5f3c83f8128a5bf0dfb6bbf78cb908d8b289ea5e1ead7d6dceb32f84a72eb910edddabb419a4c4f662a28a5e0f334dc6ca3be5f4e199f899d97a3b1fa25cbefd + "@aws-sdk/client-sso-oidc": ^3.721.0 + checksum: 10c0/196affc44d28c9a0beb46e679a293c959b8303509e8313899943fe13c25c3b0c109af3a1d6e6ab5ac978b7dc78e59166e31470a27f30aaeb84e8c29ecff5841f languageName: node linkType: hard @@ -2467,11 +2467,11 @@ __metadata: languageName: node linkType: hard -"@aws-sdk/util-user-agent-node@npm:3.716.0": - version: 3.716.0 - resolution: "@aws-sdk/util-user-agent-node@npm:3.716.0" +"@aws-sdk/util-user-agent-node@npm:3.721.0": + version: 3.721.0 + resolution: "@aws-sdk/util-user-agent-node@npm:3.721.0" dependencies: - "@aws-sdk/middleware-user-agent": "npm:3.716.0" + "@aws-sdk/middleware-user-agent": "npm:3.721.0" "@aws-sdk/types": "npm:3.714.0" "@smithy/node-config-provider": "npm:^3.1.12" "@smithy/types": "npm:^3.7.2" @@ -2481,7 +2481,7 @@ __metadata: peerDependenciesMeta: aws-crt: optional: true - checksum: 10c0/03cc627ebe7660d51232a9d08b6f217f6a4a944657abb3f21489c274342bc6bfad709daf7f1ad6c430e7498dea94acd7accc589c5cfa4168f8b2ac43c47c9d3e + checksum: 10c0/98909ed3417018cd281e6da7bf2713e734b07b5904e96bbe87813084700ecce63ec63f93c6c39b1e09e69b289b38d6d49a77168df0ff75754eda3fa2af3c7b4a languageName: node linkType: hard @@ -9355,8 +9355,8 @@ __metadata: version: 0.0.0-use.local resolution: "@local/hash-backend-utils@workspace:libs/@local/hash-backend-utils" dependencies: - "@aws-sdk/client-s3": "npm:3.717.0" - "@aws-sdk/s3-request-presigner": "npm:3.717.0" + "@aws-sdk/client-s3": "npm:3.722.0" + "@aws-sdk/s3-request-presigner": "npm:3.722.0" "@blockprotocol/core": "patch:@blockprotocol/core@npm%3A0.1.3#~/.yarn/patches/@blockprotocol-core-npm-0.1.3-7c4f062e15.patch" "@blockprotocol/graph": "npm:0.4.0-canary.0" "@blockprotocol/type-system": "npm:0.1.2-canary.0" From 830204a9f0509df95c525c7a635fb042785eefe8 Mon Sep 17 00:00:00 2001 From: "hash-worker[bot]" <180894564+hash-worker[bot]@users.noreply.github.com> Date: Sat, 4 Jan 2025 08:48:27 +0000 Subject: [PATCH 146/159] Update npm package `@redocly/cli` to v1.27.0 (#6052) Co-authored-by: hash-worker[bot] <180894564+hash-worker[bot]@users.noreply.github.com> --- .../graph/client/typescript/package.json | 2 +- yarn.lock | 20 +++++++++---------- 2 files changed, 11 insertions(+), 11 deletions(-) diff --git a/libs/@local/graph/client/typescript/package.json b/libs/@local/graph/client/typescript/package.json index 5962fb269aa..9d2cbe8d93b 100644 --- a/libs/@local/graph/client/typescript/package.json +++ b/libs/@local/graph/client/typescript/package.json @@ -17,7 +17,7 @@ }, "devDependencies": { "@local/tsconfig": "0.0.0-private", - "@redocly/cli": "1.26.1", + "@redocly/cli": "1.27.0", "@rust/hash-graph-api": "0.0.0-private", "@types/node": "22.10.5", "fix-esm-import-path": "1.10.1", diff --git a/yarn.lock b/yarn.lock index 683ecf1c6ea..3ded8354495 100644 --- a/yarn.lock +++ b/yarn.lock @@ -9405,7 +9405,7 @@ __metadata: dependencies: "@local/tsconfig": "npm:0.0.0-private" "@openapitools/openapi-generator-cli": "npm:2.15.3" - "@redocly/cli": "npm:1.26.1" + "@redocly/cli": "npm:1.27.0" "@rust/hash-graph-api": "npm:0.0.0-private" "@types/node": "npm:22.10.5" axios: "npm:1.7.9" @@ -12746,11 +12746,11 @@ __metadata: languageName: node linkType: hard -"@redocly/cli@npm:1.26.1": - version: 1.26.1 - resolution: "@redocly/cli@npm:1.26.1" +"@redocly/cli@npm:1.27.0": + version: 1.27.0 + resolution: "@redocly/cli@npm:1.27.0" dependencies: - "@redocly/openapi-core": "npm:1.26.1" + "@redocly/openapi-core": "npm:1.27.0" abort-controller: "npm:^3.0.0" chokidar: "npm:^3.5.1" colorette: "npm:^1.2.0" @@ -12772,7 +12772,7 @@ __metadata: bin: openapi: bin/cli.js redocly: bin/cli.js - checksum: 10c0/3a5f6bc1d414e2c327bc9e2f320c7a3fff91dad8530c6428fce94a62f3703ca5a05521567422e48897151d19ab64d8ae049213b5d4cd8dabc0a073b6969f3991 + checksum: 10c0/70a2ef82a00088bc40765f9456867983e91e01302a4d341b13d98094278b171215a3698aa8d16b29d9dc64571852cc98bbf39ace26455f9d7e3c6575c6500359 languageName: node linkType: hard @@ -12783,9 +12783,9 @@ __metadata: languageName: node linkType: hard -"@redocly/openapi-core@npm:1.26.1, @redocly/openapi-core@npm:^1.4.0": - version: 1.26.1 - resolution: "@redocly/openapi-core@npm:1.26.1" +"@redocly/openapi-core@npm:1.27.0, @redocly/openapi-core@npm:^1.4.0": + version: 1.27.0 + resolution: "@redocly/openapi-core@npm:1.27.0" dependencies: "@redocly/ajv": "npm:^8.11.2" "@redocly/config": "npm:^0.17.0" @@ -12797,7 +12797,7 @@ __metadata: node-fetch: "npm:^2.6.1" pluralize: "npm:^8.0.0" yaml-ast-parser: "npm:0.0.43" - checksum: 10c0/191ea9c971c758843a428f8f46f282c4a797120d93e4a8de89cd6622e709b8c5daf26f2f9c51f96e66f94a2ccc677e2fc7c48f57be3447a18dd7b59753fb9cd4 + checksum: 10c0/2145d2a5b8c76a5e9ff8c7c1182e2012bdb9c8386159ad3ee66e2fe0a39d7f0eb8928bc8e39183181d6aef791f2ca453aa619377ff728be1b468fd2853a023da languageName: node linkType: hard From e85f61105eacce3d520a812d87cf9a7490c8b056 Mon Sep 17 00:00:00 2001 From: "hash-worker[bot]" <180894564+hash-worker[bot]@users.noreply.github.com> Date: Sat, 4 Jan 2025 08:48:39 +0000 Subject: [PATCH 147/159] Update npm package `@sentry/cli` to v2.40.0 (#6053) Co-authored-by: hash-worker[bot] <180894564+hash-worker[bot]@users.noreply.github.com> --- yarn.lock | 88 ++++++++++++++++++++++++++++++++++++++++++++++++++++++- 1 file changed, 87 insertions(+), 1 deletion(-) diff --git a/yarn.lock b/yarn.lock index 3ded8354495..bd28194d2e6 100644 --- a/yarn.lock +++ b/yarn.lock @@ -13634,6 +13634,13 @@ __metadata: languageName: node linkType: hard +"@sentry/cli-darwin@npm:2.40.0": + version: 2.40.0 + resolution: "@sentry/cli-darwin@npm:2.40.0" + conditions: os=darwin + languageName: node + linkType: hard + "@sentry/cli-linux-arm64@npm:2.39.1": version: 2.39.1 resolution: "@sentry/cli-linux-arm64@npm:2.39.1" @@ -13641,6 +13648,13 @@ __metadata: languageName: node linkType: hard +"@sentry/cli-linux-arm64@npm:2.40.0": + version: 2.40.0 + resolution: "@sentry/cli-linux-arm64@npm:2.40.0" + conditions: (os=linux | os=freebsd) & cpu=arm64 + languageName: node + linkType: hard + "@sentry/cli-linux-arm@npm:2.39.1": version: 2.39.1 resolution: "@sentry/cli-linux-arm@npm:2.39.1" @@ -13648,6 +13662,13 @@ __metadata: languageName: node linkType: hard +"@sentry/cli-linux-arm@npm:2.40.0": + version: 2.40.0 + resolution: "@sentry/cli-linux-arm@npm:2.40.0" + conditions: (os=linux | os=freebsd) & cpu=arm + languageName: node + linkType: hard + "@sentry/cli-linux-i686@npm:2.39.1": version: 2.39.1 resolution: "@sentry/cli-linux-i686@npm:2.39.1" @@ -13655,6 +13676,13 @@ __metadata: languageName: node linkType: hard +"@sentry/cli-linux-i686@npm:2.40.0": + version: 2.40.0 + resolution: "@sentry/cli-linux-i686@npm:2.40.0" + conditions: (os=linux | os=freebsd) & (cpu=x86 | cpu=ia32) + languageName: node + linkType: hard + "@sentry/cli-linux-x64@npm:2.39.1": version: 2.39.1 resolution: "@sentry/cli-linux-x64@npm:2.39.1" @@ -13662,6 +13690,13 @@ __metadata: languageName: node linkType: hard +"@sentry/cli-linux-x64@npm:2.40.0": + version: 2.40.0 + resolution: "@sentry/cli-linux-x64@npm:2.40.0" + conditions: (os=linux | os=freebsd) & cpu=x64 + languageName: node + linkType: hard + "@sentry/cli-win32-i686@npm:2.39.1": version: 2.39.1 resolution: "@sentry/cli-win32-i686@npm:2.39.1" @@ -13669,6 +13704,13 @@ __metadata: languageName: node linkType: hard +"@sentry/cli-win32-i686@npm:2.40.0": + version: 2.40.0 + resolution: "@sentry/cli-win32-i686@npm:2.40.0" + conditions: os=win32 & (cpu=x86 | cpu=ia32) + languageName: node + linkType: hard + "@sentry/cli-win32-x64@npm:2.39.1": version: 2.39.1 resolution: "@sentry/cli-win32-x64@npm:2.39.1" @@ -13676,7 +13718,14 @@ __metadata: languageName: node linkType: hard -"@sentry/cli@npm:2.39.1, @sentry/cli@npm:^2.39.1": +"@sentry/cli-win32-x64@npm:2.40.0": + version: 2.40.0 + resolution: "@sentry/cli-win32-x64@npm:2.40.0" + conditions: os=win32 & cpu=x64 + languageName: node + linkType: hard + +"@sentry/cli@npm:2.39.1": version: 2.39.1 resolution: "@sentry/cli@npm:2.39.1" dependencies: @@ -13729,6 +13778,43 @@ __metadata: languageName: node linkType: hard +"@sentry/cli@npm:^2.39.1": + version: 2.40.0 + resolution: "@sentry/cli@npm:2.40.0" + dependencies: + "@sentry/cli-darwin": "npm:2.40.0" + "@sentry/cli-linux-arm": "npm:2.40.0" + "@sentry/cli-linux-arm64": "npm:2.40.0" + "@sentry/cli-linux-i686": "npm:2.40.0" + "@sentry/cli-linux-x64": "npm:2.40.0" + "@sentry/cli-win32-i686": "npm:2.40.0" + "@sentry/cli-win32-x64": "npm:2.40.0" + https-proxy-agent: "npm:^5.0.0" + node-fetch: "npm:^2.6.7" + progress: "npm:^2.0.3" + proxy-from-env: "npm:^1.1.0" + which: "npm:^2.0.2" + dependenciesMeta: + "@sentry/cli-darwin": + optional: true + "@sentry/cli-linux-arm": + optional: true + "@sentry/cli-linux-arm64": + optional: true + "@sentry/cli-linux-i686": + optional: true + "@sentry/cli-linux-x64": + optional: true + "@sentry/cli-win32-i686": + optional: true + "@sentry/cli-win32-x64": + optional: true + bin: + sentry-cli: bin/sentry-cli + checksum: 10c0/16a887b6c55773f3dd53f96cc9d90f85d074361e09738d29da4fc08f12d3b4bf00f075bb486a26a614caf4211be6dcbd07c3fa572bee60fad1d19e980e6cf647 + languageName: node + linkType: hard + "@sentry/core@npm:7.120.2": version: 7.120.2 resolution: "@sentry/core@npm:7.120.2" From 4a53443da6eaa5020fb7de3a0b5756fe97edd55e Mon Sep 17 00:00:00 2001 From: "hash-worker[bot]" <180894564+hash-worker[bot]@users.noreply.github.com> Date: Sat, 4 Jan 2025 18:26:53 +0000 Subject: [PATCH 148/159] Update npm package `eslint-plugin-storybook` to v0.11.2 (#6054) Co-authored-by: hash-worker[bot] <180894564+hash-worker[bot]@users.noreply.github.com> --- .../block-design-system/package.json | 2 +- libs/@hashintel/design-system/package.json | 2 +- libs/@hashintel/query-editor/package.json | 2 +- libs/@hashintel/type-editor/package.json | 2 +- libs/@local/eslint/package.json | 2 +- yarn.lock | 20 +++++++++---------- 6 files changed, 15 insertions(+), 15 deletions(-) diff --git a/libs/@hashintel/block-design-system/package.json b/libs/@hashintel/block-design-system/package.json index 6618d5d0637..5ce48473c61 100644 --- a/libs/@hashintel/block-design-system/package.json +++ b/libs/@hashintel/block-design-system/package.json @@ -47,7 +47,7 @@ "@types/react-dom": "19.0.2", "@types/react-syntax-highlighter": "15.5.13", "eslint": "9.17.0", - "eslint-plugin-storybook": "0.11.1", + "eslint-plugin-storybook": "0.11.2", "react": "19.0.0", "react-dom": "19.0.0", "typescript": "5.7.2" diff --git a/libs/@hashintel/design-system/package.json b/libs/@hashintel/design-system/package.json index 35794f0a481..c8aed892deb 100644 --- a/libs/@hashintel/design-system/package.json +++ b/libs/@hashintel/design-system/package.json @@ -62,7 +62,7 @@ "@types/react": "19.0.1", "@types/react-dom": "19.0.2", "eslint": "9.17.0", - "eslint-plugin-storybook": "0.11.1", + "eslint-plugin-storybook": "0.11.2", "react": "19.0.0", "react-dom": "19.0.0", "typescript": "5.7.2" diff --git a/libs/@hashintel/query-editor/package.json b/libs/@hashintel/query-editor/package.json index 4734d471b3b..55ba885cd42 100644 --- a/libs/@hashintel/query-editor/package.json +++ b/libs/@hashintel/query-editor/package.json @@ -32,7 +32,7 @@ "@mui/material": "5.16.13", "@mui/system": "5.16.13", "eslint": "9.17.0", - "eslint-plugin-storybook": "0.11.1", + "eslint-plugin-storybook": "0.11.2", "react": "19.0.0", "react-dom": "19.0.0", "react-hook-form": "7.54.2", diff --git a/libs/@hashintel/type-editor/package.json b/libs/@hashintel/type-editor/package.json index fbedf6b777d..4df747ba113 100644 --- a/libs/@hashintel/type-editor/package.json +++ b/libs/@hashintel/type-editor/package.json @@ -41,7 +41,7 @@ "@types/lodash.memoize": "4.1.9", "@types/lodash.uniqueid": "4.0.9", "eslint": "9.17.0", - "eslint-plugin-storybook": "0.11.1", + "eslint-plugin-storybook": "0.11.2", "react": "19.0.0", "react-dom": "19.0.0", "react-hook-form": "7.54.2", diff --git a/libs/@local/eslint/package.json b/libs/@local/eslint/package.json index 15692f8a9e1..e62689ed451 100644 --- a/libs/@local/eslint/package.json +++ b/libs/@local/eslint/package.json @@ -35,7 +35,7 @@ "eslint-plugin-canonical": "5.1.2", "eslint-plugin-import": "2.31.0", "eslint-plugin-react-hooks": "5.1.0", - "eslint-plugin-storybook": "0.11.1", + "eslint-plugin-storybook": "0.11.2", "eslint-unicorn": "55.0.0", "globals": "15.14.0" }, diff --git a/yarn.lock b/yarn.lock index bd28194d2e6..606f16eb858 100644 --- a/yarn.lock +++ b/yarn.lock @@ -7902,7 +7902,7 @@ __metadata: "@types/react-dom": "npm:19.0.2" "@types/react-syntax-highlighter": "npm:15.5.13" eslint: "npm:9.17.0" - eslint-plugin-storybook: "npm:0.11.1" + eslint-plugin-storybook: "npm:0.11.2" lowlight: "npm:2.9.0" react: "npm:19.0.0" react-dom: "npm:19.0.0" @@ -7941,7 +7941,7 @@ __metadata: clsx: "npm:1.2.1" echarts: "npm:5.6.0" eslint: "npm:9.17.0" - eslint-plugin-storybook: "npm:0.11.1" + eslint-plugin-storybook: "npm:0.11.2" react: "npm:19.0.0" react-dom: "npm:19.0.0" react-loading-skeleton: "npm:3.5.0" @@ -7971,7 +7971,7 @@ __metadata: "@mui/system": "npm:5.16.13" clsx: "npm:1.2.1" eslint: "npm:9.17.0" - eslint-plugin-storybook: "npm:0.11.1" + eslint-plugin-storybook: "npm:0.11.2" react: "npm:19.0.0" react-dom: "npm:19.0.0" react-hook-form: "npm:7.54.2" @@ -8003,7 +8003,7 @@ __metadata: "@types/lodash.uniqueid": "npm:4.0.9" clsx: "npm:1.2.1" eslint: "npm:9.17.0" - eslint-plugin-storybook: "npm:0.11.1" + eslint-plugin-storybook: "npm:0.11.2" lodash.memoize: "npm:4.1.2" lodash.uniqueid: "npm:4.0.1" material-ui-popup-state: "npm:4.1.0" @@ -9310,7 +9310,7 @@ __metadata: eslint-plugin-canonical: "npm:5.1.2" eslint-plugin-import: "npm:2.31.0" eslint-plugin-react-hooks: "npm:5.1.0" - eslint-plugin-storybook: "npm:0.11.1" + eslint-plugin-storybook: "npm:0.11.2" eslint-unicorn: "npm:55.0.0" globals: "npm:15.14.0" rimraf: "npm:6.0.1" @@ -27046,16 +27046,16 @@ __metadata: languageName: node linkType: hard -"eslint-plugin-storybook@npm:0.11.1": - version: 0.11.1 - resolution: "eslint-plugin-storybook@npm:0.11.1" +"eslint-plugin-storybook@npm:0.11.2": + version: 0.11.2 + resolution: "eslint-plugin-storybook@npm:0.11.2" dependencies: "@storybook/csf": "npm:^0.1.11" "@typescript-eslint/utils": "npm:^8.8.1" ts-dedent: "npm:^2.2.0" peerDependencies: - eslint: ">=6" - checksum: 10c0/0520018311c6da25fe2d0db24a59e99ecefe74c4cadd4eba42ce3b1b0ce2c3cc6f88d48680389374f99e10151a7ef3da52386853d9d5a4058c41ae72e2184549 + eslint: ">=8" + checksum: 10c0/8ba697ec92282b747ba20d8759fd2999b9d35f7a0adb7a809fe36e7baaac142b0f2123f78a87c05b811868d7e62d828ded1855fac4913667c470540dfdf0b3dc languageName: node linkType: hard From 53f32375662fae08a4850b4db73e227203901316 Mon Sep 17 00:00:00 2001 From: "hash-worker[bot]" <180894564+hash-worker[bot]@users.noreply.github.com> Date: Sat, 4 Jan 2025 18:37:47 +0000 Subject: [PATCH 149/159] Update npm package `pdf2json` to v3.1.5 (#6056) Co-authored-by: hash-worker[bot] <180894564+hash-worker[bot]@users.noreply.github.com> --- apps/hash-ai-worker-ts/package.json | 2 +- yarn.lock | 20 ++++++++++---------- 2 files changed, 11 insertions(+), 11 deletions(-) diff --git a/apps/hash-ai-worker-ts/package.json b/apps/hash-ai-worker-ts/package.json index a88fb85e236..9464850d2d4 100644 --- a/apps/hash-ai-worker-ts/package.json +++ b/apps/hash-ai-worker-ts/package.json @@ -84,7 +84,7 @@ "openai": "4.77.0", "openai-chat-tokens": "0.2.8", "papaparse": "5.4.1", - "pdf2json": "3.1.4", + "pdf2json": "3.1.5", "puppeteer": "22.15.0", "puppeteer-extra": "3.3.6", "puppeteer-extra-plugin-stealth": "2.11.2", diff --git a/yarn.lock b/yarn.lock index 606f16eb858..823a3249b0d 100644 --- a/yarn.lock +++ b/yarn.lock @@ -325,7 +325,7 @@ __metadata: openai: "npm:4.77.0" openai-chat-tokens: "npm:0.2.8" papaparse: "npm:5.4.1" - pdf2json: "npm:3.1.4" + pdf2json: "npm:3.1.5" puppeteer: "npm:22.15.0" puppeteer-extra: "npm:3.3.6" puppeteer-extra-plugin-stealth: "npm:2.11.2" @@ -19688,10 +19688,10 @@ __metadata: languageName: node linkType: hard -"@xmldom/xmldom@npm:^0.9.5": - version: 0.9.5 - resolution: "@xmldom/xmldom@npm:0.9.5" - checksum: 10c0/5ff2016050277bcee95f3fb958c442c9aa149214d0e7a72c3c0d3797e9e77a2636398f16b6a50b2bc6540e59150d1bc9c968d01a2bb4a18316ed09f8d22f8d29 +"@xmldom/xmldom@npm:^0.9.5, @xmldom/xmldom@npm:^0.9.6": + version: 0.9.6 + resolution: "@xmldom/xmldom@npm:0.9.6" + checksum: 10c0/154f67a9b3ea0700d5ee88eb6fdf1380cb0eb448337e7e52d6f5f65f19fda362d1dac086f960445bac90475d5a208141619682c981f106c6b581841d05efccd0 languageName: node linkType: hard @@ -38936,14 +38936,14 @@ __metadata: languageName: node linkType: hard -"pdf2json@npm:3.1.4": - version: 3.1.4 - resolution: "pdf2json@npm:3.1.4" +"pdf2json@npm:3.1.5": + version: 3.1.5 + resolution: "pdf2json@npm:3.1.5" dependencies: - "@xmldom/xmldom": "npm:^0.8.10" + "@xmldom/xmldom": "npm:^0.9.6" bin: pdf2json: bin/pdf2json.js - checksum: 10c0/23b0eed2ee9a2e3d0251c97d9f7c82bde2e2ccb3feb335f3539b2c506cdd0e0ccd9947fed0f4394355ffc41c74a15006d69fa8d2c9ebdf382e2bb97939074b6f + checksum: 10c0/598cddfae90b004de171040bb922740de8e6323db3c8c91dec12a496d303e536f58e4f0d4f8e229f2bde137b2ab9de956848b4914e65b34c4c9de8a04cdb41f6 languageName: node linkType: hard From 3fe83da01c4dbbd09ca5e43afef65689b760a342 Mon Sep 17 00:00:00 2001 From: "hash-worker[bot]" <180894564+hash-worker[bot]@users.noreply.github.com> Date: Sat, 4 Jan 2025 18:38:16 +0000 Subject: [PATCH 150/159] Update npm package `sass` to v1.83.1 (#6057) Co-authored-by: hash-worker[bot] <180894564+hash-worker[bot]@users.noreply.github.com> --- apps/hash-frontend/package.json | 2 +- apps/plugin-browser/package.json | 2 +- yarn.lock | 12 ++++++------ 3 files changed, 8 insertions(+), 8 deletions(-) diff --git a/apps/hash-frontend/package.json b/apps/hash-frontend/package.json index 31556ce8e1f..27156d1ac40 100644 --- a/apps/hash-frontend/package.json +++ b/apps/hash-frontend/package.json @@ -150,7 +150,7 @@ "eslint": "9.17.0", "graphology-types": "0.24.8", "rimraf": "6.0.1", - "sass": "1.83.0", + "sass": "1.83.1", "typescript": "5.7.2", "wait-on": "8.0.1", "webpack": "5.97.1" diff --git a/apps/plugin-browser/package.json b/apps/plugin-browser/package.json index 03439671c7e..c89e1d9c703 100755 --- a/apps/plugin-browser/package.json +++ b/apps/plugin-browser/package.json @@ -82,7 +82,7 @@ "react-refresh": "0.16.0", "react-refresh-typescript": "2.0.10", "rimraf": "6.0.1", - "sass": "1.83.0", + "sass": "1.83.1", "sass-loader": "13.3.3", "source-map-loader": "3.0.2", "style-loader": "3.3.4", diff --git a/yarn.lock b/yarn.lock index 823a3249b0d..be199c0386e 100644 --- a/yarn.lock +++ b/yarn.lock @@ -584,7 +584,7 @@ __metadata: rimraf: "npm:6.0.1" rooks: "npm:7.14.1" safe-stable-stringify: "npm:2.5.0" - sass: "npm:1.83.0" + sass: "npm:1.83.1" setimmediate: "npm:1.0.5" sigma: "npm:3.0.0" signia: "npm:0.1.5" @@ -837,7 +837,7 @@ __metadata: react-refresh: "npm:0.16.0" react-refresh-typescript: "npm:2.0.10" rimraf: "npm:6.0.1" - sass: "npm:1.83.0" + sass: "npm:1.83.1" sass-loader: "npm:13.3.3" source-map-loader: "npm:3.0.2" style-loader: "npm:3.3.4" @@ -42739,9 +42739,9 @@ __metadata: languageName: node linkType: hard -"sass@npm:1.83.0, sass@npm:^1.52.3": - version: 1.83.0 - resolution: "sass@npm:1.83.0" +"sass@npm:1.83.1, sass@npm:^1.52.3": + version: 1.83.1 + resolution: "sass@npm:1.83.1" dependencies: "@parcel/watcher": "npm:^2.4.1" chokidar: "npm:^4.0.0" @@ -42752,7 +42752,7 @@ __metadata: optional: true bin: sass: sass.js - checksum: 10c0/4415361229879a9041d77c953da85482e89032aa4321ba13250a9987d39c80fac6c88af3777f2a2d76a4e8b0c8afbd21c1970fdbe84e0b3ec25fb26741f92beb + checksum: 10c0/9772506cd8290df7b5e800055098e91a8a65100840fd9e90c660deb74b248b3ddbbd1a274b8f7f09777d472d2c873575357bd87939a40fb5a80bdf654985486f languageName: node linkType: hard From 6ec4f69980ece42ad71c6dbceb974de205c72107 Mon Sep 17 00:00:00 2001 From: "hash-worker[bot]" <180894564+hash-worker[bot]@users.noreply.github.com> Date: Sat, 4 Jan 2025 19:40:40 +0000 Subject: [PATCH 151/159] Update npm package `openai` to v4.77.3 (#6055) Co-authored-by: hash-worker[bot] <180894564+hash-worker[bot]@users.noreply.github.com> --- apps/hash-ai-worker-ts/package.json | 2 +- apps/hash-api/package.json | 2 +- yarn.lock | 12 ++++++------ 3 files changed, 8 insertions(+), 8 deletions(-) diff --git a/apps/hash-ai-worker-ts/package.json b/apps/hash-ai-worker-ts/package.json index 9464850d2d4..1d113a960c8 100644 --- a/apps/hash-ai-worker-ts/package.json +++ b/apps/hash-ai-worker-ts/package.json @@ -81,7 +81,7 @@ "md5": "2.3.0", "mime-types": "2.1.35", "officeparser": "4.2.0", - "openai": "4.77.0", + "openai": "4.77.3", "openai-chat-tokens": "0.2.8", "papaparse": "5.4.1", "pdf2json": "3.1.5", diff --git a/apps/hash-api/package.json b/apps/hash-api/package.json index 28ae5317351..35e9655c2ff 100644 --- a/apps/hash-api/package.json +++ b/apps/hash-api/package.json @@ -99,7 +99,7 @@ "nanoid": "3.3.8", "nodemailer": "6.9.16", "oembed-providers": "1.0.20241022", - "openai": "4.77.0", + "openai": "4.77.3", "ts-json-schema-generator": "1.5.1", "tsx": "4.19.2", "typescript": "5.7.2", diff --git a/yarn.lock b/yarn.lock index be199c0386e..1547a3b4a40 100644 --- a/yarn.lock +++ b/yarn.lock @@ -322,7 +322,7 @@ __metadata: md5: "npm:2.3.0" mime-types: "npm:2.1.35" officeparser: "npm:4.2.0" - openai: "npm:4.77.0" + openai: "npm:4.77.3" openai-chat-tokens: "npm:0.2.8" papaparse: "npm:5.4.1" pdf2json: "npm:3.1.5" @@ -439,7 +439,7 @@ __metadata: nanoid: "npm:3.3.8" nodemailer: "npm:6.9.16" oembed-providers: "npm:1.0.20241022" - openai: "npm:4.77.0" + openai: "npm:4.77.3" prettier: "npm:3.4.2" rimraf: "npm:6.0.1" ts-json-schema-generator: "npm:1.5.1" @@ -38107,9 +38107,9 @@ __metadata: languageName: node linkType: hard -"openai@npm:4.77.0, openai@npm:^4.73.1": - version: 4.77.0 - resolution: "openai@npm:4.77.0" +"openai@npm:4.77.3, openai@npm:^4.73.1": + version: 4.77.3 + resolution: "openai@npm:4.77.3" dependencies: "@types/node": "npm:^18.11.18" "@types/node-fetch": "npm:^2.6.4" @@ -38125,7 +38125,7 @@ __metadata: optional: true bin: openai: bin/cli - checksum: 10c0/438e5acbcdc592ff192f294e936c10a8b71edf898b53afacb937da45f8d4e221e041bfcc84d6174c8dcb9ed4080b32760f8d94de1fcec7ab889046f1e1173f68 + checksum: 10c0/b90a4071cc1a8257339e3001377396226422519d168ae3c05b5abc662bbac2009c5ccd37f0112c431b0ce45d83e616305ee264846ddb2f2129f186faf9b5a8cc languageName: node linkType: hard From 803c4b99b5f52fef45010516fd622466e883d8d7 Mon Sep 17 00:00:00 2001 From: "hash-worker[bot]" <180894564+hash-worker[bot]@users.noreply.github.com> Date: Sun, 5 Jan 2025 00:46:37 +0000 Subject: [PATCH 152/159] Update Rust crate `insta` to v1.42.0 (#6058) Co-authored-by: hash-worker[bot] <180894564+hash-worker[bot]@users.noreply.github.com> --- Cargo.lock | 6 +++--- Cargo.toml | 2 +- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index e4cb2c2af93..ae687f28041 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -3761,12 +3761,12 @@ dependencies = [ [[package]] name = "insta" -version = "1.41.1" +version = "1.42.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "7e9ffc4d4892617c50a928c52b2961cb5174b6fc6ebf252b2fac9d21955c48b8" +checksum = "6513e4067e16e69ed1db5ab56048ed65db32d10ba5fc1217f5393f8f17d8b5a5" dependencies = [ - "lazy_static", "linked-hash-map", + "once_cell", "regex", "ron", "serde", diff --git a/Cargo.toml b/Cargo.toml index 55a422a109f..2d6b78d5cf3 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -173,7 +173,7 @@ hifijson = { version = "=0.2.2", default-features = false } humansize = { version = "=2.1.3", default-features = false } hyper = { version = "=1.5.2", default-features = false } include_dir = { version = "=0.7.4", default-features = false } -insta = { version = "=1.41.1", default-features = false } +insta = { version = "=1.42.0", default-features = false } itertools = { version = "0.14.0", default-features = false } jsonschema = { version = "=0.28.1", default-features = false } justjson = { version = "=0.3.0", default-features = false } From ecd84234e349183e8dbc0cf72ea7c78f3f1bb676 Mon Sep 17 00:00:00 2001 From: "hash-worker[bot]" <180894564+hash-worker[bot]@users.noreply.github.com> Date: Sun, 5 Jan 2025 06:28:18 +0000 Subject: [PATCH 153/159] Update Rust crate `syn` to v2.0.95 (#6059) Co-authored-by: hash-worker[bot] <180894564+hash-worker[bot]@users.noreply.github.com> --- Cargo.lock | 124 ++++++++++++++++++++++++++--------------------------- Cargo.toml | 2 +- 2 files changed, 63 insertions(+), 63 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index ae687f28041..9544c65d19d 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -213,7 +213,7 @@ checksum = "0ae92a5119aa49cdbcf6b9f893fe4e1d98b04ccbf82ee0584ad948a44a734dea" dependencies = [ "proc-macro2", "quote", - "syn 2.0.94", + "syn 2.0.95", ] [[package]] @@ -262,7 +262,7 @@ checksum = "965c2d33e53cb6b267e148a4cb0760bc01f4904c1cd4bb4002a085bb016d1490" dependencies = [ "proc-macro2", "quote", - "syn 2.0.94", + "syn 2.0.95", "synstructure", ] @@ -274,7 +274,7 @@ checksum = "7b18050c2cd6fe86c3a76584ef5e0baf286d038cda203eb6223df2cc413565f7" dependencies = [ "proc-macro2", "quote", - "syn 2.0.94", + "syn 2.0.95", ] [[package]] @@ -347,7 +347,7 @@ checksum = "c7c24de15d275a1ecfd47a380fb4d5ec9bfe0933f309ed5e705b775596a3574d" dependencies = [ "proc-macro2", "quote", - "syn 2.0.94", + "syn 2.0.95", ] [[package]] @@ -358,7 +358,7 @@ checksum = "1b1244b10dcd56c92219da4e14caa97e312079e185f04ba3eea25061561dc0a0" dependencies = [ "proc-macro2", "quote", - "syn 2.0.94", + "syn 2.0.95", ] [[package]] @@ -1274,7 +1274,7 @@ dependencies = [ "heck 0.5.0", "proc-macro2", "quote", - "syn 2.0.94", + "syn 2.0.95", ] [[package]] @@ -1535,7 +1535,7 @@ checksum = "f46882e17999c6cc590af592290432be3bce0428cb0d5f8b6715e4dc7b383eb3" dependencies = [ "proc-macro2", "quote", - "syn 2.0.94", + "syn 2.0.95", ] [[package]] @@ -1559,7 +1559,7 @@ dependencies = [ "proc-macro2", "quote", "strsim", - "syn 2.0.94", + "syn 2.0.95", ] [[package]] @@ -1570,7 +1570,7 @@ checksum = "d336a2a514f6ccccaa3e09b02d41d35330c07ddf03a62165fcec10bb561c7806" dependencies = [ "darling_core", "quote", - "syn 2.0.94", + "syn 2.0.95", ] [[package]] @@ -1729,7 +1729,7 @@ checksum = "62d671cc41a825ebabc75757b62d3d168c577f9149b2d49ece1dad1f72119d25" dependencies = [ "proc-macro2", "quote", - "syn 2.0.94", + "syn 2.0.95", ] [[package]] @@ -1750,7 +1750,7 @@ dependencies = [ "darling", "proc-macro2", "quote", - "syn 2.0.94", + "syn 2.0.95", ] [[package]] @@ -1760,7 +1760,7 @@ source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "ab63b0e2bf4d5928aff72e83a7dace85d7bba5fe12dcc3c5a572d78caffd3f3c" dependencies = [ "derive_builder_core", - "syn 2.0.94", + "syn 2.0.95", ] [[package]] @@ -1780,7 +1780,7 @@ checksum = "cb7330aeadfbe296029522e6c40f315320aba36fc43a5b3632f3795348f3bd22" dependencies = [ "proc-macro2", "quote", - "syn 2.0.94", + "syn 2.0.95", "unicode-xid", ] @@ -1819,7 +1819,7 @@ checksum = "97369cbbc041bc366949bc74d34658d6cda5621039731c6310521892a3a20ae0" dependencies = [ "proc-macro2", "quote", - "syn 2.0.94", + "syn 2.0.95", ] [[package]] @@ -1880,7 +1880,7 @@ dependencies = [ "enum-ordinalize", "proc-macro2", "quote", - "syn 2.0.94", + "syn 2.0.95", ] [[package]] @@ -1913,7 +1913,7 @@ dependencies = [ "heck 0.5.0", "proc-macro2", "quote", - "syn 2.0.94", + "syn 2.0.95", ] [[package]] @@ -1933,7 +1933,7 @@ checksum = "0d28318a75d4aead5c4db25382e8ef717932d0346600cacae6357eb5941bc5ff" dependencies = [ "proc-macro2", "quote", - "syn 2.0.94", + "syn 2.0.95", ] [[package]] @@ -1954,7 +1954,7 @@ checksum = "de0d48a183585823424a4ce1aa132d174a6a81bd540895822eb4c8373a8e49e8" dependencies = [ "proc-macro2", "quote", - "syn 2.0.94", + "syn 2.0.95", ] [[package]] @@ -2207,7 +2207,7 @@ checksum = "e99b8b3c28ae0e84b604c75f721c21dc77afb3706076af5e8216d15fd1deaae3" dependencies = [ "frunk_proc_macro_helpers", "quote", - "syn 2.0.94", + "syn 2.0.95", ] [[package]] @@ -2219,7 +2219,7 @@ dependencies = [ "frunk_core", "proc-macro2", "quote", - "syn 2.0.94", + "syn 2.0.95", ] [[package]] @@ -2231,7 +2231,7 @@ dependencies = [ "frunk_core", "frunk_proc_macro_helpers", "quote", - "syn 2.0.94", + "syn 2.0.95", ] [[package]] @@ -2317,7 +2317,7 @@ checksum = "162ee34ebcb7c64a8abebc059ce0fee27c2262618d7b60ed8faf72fef13c3650" dependencies = [ "proc-macro2", "quote", - "syn 2.0.94", + "syn 2.0.95", ] [[package]] @@ -2880,7 +2880,7 @@ dependencies = [ "quote", "regex", "sha2", - "syn 2.0.94", + "syn 2.0.95", "walkdir", ] @@ -3790,7 +3790,7 @@ checksum = "c34819042dc3d3971c46c2190835914dfbe0c3c13f61449b2997f4e9722dfa60" dependencies = [ "proc-macro2", "quote", - "syn 2.0.94", + "syn 2.0.95", ] [[package]] @@ -4387,7 +4387,7 @@ dependencies = [ "heck 0.5.0", "proc-macro2", "quote", - "syn 2.0.94", + "syn 2.0.95", ] [[package]] @@ -4507,7 +4507,7 @@ dependencies = [ "quote", "regex-syntax 0.8.5", "rustc_version", - "syn 2.0.94", + "syn 2.0.95", ] [[package]] @@ -4893,7 +4893,7 @@ checksum = "ed3955f1a9c7c0c15e092f9c887db08b1fc683305fdf6eb6684f22555355e202" dependencies = [ "proc-macro2", "quote", - "syn 2.0.94", + "syn 2.0.95", ] [[package]] @@ -5323,7 +5323,7 @@ checksum = "3c0f5fad0874fc7abcd4d750e76917eaebbecaa2c20bde22e1dbeeba8beb758c" dependencies = [ "proc-macro2", "quote", - "syn 2.0.94", + "syn 2.0.95", ] [[package]] @@ -5448,7 +5448,7 @@ dependencies = [ "heck 0.5.0", "proc-macro2", "quote", - "syn 2.0.94", + "syn 2.0.95", ] [[package]] @@ -5517,7 +5517,7 @@ source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "479cf940fbbb3426c32c5d5176f62ad57549a0bb84773423ba8be9d089f5faba" dependencies = [ "proc-macro2", - "syn 2.0.94", + "syn 2.0.95", ] [[package]] @@ -5590,7 +5590,7 @@ source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "a65f2e60fbf1063868558d69c6beacf412dc755f9fc020f514b7955fc914fe30" dependencies = [ "quote", - "syn 2.0.94", + "syn 2.0.95", ] [[package]] @@ -5613,7 +5613,7 @@ checksum = "440f724eba9f6996b75d63681b0a92b06947f1457076d503a4d2e2c8f56442b8" dependencies = [ "proc-macro2", "quote", - "syn 2.0.94", + "syn 2.0.95", ] [[package]] @@ -5659,7 +5659,7 @@ dependencies = [ "prost", "prost-types", "regex", - "syn 2.0.94", + "syn 2.0.95", "tempfile", ] @@ -5673,7 +5673,7 @@ dependencies = [ "itertools 0.13.0", "proc-macro2", "quote", - "syn 2.0.94", + "syn 2.0.95", ] [[package]] @@ -5994,7 +5994,7 @@ checksum = "bcc303e793d3734489387d205e9b186fac9c6cfacedd98cbb2e8a5943595f3e6" dependencies = [ "proc-macro2", "quote", - "syn 2.0.94", + "syn 2.0.95", ] [[package]] @@ -6050,7 +6050,7 @@ dependencies = [ "quote", "refinery-core", "regex", - "syn 2.0.94", + "syn 2.0.95", ] [[package]] @@ -6643,7 +6643,7 @@ checksum = "5a9bf7cf98d04a2b28aead066b7496853d4779c9cc183c440dbac457641e19a0" dependencies = [ "proc-macro2", "quote", - "syn 2.0.94", + "syn 2.0.95", ] [[package]] @@ -6654,7 +6654,7 @@ checksum = "e578a843d40b4189a4d66bba51d7684f57da5bd7c304c64e14bd63efbef49509" dependencies = [ "proc-macro2", "quote", - "syn 2.0.94", + "syn 2.0.95", ] [[package]] @@ -6736,7 +6736,7 @@ dependencies = [ "darling", "proc-macro2", "quote", - "syn 2.0.94", + "syn 2.0.95", ] [[package]] @@ -6955,7 +6955,7 @@ dependencies = [ "proc-macro2", "quote", "structmeta-derive", - "syn 2.0.94", + "syn 2.0.95", ] [[package]] @@ -6966,7 +6966,7 @@ checksum = "152a0b65a590ff6c3da95cabe2353ee04e6167c896b28e3b14478c2636c922fc" dependencies = [ "proc-macro2", "quote", - "syn 2.0.94", + "syn 2.0.95", ] [[package]] @@ -7003,9 +7003,9 @@ dependencies = [ [[package]] name = "syn" -version = "2.0.94" +version = "2.0.95" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "987bc0be1cdea8b10216bd06e2ca407d40b9543468fafd3ddfb02f36e77f71f3" +checksum = "46f71c0377baf4ef1cc3e3402ded576dccc315800fbc62dfc7fe04b009773b4a" dependencies = [ "proc-macro2", "quote", @@ -7029,7 +7029,7 @@ checksum = "c8af7666ab7b6390ab78131fb5b0fce11d6b7a6951602017c35fa82800708971" dependencies = [ "proc-macro2", "quote", - "syn 2.0.94", + "syn 2.0.95", ] [[package]] @@ -7130,7 +7130,7 @@ checksum = "e0e3d9676af494694e11a3e367a4bfa7f6d1d5566bd0fe9aceb4aa9281122ab8" dependencies = [ "proc-macro2", "quote", - "syn 2.0.94", + "syn 2.0.95", ] [[package]] @@ -7271,7 +7271,7 @@ dependencies = [ "prettyplease", "proc-macro2", "quote", - "syn 2.0.94", + "syn 2.0.95", ] [[package]] @@ -7305,7 +7305,7 @@ checksum = "5999e24eaa32083191ba4e425deb75cdf25efefabe5aaccb7446dd0d4122a3f5" dependencies = [ "proc-macro2", "quote", - "syn 2.0.94", + "syn 2.0.95", ] [[package]] @@ -7317,7 +7317,7 @@ dependencies = [ "proc-macro2", "quote", "structmeta", - "syn 2.0.94", + "syn 2.0.95", ] [[package]] @@ -7355,7 +7355,7 @@ checksum = "4fee6c4efc90059e10f81e6d42c60a18f76588c3d74cb83a0b242a2b6c7504c1" dependencies = [ "proc-macro2", "quote", - "syn 2.0.94", + "syn 2.0.95", ] [[package]] @@ -7366,7 +7366,7 @@ checksum = "7b50fa271071aae2e6ee85f842e2e28ba8cd2c5fb67f11fcb1fd70b276f9e7d4" dependencies = [ "proc-macro2", "quote", - "syn 2.0.94", + "syn 2.0.95", ] [[package]] @@ -7471,7 +7471,7 @@ checksum = "693d596312e88961bc67d7f1f97af8a70227d9f90c31bba5806eec004978d752" dependencies = [ "proc-macro2", "quote", - "syn 2.0.94", + "syn 2.0.95", ] [[package]] @@ -7657,7 +7657,7 @@ dependencies = [ "prost-build", "prost-types", "quote", - "syn 2.0.94", + "syn 2.0.95", ] [[package]] @@ -7770,7 +7770,7 @@ checksum = "395ae124c09f9e6918a2310af6038fba074bcf474ac352496d5910dd59a2226d" dependencies = [ "proc-macro2", "quote", - "syn 2.0.94", + "syn 2.0.95", ] [[package]] @@ -7886,7 +7886,7 @@ checksum = "70977707304198400eb4835a78f6a9f928bf41bba420deb8fdb175cd965d77a7" dependencies = [ "proc-macro2", "quote", - "syn 2.0.94", + "syn 2.0.95", ] [[package]] @@ -7932,7 +7932,7 @@ dependencies = [ "proc-macro2", "quote", "serde_derive_internals", - "syn 2.0.94", + "syn 2.0.95", ] [[package]] @@ -7997,7 +7997,7 @@ checksum = "70b20a22c42c8f1cd23ce5e34f165d4d37038f5b663ad20fb6adbdf029172483" dependencies = [ "proc-macro2", "quote", - "syn 2.0.94", + "syn 2.0.95", ] [[package]] @@ -8175,7 +8175,7 @@ dependencies = [ "proc-macro-error", "proc-macro2", "quote", - "syn 2.0.94", + "syn 2.0.95", "url", "uuid", ] @@ -8312,7 +8312,7 @@ dependencies = [ "log", "proc-macro2", "quote", - "syn 2.0.94", + "syn 2.0.95", "wasm-bindgen-shared", ] @@ -8347,7 +8347,7 @@ checksum = "30d7a95b763d3c45903ed6c81f156801839e5ee968bb07e534c44df0fcd330c2" dependencies = [ "proc-macro2", "quote", - "syn 2.0.94", + "syn 2.0.95", "wasm-bindgen-backend", "wasm-bindgen-shared", ] @@ -8380,7 +8380,7 @@ checksum = "54171416ce73aa0b9c377b51cc3cb542becee1cd678204812e8392e5b0e4a031" dependencies = [ "proc-macro2", "quote", - "syn 2.0.94", + "syn 2.0.95", ] [[package]] @@ -8846,7 +8846,7 @@ checksum = "fa4f8080344d4671fb4e831a13ad1e68092748387dfc4f55e356242fae12ce3e" dependencies = [ "proc-macro2", "quote", - "syn 2.0.94", + "syn 2.0.95", ] [[package]] @@ -8866,7 +8866,7 @@ checksum = "ce36e65b0d2999d2aafac989fb249189a141aee1f53c612c1f37d72631959f69" dependencies = [ "proc-macro2", "quote", - "syn 2.0.94", + "syn 2.0.95", ] [[package]] diff --git a/Cargo.toml b/Cargo.toml index 2d6b78d5cf3..571bb690a6c 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -212,7 +212,7 @@ sha2 = { version = "=0.10.8", default-features = false } similar-asserts = { version = "=1.6.0", default-features = false } supports-color = { version = "=3.0.2", default-features = false } supports-unicode = { version = "=3.0.0", default-features = false } -syn = { version = "=2.0.94", default-features = false } +syn = { version = "=2.0.95", default-features = false } tachyonix = { version = "=0.3.1", default-features = false } tarpc = { version = "=0.35.0", default-features = false } temporal-client = { git = "https://github.com/temporalio/sdk-core", rev = "4a2368d" } From 0a83aa9037f79113e3e28f9cd6a36f87d2848356 Mon Sep 17 00:00:00 2001 From: "hash-worker[bot]" <180894564+hash-worker[bot]@users.noreply.github.com> Date: Sun, 5 Jan 2025 08:55:35 +0000 Subject: [PATCH 154/159] Update Rust crate `inferno` to v0.12.1 (#6060) Co-authored-by: hash-worker[bot] <180894564+hash-worker[bot]@users.noreply.github.com> --- Cargo.lock | 4 ++-- Cargo.toml | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index 9544c65d19d..09c98ef3745 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -3736,9 +3736,9 @@ dependencies = [ [[package]] name = "inferno" -version = "0.12.0" +version = "0.12.1" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "75a5d75fee4d36809e6b021e4b96b686e763d365ffdb03af2bd00786353f84fe" +checksum = "692eda1cc790750b9f5a5e3921ef9c117fd5498b97cfacbc910693e5b29002dc" dependencies = [ "ahash", "itoa", diff --git a/Cargo.toml b/Cargo.toml index 571bb690a6c..149d24c04e0 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -113,7 +113,7 @@ futures-util = { version = "=0.3.31", default-features = false } hashbrown = { version = "=0.15.2", default-features = false, features = ["inline-more", "nightly"] } http = { version = "=1.2.0", default-features = false } image = { version = "0.25.0", default-features = false } -inferno = { version = "=0.12.0", default-features = false } +inferno = { version = "=0.12.1", default-features = false } iso8601-duration = { version = "=0.2.0", default-features = false } json-number = { version = "=0.4.9", default-features = false } jsonptr = { version = "=0.6.3", default-features = false } From e876f803f208a378cca6d72755b528113595588f Mon Sep 17 00:00:00 2001 From: "hash-worker[bot]" <180894564+hash-worker[bot]@users.noreply.github.com> Date: Sun, 5 Jan 2025 09:59:23 +0000 Subject: [PATCH 155/159] Update npm package `@effect/vitest` to v0.16.1 (#6062) Co-authored-by: hash-worker[bot] <180894564+hash-worker[bot]@users.noreply.github.com> --- libs/@local/harpc/client/typescript/package.json | 2 +- yarn.lock | 12 ++++++------ 2 files changed, 7 insertions(+), 7 deletions(-) diff --git a/libs/@local/harpc/client/typescript/package.json b/libs/@local/harpc/client/typescript/package.json index 4ecb55ac4b8..e7f4c81df43 100644 --- a/libs/@local/harpc/client/typescript/package.json +++ b/libs/@local/harpc/client/typescript/package.json @@ -41,7 +41,7 @@ "devDependencies": { "@effect/platform": "0.72.0", "@effect/platform-node": "0.68.0", - "@effect/vitest": "0.16.0", + "@effect/vitest": "0.16.1", "@local/eslint": "0.0.0-private", "@local/tsconfig": "0.0.0-private", "@rust/harpc-wire-protocol": "0.0.0-private", diff --git a/yarn.lock b/yarn.lock index 1547a3b4a40..ca7d820d1d4 100644 --- a/yarn.lock +++ b/yarn.lock @@ -5838,13 +5838,13 @@ __metadata: languageName: node linkType: hard -"@effect/vitest@npm:0.16.0": - version: 0.16.0 - resolution: "@effect/vitest@npm:0.16.0" +"@effect/vitest@npm:0.16.1": + version: 0.16.1 + resolution: "@effect/vitest@npm:0.16.1" peerDependencies: - effect: ^3.12.0 + effect: ^3.12.1 vitest: ^2.0.5 - checksum: 10c0/6417db36c49f42752ea520858c8b4f7de0d201c012c4a090185b32ce206251f8f5674d62d75bd8c732cd1638bf7185b52c9b77bd3464805539e2d153960d3322 + checksum: 10c0/97bf9773b58e8708388b0a29e34ed9c58a3c0df0a56b51560af7cbcde2d8c33e53b3382fd3723eaefda5a7d7e8230def042180335080d50ff4b09e7985cedacb languageName: node linkType: hard @@ -9326,7 +9326,7 @@ __metadata: "@chainsafe/libp2p-yamux": "npm:7.0.1" "@effect/platform": "npm:0.72.0" "@effect/platform-node": "npm:0.68.0" - "@effect/vitest": "npm:0.16.0" + "@effect/vitest": "npm:0.16.1" "@libp2p/crypto": "npm:5.0.8" "@libp2p/identify": "npm:3.0.14" "@libp2p/interface": "npm:2.3.0" From 49c7baad3934d0d16e1a60f26ee6d36f6d8f3daa Mon Sep 17 00:00:00 2001 From: "hash-worker[bot]" <180894564+hash-worker[bot]@users.noreply.github.com> Date: Sun, 5 Jan 2025 10:05:07 +0000 Subject: [PATCH 156/159] Update npm package `serialize-error` to v12 (#6063) Co-authored-by: hash-worker[bot] <180894564+hash-worker[bot]@users.noreply.github.com> --- .../@local/hash-isomorphic-utils/package.json | 2 +- yarn.lock | 22 +++++++++---------- 2 files changed, 12 insertions(+), 12 deletions(-) diff --git a/libs/@local/hash-isomorphic-utils/package.json b/libs/@local/hash-isomorphic-utils/package.json index 3bf6646c4c9..de28bc7d113 100644 --- a/libs/@local/hash-isomorphic-utils/package.json +++ b/libs/@local/hash-isomorphic-utils/package.json @@ -49,7 +49,7 @@ "prosemirror-state": "1.4.3", "prosemirror-transform": "1.7.0", "prosemirror-view": "patch:prosemirror-view@npm%3A1.29.1#~/.yarn/patches/prosemirror-view-npm-1.29.1-ff37db4eea.patch", - "serialize-error": "11.0.3", + "serialize-error": "12.0.0", "tsx": "4.19.2", "uuid": "11.0.3" }, diff --git a/yarn.lock b/yarn.lock index ca7d820d1d4..c09d54aacc4 100644 --- a/yarn.lock +++ b/yarn.lock @@ -9497,7 +9497,7 @@ __metadata: prosemirror-view: "patch:prosemirror-view@npm%3A1.29.1#~/.yarn/patches/prosemirror-view-npm-1.29.1-ff37db4eea.patch" react: "npm:19.0.0" rimraf: "npm:6.0.1" - serialize-error: "npm:11.0.3" + serialize-error: "npm:12.0.0" tsx: "npm:4.19.2" typescript: "npm:5.7.2" uuid: "npm:11.0.3" @@ -43007,12 +43007,12 @@ __metadata: languageName: node linkType: hard -"serialize-error@npm:11.0.3": - version: 11.0.3 - resolution: "serialize-error@npm:11.0.3" +"serialize-error@npm:12.0.0": + version: 12.0.0 + resolution: "serialize-error@npm:12.0.0" dependencies: - type-fest: "npm:^2.12.2" - checksum: 10c0/7263603883b8936650819f0fd5150d41427b317432678b21722c54b85367ae15b8552865eb7f3f39ba71a32a003730a2e2e971e6909431eb54db70a3ef8eca17 + type-fest: "npm:^4.31.0" + checksum: 10c0/d8422db262dd28422834e0acdaaa2425ba6735f791417cfbcbceb201ddea0e41ccd2865778afeb9b33c28273f01e89a4503fa670f82c0a387de61e2b0f8d74e4 languageName: node linkType: hard @@ -46219,17 +46219,17 @@ __metadata: languageName: node linkType: hard -"type-fest@npm:^2.12.2, type-fest@npm:^2.19.0, type-fest@npm:^2.3.3, type-fest@npm:~2.19": +"type-fest@npm:^2.19.0, type-fest@npm:^2.3.3, type-fest@npm:~2.19": version: 2.19.0 resolution: "type-fest@npm:2.19.0" checksum: 10c0/a5a7ecf2e654251613218c215c7493574594951c08e52ab9881c9df6a6da0aeca7528c213c622bc374b4e0cb5c443aa3ab758da4e3c959783ce884c3194e12cb languageName: node linkType: hard -"type-fest@npm:^4.30.0, type-fest@npm:^4.6.0, type-fest@npm:^4.7.1": - version: 4.30.2 - resolution: "type-fest@npm:4.30.2" - checksum: 10c0/c28db60ff57223fb23180e66bd9652fb3197fb533e9360f9ee76e66c3ccb6849b292df5e8fa5897f215f6685357dd31c946511da56be549cb5de9d42ac9ea67d +"type-fest@npm:^4.30.0, type-fest@npm:^4.31.0, type-fest@npm:^4.6.0, type-fest@npm:^4.7.1": + version: 4.31.0 + resolution: "type-fest@npm:4.31.0" + checksum: 10c0/a5bb69e3b0f82e068af8c645ac3d50b1fa5c588ebc83735a6add4ef6dacf277bb3605801f66c72c069af20120ee7387a3ae6dd84e12c152f5982784c710b4051 languageName: node linkType: hard From 8df3e8d92faf220c5348cffa4e139689a1cd2d17 Mon Sep 17 00:00:00 2001 From: "hash-worker[bot]" <180894564+hash-worker[bot]@users.noreply.github.com> Date: Sun, 5 Jan 2025 10:54:46 +0000 Subject: [PATCH 157/159] Update `effect` npm packages (#6061) Co-authored-by: hash-worker[bot] <180894564+hash-worker[bot]@users.noreply.github.com> --- apps/hash-api/package.json | 2 +- libs/@local/eslint/package.json | 2 +- libs/@local/graph/sdk/typescript/package.json | 2 +- .../harpc/client/typescript/package.json | 6 +- yarn.lock | 56 +++++++++---------- 5 files changed, 34 insertions(+), 34 deletions(-) diff --git a/apps/hash-api/package.json b/apps/hash-api/package.json index 35e9655c2ff..b9ec4755d0a 100644 --- a/apps/hash-api/package.json +++ b/apps/hash-api/package.json @@ -73,7 +73,7 @@ "cors": "2.8.5", "cross-env": "7.0.3", "dedent": "0.7.0", - "effect": "3.12.0", + "effect": "3.12.1", "exponential-backoff": "3.1.1", "express": "4.21.2", "express-handlebars": "7.1.3", diff --git a/libs/@local/eslint/package.json b/libs/@local/eslint/package.json index e62689ed451..fa373462746 100644 --- a/libs/@local/eslint/package.json +++ b/libs/@local/eslint/package.json @@ -24,7 +24,7 @@ "@babel/eslint-parser": "7.25.9", "@eslint/compat": "1.2.4", "@eslint/eslintrc": "3.2.0", - "effect": "3.12.0", + "effect": "3.12.1", "eslint": "9.17.0", "eslint-config-airbnb": "19.0.4", "eslint-config-flat-gitignore": "0.3.0", diff --git a/libs/@local/graph/sdk/typescript/package.json b/libs/@local/graph/sdk/typescript/package.json index c416da00ff3..8959e365a60 100644 --- a/libs/@local/graph/sdk/typescript/package.json +++ b/libs/@local/graph/sdk/typescript/package.json @@ -28,7 +28,7 @@ "@local/harpc-client": "0.0.0-private", "@local/hash-graph-client": "0.0.0-private", "@local/hash-graph-types": "0.0.0-private", - "effect": "3.12.0" + "effect": "3.12.1" }, "devDependencies": { "@local/eslint": "0.0.0-private", diff --git a/libs/@local/harpc/client/typescript/package.json b/libs/@local/harpc/client/typescript/package.json index e7f4c81df43..f7002a35835 100644 --- a/libs/@local/harpc/client/typescript/package.json +++ b/libs/@local/harpc/client/typescript/package.json @@ -32,15 +32,15 @@ "@libp2p/tcp": "10.0.14", "@multiformats/dns": "1.0.6", "@multiformats/multiaddr": "12.3.4", - "effect": "3.12.0", + "effect": "3.12.1", "it-stream-types": "2.0.2", "libp2p": "2.4.2", "multiformats": "13.3.1", "uint8arraylist": "2.4.8" }, "devDependencies": { - "@effect/platform": "0.72.0", - "@effect/platform-node": "0.68.0", + "@effect/platform": "0.72.1", + "@effect/platform-node": "0.68.1", "@effect/vitest": "0.16.1", "@local/eslint": "0.0.0-private", "@local/tsconfig": "0.0.0-private", diff --git a/yarn.lock b/yarn.lock index c09d54aacc4..2fd152978df 100644 --- a/yarn.lock +++ b/yarn.lock @@ -412,7 +412,7 @@ __metadata: cors: "npm:2.8.5" cross-env: "npm:7.0.3" dedent: "npm:0.7.0" - effect: "npm:3.12.0" + effect: "npm:3.12.1" eslint: "npm:9.17.0" exponential-backoff: "npm:3.1.1" express: "npm:4.21.2" @@ -5798,43 +5798,43 @@ __metadata: languageName: node linkType: hard -"@effect/platform-node-shared@npm:^0.22.0": - version: 0.22.0 - resolution: "@effect/platform-node-shared@npm:0.22.0" +"@effect/platform-node-shared@npm:^0.22.1": + version: 0.22.1 + resolution: "@effect/platform-node-shared@npm:0.22.1" dependencies: "@parcel/watcher": "npm:^2.4.1" multipasta: "npm:^0.2.5" peerDependencies: - "@effect/platform": ^0.72.0 - effect: ^3.12.0 - checksum: 10c0/3c4b669bb0f19b875b2b3c9c767b78b34c590c49c7ef23311d0b1f04b47db335a1a47ef07706da4009887b1fab344c72ea81a576875ab3f0254edf14cfa2e16e + "@effect/platform": ^0.72.1 + effect: ^3.12.1 + checksum: 10c0/5b352983e12aaad25ad8960b855e8c36cebba4ded6fc420b7e69c7f3c7389a87e46733e4890a97364dcd77d03bf44845729fde8570afb08c8ff30550e51e0a77 languageName: node linkType: hard -"@effect/platform-node@npm:0.68.0": - version: 0.68.0 - resolution: "@effect/platform-node@npm:0.68.0" +"@effect/platform-node@npm:0.68.1": + version: 0.68.1 + resolution: "@effect/platform-node@npm:0.68.1" dependencies: - "@effect/platform-node-shared": "npm:^0.22.0" + "@effect/platform-node-shared": "npm:^0.22.1" mime: "npm:^3.0.0" undici: "npm:^7.1.0" ws: "npm:^8.18.0" peerDependencies: - "@effect/platform": ^0.72.0 - effect: ^3.12.0 - checksum: 10c0/e9684cdf49685b7bd51e21b0e9c3668a867e0eee704ccc89530460f6dca1997fff75f4c95b492d2e5ac472e4153531a6ed8e7eda88ffb79b2e43d7a5df5f8d65 + "@effect/platform": ^0.72.1 + effect: ^3.12.1 + checksum: 10c0/7573977aeeafe534ceeaa58bb19067e8574cbab7ab6620a583b7aac893548937a31baa96c33e68762a1497addc20cd1cbfed983e767de3e2e0f5ae03f66bf773 languageName: node linkType: hard -"@effect/platform@npm:0.72.0": - version: 0.72.0 - resolution: "@effect/platform@npm:0.72.0" +"@effect/platform@npm:0.72.1": + version: 0.72.1 + resolution: "@effect/platform@npm:0.72.1" dependencies: find-my-way-ts: "npm:^0.1.5" multipasta: "npm:^0.2.5" peerDependencies: - effect: ^3.12.0 - checksum: 10c0/55e2c5d3f851b2527b833c34b8486a6bf214642c62d9330cc0e5f3746011038613a2848c77b0aa0296ccf505098421c8d384d351050a9ff4b96645d808fc76ff + effect: ^3.12.1 + checksum: 10c0/6d47edf777202272b78662c749b2f818f475258fdb2aaefbbd5d56301f9d5b9e9ac9595e1950d2e7127ff020a6bf207981b6ed99bd9ee8f06e88deccfdbf25d6 languageName: node linkType: hard @@ -9299,7 +9299,7 @@ __metadata: "@types/babel__core": "npm:^7" "@types/eslint__eslintrc": "npm:2.1.2" "@types/node": "npm:22.10.5" - effect: "npm:3.12.0" + effect: "npm:3.12.1" eslint: "npm:9.17.0" eslint-config-airbnb: "npm:19.0.4" eslint-config-flat-gitignore: "npm:0.3.0" @@ -9324,8 +9324,8 @@ __metadata: dependencies: "@chainsafe/libp2p-noise": "npm:16.0.0" "@chainsafe/libp2p-yamux": "npm:7.0.1" - "@effect/platform": "npm:0.72.0" - "@effect/platform-node": "npm:0.68.0" + "@effect/platform": "npm:0.72.1" + "@effect/platform-node": "npm:0.68.1" "@effect/vitest": "npm:0.16.1" "@libp2p/crypto": "npm:5.0.8" "@libp2p/identify": "npm:3.0.14" @@ -9339,7 +9339,7 @@ __metadata: "@rust/harpc-wire-protocol": "npm:0.0.0-private" "@types/node": "npm:22.10.5" "@vitest/coverage-istanbul": "npm:2.1.8" - effect: "npm:3.12.0" + effect: "npm:3.12.1" eslint: "npm:9.17.0" it-stream-types: "npm:2.0.2" libp2p: "npm:2.4.2" @@ -9427,7 +9427,7 @@ __metadata: "@local/hash-graph-types": "npm:0.0.0-private" "@local/tsconfig": "npm:0.0.0-private" "@vitest/coverage-istanbul": "npm:2.1.8" - effect: "npm:3.12.0" + effect: "npm:3.12.1" eslint: "npm:9.17.0" rimraf: "npm:6.0.1" typescript: "npm:5.7.2" @@ -25604,12 +25604,12 @@ __metadata: languageName: node linkType: hard -"effect@npm:3.12.0": - version: 3.12.0 - resolution: "effect@npm:3.12.0" +"effect@npm:3.12.1": + version: 3.12.1 + resolution: "effect@npm:3.12.1" dependencies: fast-check: "npm:^3.23.1" - checksum: 10c0/b0719886e39c11c4e5715c8b2b1e8af0c43eb11877b07d1489629b79b7b576a03721bbff4dd6f08a503ee4379aaae874909cb50677f76397bcec8d8999960760 + checksum: 10c0/40fc3ec78c4d6968efba1ed393b6dce09c6bb070e2790bc0bb12f495b66792a1a0b2392c33ac57a7b025be84152add3917a143ec004d3f17ed68516dd3155422 languageName: node linkType: hard From bf81f4dbeeceed97154e02f1b5037e138bf44ffa Mon Sep 17 00:00:00 2001 From: "hash-worker[bot]" <180894564+hash-worker[bot]@users.noreply.github.com> Date: Mon, 6 Jan 2025 00:43:26 +0000 Subject: [PATCH 158/159] Update npm package `rollup` to v4.29.2 (#6064) Co-authored-by: hash-worker[bot] <180894564+hash-worker[bot]@users.noreply.github.com> --- .../type-system/typescript/package.json | 2 +- tests/hash-backend-load/package.json | 2 +- yarn.lock | 166 +++++++++--------- 3 files changed, 85 insertions(+), 85 deletions(-) diff --git a/libs/@blockprotocol/type-system/typescript/package.json b/libs/@blockprotocol/type-system/typescript/package.json index a5d5ffd3cc0..d9d9db8afb4 100644 --- a/libs/@blockprotocol/type-system/typescript/package.json +++ b/libs/@blockprotocol/type-system/typescript/package.json @@ -65,7 +65,7 @@ "eslint": "9.17.0", "react": "19.0.0", "rimraf": "6.0.1", - "rollup": "4.29.1", + "rollup": "4.29.2", "tslib": "2.8.1", "typescript": "5.7.2", "vite-plugin-wasm-pack": "0.1.12", diff --git a/tests/hash-backend-load/package.json b/tests/hash-backend-load/package.json index db03d0ff666..d4c63550dc1 100644 --- a/tests/hash-backend-load/package.json +++ b/tests/hash-backend-load/package.json @@ -57,7 +57,7 @@ "@types/dotenv-flow": "3.3.3", "eslint": "9.17.0", "rimraf": "6.0.1", - "rollup": "4.29.1", + "rollup": "4.29.2", "typescript": "5.7.2" } } diff --git a/yarn.lock b/yarn.lock index 2fd152978df..92045c10a86 100644 --- a/yarn.lock +++ b/yarn.lock @@ -4631,7 +4631,7 @@ __metadata: eslint: "npm:9.17.0" react: "npm:19.0.0" rimraf: "npm:6.0.1" - rollup: "npm:4.29.1" + rollup: "npm:4.29.2" tslib: "npm:2.8.1" typescript: "npm:5.7.2" vite-plugin-wasm-pack: "npm:0.1.12" @@ -12921,135 +12921,135 @@ __metadata: languageName: node linkType: hard -"@rollup/rollup-android-arm-eabi@npm:4.29.1": - version: 4.29.1 - resolution: "@rollup/rollup-android-arm-eabi@npm:4.29.1" +"@rollup/rollup-android-arm-eabi@npm:4.29.2": + version: 4.29.2 + resolution: "@rollup/rollup-android-arm-eabi@npm:4.29.2" conditions: os=android & cpu=arm languageName: node linkType: hard -"@rollup/rollup-android-arm64@npm:4.29.1": - version: 4.29.1 - resolution: "@rollup/rollup-android-arm64@npm:4.29.1" +"@rollup/rollup-android-arm64@npm:4.29.2": + version: 4.29.2 + resolution: "@rollup/rollup-android-arm64@npm:4.29.2" conditions: os=android & cpu=arm64 languageName: node linkType: hard -"@rollup/rollup-darwin-arm64@npm:4.29.1": - version: 4.29.1 - resolution: "@rollup/rollup-darwin-arm64@npm:4.29.1" +"@rollup/rollup-darwin-arm64@npm:4.29.2": + version: 4.29.2 + resolution: "@rollup/rollup-darwin-arm64@npm:4.29.2" conditions: os=darwin & cpu=arm64 languageName: node linkType: hard -"@rollup/rollup-darwin-x64@npm:4.29.1": - version: 4.29.1 - resolution: "@rollup/rollup-darwin-x64@npm:4.29.1" +"@rollup/rollup-darwin-x64@npm:4.29.2": + version: 4.29.2 + resolution: "@rollup/rollup-darwin-x64@npm:4.29.2" conditions: os=darwin & cpu=x64 languageName: node linkType: hard -"@rollup/rollup-freebsd-arm64@npm:4.29.1": - version: 4.29.1 - resolution: "@rollup/rollup-freebsd-arm64@npm:4.29.1" +"@rollup/rollup-freebsd-arm64@npm:4.29.2": + version: 4.29.2 + resolution: "@rollup/rollup-freebsd-arm64@npm:4.29.2" conditions: os=freebsd & cpu=arm64 languageName: node linkType: hard -"@rollup/rollup-freebsd-x64@npm:4.29.1": - version: 4.29.1 - resolution: "@rollup/rollup-freebsd-x64@npm:4.29.1" +"@rollup/rollup-freebsd-x64@npm:4.29.2": + version: 4.29.2 + resolution: "@rollup/rollup-freebsd-x64@npm:4.29.2" conditions: os=freebsd & cpu=x64 languageName: node linkType: hard -"@rollup/rollup-linux-arm-gnueabihf@npm:4.29.1": - version: 4.29.1 - resolution: "@rollup/rollup-linux-arm-gnueabihf@npm:4.29.1" +"@rollup/rollup-linux-arm-gnueabihf@npm:4.29.2": + version: 4.29.2 + resolution: "@rollup/rollup-linux-arm-gnueabihf@npm:4.29.2" conditions: os=linux & cpu=arm & libc=glibc languageName: node linkType: hard -"@rollup/rollup-linux-arm-musleabihf@npm:4.29.1": - version: 4.29.1 - resolution: "@rollup/rollup-linux-arm-musleabihf@npm:4.29.1" +"@rollup/rollup-linux-arm-musleabihf@npm:4.29.2": + version: 4.29.2 + resolution: "@rollup/rollup-linux-arm-musleabihf@npm:4.29.2" conditions: os=linux & cpu=arm & libc=musl languageName: node linkType: hard -"@rollup/rollup-linux-arm64-gnu@npm:4.29.1": - version: 4.29.1 - resolution: "@rollup/rollup-linux-arm64-gnu@npm:4.29.1" +"@rollup/rollup-linux-arm64-gnu@npm:4.29.2": + version: 4.29.2 + resolution: "@rollup/rollup-linux-arm64-gnu@npm:4.29.2" conditions: os=linux & cpu=arm64 & libc=glibc languageName: node linkType: hard -"@rollup/rollup-linux-arm64-musl@npm:4.29.1": - version: 4.29.1 - resolution: "@rollup/rollup-linux-arm64-musl@npm:4.29.1" +"@rollup/rollup-linux-arm64-musl@npm:4.29.2": + version: 4.29.2 + resolution: "@rollup/rollup-linux-arm64-musl@npm:4.29.2" conditions: os=linux & cpu=arm64 & libc=musl languageName: node linkType: hard -"@rollup/rollup-linux-loongarch64-gnu@npm:4.29.1": - version: 4.29.1 - resolution: "@rollup/rollup-linux-loongarch64-gnu@npm:4.29.1" +"@rollup/rollup-linux-loongarch64-gnu@npm:4.29.2": + version: 4.29.2 + resolution: "@rollup/rollup-linux-loongarch64-gnu@npm:4.29.2" conditions: os=linux & cpu=loong64 & libc=glibc languageName: node linkType: hard -"@rollup/rollup-linux-powerpc64le-gnu@npm:4.29.1": - version: 4.29.1 - resolution: "@rollup/rollup-linux-powerpc64le-gnu@npm:4.29.1" +"@rollup/rollup-linux-powerpc64le-gnu@npm:4.29.2": + version: 4.29.2 + resolution: "@rollup/rollup-linux-powerpc64le-gnu@npm:4.29.2" conditions: os=linux & cpu=ppc64 & libc=glibc languageName: node linkType: hard -"@rollup/rollup-linux-riscv64-gnu@npm:4.29.1": - version: 4.29.1 - resolution: "@rollup/rollup-linux-riscv64-gnu@npm:4.29.1" +"@rollup/rollup-linux-riscv64-gnu@npm:4.29.2": + version: 4.29.2 + resolution: "@rollup/rollup-linux-riscv64-gnu@npm:4.29.2" conditions: os=linux & cpu=riscv64 & libc=glibc languageName: node linkType: hard -"@rollup/rollup-linux-s390x-gnu@npm:4.29.1": - version: 4.29.1 - resolution: "@rollup/rollup-linux-s390x-gnu@npm:4.29.1" +"@rollup/rollup-linux-s390x-gnu@npm:4.29.2": + version: 4.29.2 + resolution: "@rollup/rollup-linux-s390x-gnu@npm:4.29.2" conditions: os=linux & cpu=s390x & libc=glibc languageName: node linkType: hard -"@rollup/rollup-linux-x64-gnu@npm:4.29.1": - version: 4.29.1 - resolution: "@rollup/rollup-linux-x64-gnu@npm:4.29.1" +"@rollup/rollup-linux-x64-gnu@npm:4.29.2": + version: 4.29.2 + resolution: "@rollup/rollup-linux-x64-gnu@npm:4.29.2" conditions: os=linux & cpu=x64 & libc=glibc languageName: node linkType: hard -"@rollup/rollup-linux-x64-musl@npm:4.29.1": - version: 4.29.1 - resolution: "@rollup/rollup-linux-x64-musl@npm:4.29.1" +"@rollup/rollup-linux-x64-musl@npm:4.29.2": + version: 4.29.2 + resolution: "@rollup/rollup-linux-x64-musl@npm:4.29.2" conditions: os=linux & cpu=x64 & libc=musl languageName: node linkType: hard -"@rollup/rollup-win32-arm64-msvc@npm:4.29.1": - version: 4.29.1 - resolution: "@rollup/rollup-win32-arm64-msvc@npm:4.29.1" +"@rollup/rollup-win32-arm64-msvc@npm:4.29.2": + version: 4.29.2 + resolution: "@rollup/rollup-win32-arm64-msvc@npm:4.29.2" conditions: os=win32 & cpu=arm64 languageName: node linkType: hard -"@rollup/rollup-win32-ia32-msvc@npm:4.29.1": - version: 4.29.1 - resolution: "@rollup/rollup-win32-ia32-msvc@npm:4.29.1" +"@rollup/rollup-win32-ia32-msvc@npm:4.29.2": + version: 4.29.2 + resolution: "@rollup/rollup-win32-ia32-msvc@npm:4.29.2" conditions: os=win32 & cpu=ia32 languageName: node linkType: hard -"@rollup/rollup-win32-x64-msvc@npm:4.29.1": - version: 4.29.1 - resolution: "@rollup/rollup-win32-x64-msvc@npm:4.29.1" +"@rollup/rollup-win32-x64-msvc@npm:4.29.2": + version: 4.29.2 + resolution: "@rollup/rollup-win32-x64-msvc@npm:4.29.2" conditions: os=win32 & cpu=x64 languageName: node linkType: hard @@ -16833,7 +16833,7 @@ __metadata: dotenv-flow: "npm:3.3.0" eslint: "npm:9.17.0" rimraf: "npm:6.0.1" - rollup: "npm:4.29.1" + rollup: "npm:4.29.2" typescript: "npm:5.7.2" uuid: "npm:11.0.3" languageName: unknown @@ -42463,29 +42463,29 @@ __metadata: languageName: node linkType: hard -"rollup@npm:4.29.1, rollup@npm:^4.20.0": - version: 4.29.1 - resolution: "rollup@npm:4.29.1" - dependencies: - "@rollup/rollup-android-arm-eabi": "npm:4.29.1" - "@rollup/rollup-android-arm64": "npm:4.29.1" - "@rollup/rollup-darwin-arm64": "npm:4.29.1" - "@rollup/rollup-darwin-x64": "npm:4.29.1" - "@rollup/rollup-freebsd-arm64": "npm:4.29.1" - "@rollup/rollup-freebsd-x64": "npm:4.29.1" - "@rollup/rollup-linux-arm-gnueabihf": "npm:4.29.1" - "@rollup/rollup-linux-arm-musleabihf": "npm:4.29.1" - "@rollup/rollup-linux-arm64-gnu": "npm:4.29.1" - "@rollup/rollup-linux-arm64-musl": "npm:4.29.1" - "@rollup/rollup-linux-loongarch64-gnu": "npm:4.29.1" - "@rollup/rollup-linux-powerpc64le-gnu": "npm:4.29.1" - "@rollup/rollup-linux-riscv64-gnu": "npm:4.29.1" - "@rollup/rollup-linux-s390x-gnu": "npm:4.29.1" - "@rollup/rollup-linux-x64-gnu": "npm:4.29.1" - "@rollup/rollup-linux-x64-musl": "npm:4.29.1" - "@rollup/rollup-win32-arm64-msvc": "npm:4.29.1" - "@rollup/rollup-win32-ia32-msvc": "npm:4.29.1" - "@rollup/rollup-win32-x64-msvc": "npm:4.29.1" +"rollup@npm:4.29.2, rollup@npm:^4.20.0": + version: 4.29.2 + resolution: "rollup@npm:4.29.2" + dependencies: + "@rollup/rollup-android-arm-eabi": "npm:4.29.2" + "@rollup/rollup-android-arm64": "npm:4.29.2" + "@rollup/rollup-darwin-arm64": "npm:4.29.2" + "@rollup/rollup-darwin-x64": "npm:4.29.2" + "@rollup/rollup-freebsd-arm64": "npm:4.29.2" + "@rollup/rollup-freebsd-x64": "npm:4.29.2" + "@rollup/rollup-linux-arm-gnueabihf": "npm:4.29.2" + "@rollup/rollup-linux-arm-musleabihf": "npm:4.29.2" + "@rollup/rollup-linux-arm64-gnu": "npm:4.29.2" + "@rollup/rollup-linux-arm64-musl": "npm:4.29.2" + "@rollup/rollup-linux-loongarch64-gnu": "npm:4.29.2" + "@rollup/rollup-linux-powerpc64le-gnu": "npm:4.29.2" + "@rollup/rollup-linux-riscv64-gnu": "npm:4.29.2" + "@rollup/rollup-linux-s390x-gnu": "npm:4.29.2" + "@rollup/rollup-linux-x64-gnu": "npm:4.29.2" + "@rollup/rollup-linux-x64-musl": "npm:4.29.2" + "@rollup/rollup-win32-arm64-msvc": "npm:4.29.2" + "@rollup/rollup-win32-ia32-msvc": "npm:4.29.2" + "@rollup/rollup-win32-x64-msvc": "npm:4.29.2" "@types/estree": "npm:1.0.6" fsevents: "npm:~2.3.2" dependenciesMeta: @@ -42531,7 +42531,7 @@ __metadata: optional: true bin: rollup: dist/bin/rollup - checksum: 10c0/fcd0321df78fdc74b36858e92c4b73ebf5aa8f0b9cf7c446f008e0dc3c5c4ed855d662dc44e5a09c7794bbe91017b4dd7be88b619c239f0494f9f0fbfa67c557 + checksum: 10c0/460931c5a43e2f7aca59a7db585b938145201bd2ad0bbd941d3bc15f74a21d0437e6f8a398605ab7d870f49ce346ae5759940a0158e679da5c0228afc477ff81 languageName: node linkType: hard From da18352f68d59b262f1fcff7f2a51b71d9288053 Mon Sep 17 00:00:00 2001 From: "hash-worker[bot]" <180894564+hash-worker[bot]@users.noreply.github.com> Date: Mon, 6 Jan 2025 00:49:02 +0000 Subject: [PATCH 159/159] Update npm package `uuid` to v11.0.4 (#6065) Co-authored-by: hash-worker[bot] <180894564+hash-worker[bot]@users.noreply.github.com> --- apps/hash-frontend/package.json | 2 +- apps/plugin-browser/package.json | 2 +- blocks/address/package.json | 2 +- blocks/ai-chat/package.json | 2 +- blocks/ai-image/package.json | 2 +- blocks/faq/package.json | 2 +- blocks/how-to/package.json | 2 +- blocks/shuffle/package.json | 2 +- .../@local/hash-isomorphic-utils/package.json | 2 +- libs/@local/hash-subgraph/package.json | 2 +- tests/hash-backend-load/package.json | 2 +- yarn.lock | 30 +++++++++---------- 12 files changed, 26 insertions(+), 26 deletions(-) diff --git a/apps/hash-frontend/package.json b/apps/hash-frontend/package.json index 27156d1ac40..9af8af58226 100644 --- a/apps/hash-frontend/package.json +++ b/apps/hash-frontend/package.json @@ -123,7 +123,7 @@ "signia-react": "0.1.5", "url-regex-safe": "4.0.0", "use-font-face-observer": "1.2.2", - "uuid": "11.0.3" + "uuid": "11.0.4" }, "devDependencies": { "@graphql-codegen/cli": "^5.0.3", diff --git a/apps/plugin-browser/package.json b/apps/plugin-browser/package.json index c89e1d9c703..ee60616ecfd 100755 --- a/apps/plugin-browser/package.json +++ b/apps/plugin-browser/package.json @@ -44,7 +44,7 @@ "lodash.debounce": "4.0.8", "react": "19.0.0", "react-dom": "19.0.0", - "uuid": "11.0.3", + "uuid": "11.0.4", "webextension-polyfill": "0.12.0", "ws": "8.18.0" }, diff --git a/blocks/address/package.json b/blocks/address/package.json index 90d3b61808d..2a874978eb4 100644 --- a/blocks/address/package.json +++ b/blocks/address/package.json @@ -41,7 +41,7 @@ "lodash.debounce": "4.0.8", "react-sizeme": "3.0.2", "rooks": "7.14.1", - "uuid": "11.0.3" + "uuid": "11.0.4" }, "devDependencies": { "@local/eslint": "0.0.0-private", diff --git a/blocks/ai-chat/package.json b/blocks/ai-chat/package.json index 2cf5e15520a..ef86855d7ef 100644 --- a/blocks/ai-chat/package.json +++ b/blocks/ai-chat/package.json @@ -36,7 +36,7 @@ "react-sizeme": "3.0.2", "react-transition-group": "4.4.5", "react-type-animation": "3.2.0", - "uuid": "11.0.3" + "uuid": "11.0.4" }, "devDependencies": { "@local/eslint": "0.0.0-private", diff --git a/blocks/ai-image/package.json b/blocks/ai-image/package.json index c9001a5121d..25269499da9 100644 --- a/blocks/ai-image/package.json +++ b/blocks/ai-image/package.json @@ -37,7 +37,7 @@ "@hashintel/design-system": "0.0.8", "@mui/material": "5.16.13", "react-sizeme": "3.0.2", - "uuid": "11.0.3" + "uuid": "11.0.4" }, "devDependencies": { "@local/eslint": "0.0.0-private", diff --git a/blocks/faq/package.json b/blocks/faq/package.json index 1f7ac5e5ef8..2fdf82287be 100644 --- a/blocks/faq/package.json +++ b/blocks/faq/package.json @@ -35,7 +35,7 @@ "@hashintel/block-design-system": "0.0.2", "@hashintel/design-system": "0.0.8", "@mui/material": "5.16.13", - "uuid": "11.0.3" + "uuid": "11.0.4" }, "devDependencies": { "@local/eslint": "0.0.0-private", diff --git a/blocks/how-to/package.json b/blocks/how-to/package.json index 2a2e878f6ce..4f65013e388 100644 --- a/blocks/how-to/package.json +++ b/blocks/how-to/package.json @@ -36,7 +36,7 @@ "@hashintel/design-system": "0.0.8", "@mui/material": "5.16.13", "react-sizeme": "3.0.2", - "uuid": "11.0.3" + "uuid": "11.0.4" }, "devDependencies": { "@local/eslint": "0.0.0-private", diff --git a/blocks/shuffle/package.json b/blocks/shuffle/package.json index 79c1702fb53..510e2041ecc 100644 --- a/blocks/shuffle/package.json +++ b/blocks/shuffle/package.json @@ -36,7 +36,7 @@ "@mui/material": "5.16.13", "immer": "9.0.21", "lodash.isequal": "4.5.0", - "uuid": "11.0.3" + "uuid": "11.0.4" }, "devDependencies": { "@local/eslint": "0.0.0-private", diff --git a/libs/@local/hash-isomorphic-utils/package.json b/libs/@local/hash-isomorphic-utils/package.json index de28bc7d113..0c86debcf68 100644 --- a/libs/@local/hash-isomorphic-utils/package.json +++ b/libs/@local/hash-isomorphic-utils/package.json @@ -51,7 +51,7 @@ "prosemirror-view": "patch:prosemirror-view@npm%3A1.29.1#~/.yarn/patches/prosemirror-view-npm-1.29.1-ff37db4eea.patch", "serialize-error": "12.0.0", "tsx": "4.19.2", - "uuid": "11.0.3" + "uuid": "11.0.4" }, "devDependencies": { "@blockprotocol/type-system": "0.1.2-canary.0", diff --git a/libs/@local/hash-subgraph/package.json b/libs/@local/hash-subgraph/package.json index edfeb3d4a14..d4888abc963 100644 --- a/libs/@local/hash-subgraph/package.json +++ b/libs/@local/hash-subgraph/package.json @@ -36,7 +36,7 @@ "@local/hash-graph-client": "0.0.0-private", "@local/hash-graph-sdk": "0.0.0-private", "@local/hash-graph-types": "0.0.0-private", - "uuid": "11.0.3" + "uuid": "11.0.4" }, "devDependencies": { "@local/eslint": "0.0.0-private", diff --git a/tests/hash-backend-load/package.json b/tests/hash-backend-load/package.json index d4c63550dc1..d9b2dbf74d8 100644 --- a/tests/hash-backend-load/package.json +++ b/tests/hash-backend-load/package.json @@ -45,7 +45,7 @@ "@ory/client": "1.1.41", "artillery": "2.0.20", "dotenv-flow": "3.3.0", - "uuid": "11.0.3" + "uuid": "11.0.4" }, "devDependencies": { "@apps/hash-api": "0.0.0-private", diff --git a/yarn.lock b/yarn.lock index 92045c10a86..074ad6f78df 100644 --- a/yarn.lock +++ b/yarn.lock @@ -592,7 +592,7 @@ __metadata: typescript: "npm:5.7.2" url-regex-safe: "npm:4.0.0" use-font-face-observer: "npm:1.2.2" - uuid: "npm:11.0.3" + uuid: "npm:11.0.4" wait-on: "npm:8.0.1" webpack: "npm:5.97.1" languageName: unknown @@ -846,7 +846,7 @@ __metadata: tsconfig-paths-webpack-plugin: "npm:4.2.0" type-fest: "npm:3.13.1" typescript: "npm:5.7.2" - uuid: "npm:11.0.3" + uuid: "npm:11.0.4" webextension-polyfill: "npm:0.12.0" webpack: "npm:5.97.1" webpack-cli: "npm:4.10.0" @@ -4663,7 +4663,7 @@ __metadata: react-sizeme: "npm:3.0.2" rooks: "npm:7.14.1" typescript: "npm:5.7.2" - uuid: "npm:11.0.3" + uuid: "npm:11.0.4" peerDependencies: react: ^19.0.0 react-dom: ^19.0.0 @@ -4693,7 +4693,7 @@ __metadata: react-transition-group: "npm:4.4.5" react-type-animation: "npm:3.2.0" typescript: "npm:5.7.2" - uuid: "npm:11.0.3" + uuid: "npm:11.0.4" peerDependencies: react: ^19.0.0 react-dom: ^19.0.0 @@ -4720,7 +4720,7 @@ __metadata: react-dom: "npm:19.0.0" react-sizeme: "npm:3.0.2" typescript: "npm:5.7.2" - uuid: "npm:11.0.3" + uuid: "npm:11.0.4" peerDependencies: react: ^19.0.0 react-dom: ^19.0.0 @@ -4916,7 +4916,7 @@ __metadata: react: "npm:19.0.0" react-dom: "npm:19.0.0" typescript: "npm:5.7.2" - uuid: "npm:11.0.3" + uuid: "npm:11.0.4" peerDependencies: react: ^19.0.0 react-dom: ^19.0.0 @@ -4963,7 +4963,7 @@ __metadata: react-dom: "npm:19.0.0" react-sizeme: "npm:3.0.2" typescript: "npm:5.7.2" - uuid: "npm:11.0.3" + uuid: "npm:11.0.4" peerDependencies: react: ^19.0.0 react-dom: ^19.0.0 @@ -5115,7 +5115,7 @@ __metadata: react: "npm:19.0.0" react-dom: "npm:19.0.0" typescript: "npm:5.7.2" - uuid: "npm:11.0.3" + uuid: "npm:11.0.4" peerDependencies: react: ^19.0.0 react-dom: ^19.0.0 @@ -9500,7 +9500,7 @@ __metadata: serialize-error: "npm:12.0.0" tsx: "npm:4.19.2" typescript: "npm:5.7.2" - uuid: "npm:11.0.3" + uuid: "npm:11.0.4" vitest: "npm:2.1.8" languageName: unknown linkType: soft @@ -9520,7 +9520,7 @@ __metadata: eslint: "npm:9.17.0" rimraf: "npm:6.0.1" typescript: "npm:5.7.2" - uuid: "npm:11.0.3" + uuid: "npm:11.0.4" vitest: "npm:2.1.8" languageName: unknown linkType: soft @@ -16835,7 +16835,7 @@ __metadata: rimraf: "npm:6.0.1" rollup: "npm:4.29.2" typescript: "npm:5.7.2" - uuid: "npm:11.0.3" + uuid: "npm:11.0.4" languageName: unknown linkType: soft @@ -47363,12 +47363,12 @@ __metadata: languageName: node linkType: hard -"uuid@npm:11.0.3, uuid@npm:^11.0.1": - version: 11.0.3 - resolution: "uuid@npm:11.0.3" +"uuid@npm:11.0.4, uuid@npm:^11.0.1": + version: 11.0.4 + resolution: "uuid@npm:11.0.4" bin: uuid: dist/esm/bin/uuid - checksum: 10c0/cee762fc76d949a2ff9205770334699e0043d52bb766472593a25f150077c9deed821230251ea3d6ab3943a5ea137d2826678797f1d5f6754c7ce5ce27e9f7a6 + checksum: 10c0/3c13591c4dedaa3741f925e284df5974e3d6e0b1cb0f6f75f98c36f9c01d2a414350364fd067613ef600a21c6973dab0506530d4f499ff878f32a06f84569ead languageName: node linkType: hard