From 768206a9f5338e9d392a59317d738fba8dc3e3f4 Mon Sep 17 00:00:00 2001 From: Reneta Popova Date: Fri, 28 Jun 2024 12:03:48 +0100 Subject: [PATCH 01/45] Update the version to 5.22 (#154) --- antora.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/antora.yml b/antora.yml index de4a05cd..0194c283 100644 --- a/antora.yml +++ b/antora.yml @@ -7,6 +7,6 @@ nav: asciidoc: attributes: page-origin-private: false - neo4j-version: '5.21' - neo4j-version-exact: '5.21.0' - neo4j-buildnumber: '5.21' + neo4j-version: '5.22' + neo4j-version-exact: '5.22.0' + neo4j-buildnumber: '5.22' From e2ed45600563d8f04aa24e2cdf930ee99575556a Mon Sep 17 00:00:00 2001 From: NataliaIvakina <82437520+NataliaIvakina@users.noreply.github.com> Date: Tue, 30 Jul 2024 11:23:39 +0200 Subject: [PATCH 02/45] Update `dev` to 5.23 (#158) --- antora.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/antora.yml b/antora.yml index 0194c283..fc9e275e 100644 --- a/antora.yml +++ b/antora.yml @@ -7,6 +7,6 @@ nav: asciidoc: attributes: page-origin-private: false - neo4j-version: '5.22' - neo4j-version-exact: '5.22.0' - neo4j-buildnumber: '5.22' + neo4j-version: '5.23' + neo4j-version-exact: '5.23.0' + neo4j-buildnumber: '5.23' From 71e27df353384a01792fa208429c092a82dce04f Mon Sep 17 00:00:00 2001 From: Stefano Ottolenghi Date: Wed, 14 Aug 2024 18:00:45 +0200 Subject: [PATCH 03/45] Fix typo (#167) Results in broken asciidoc. --- modules/ROOT/pages/notifications/index.adoc | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/modules/ROOT/pages/notifications/index.adoc b/modules/ROOT/pages/notifications/index.adoc index 8d165e74..335eb741 100644 --- a/modules/ROOT/pages/notifications/index.adoc +++ b/modules/ROOT/pages/notifications/index.adoc @@ -3,7 +3,7 @@ [[notifications]] = Notification codes -Notification codes are Neo4j status codes of type `ClientNotification`and are returned by the server with severity `WARNING` or `INFORMATION`. +Notification codes are Neo4j status codes of type `ClientNotification` and are returned by the server with severity `WARNING` or `INFORMATION`. Contrary to errors, notifications are only returned if the execution of the query is successful. [[notification-format]] @@ -78,4 +78,4 @@ The following categories exist, ordered by severity: | INFORMATION | The query uses costly operations and might be slow. Consider if it is possible to rewrite the query in a different way. | -|=== \ No newline at end of file +|=== From c25ae38b3b036f991ba190726526bcd8b492d572 Mon Sep 17 00:00:00 2001 From: NataliaIvakina <82437520+NataliaIvakina@users.noreply.github.com> Date: Wed, 28 Aug 2024 13:33:51 +0200 Subject: [PATCH 04/45] Merge 'gql-notifications' into 'dev' (#171) Co-authored-by: Reneta Popova Co-authored-by: Louise Berglund Co-authored-by: Neil Dewhurst --- antora.yml | 6 +- modules/ROOT/content-nav.adoc | 10 +- modules/ROOT/pages/changelogs.adoc | 8 + modules/ROOT/pages/errors/all-errors.adoc | 2 +- modules/ROOT/pages/errors/index.adoc | 4 +- modules/ROOT/pages/index.adoc | 21 +- .../notifications/all-notifications.adoc | 3025 ++++++++++++++--- modules/ROOT/pages/notifications/index.adoc | 248 +- publish.yml | 2 +- 9 files changed, 2811 insertions(+), 515 deletions(-) diff --git a/antora.yml b/antora.yml index fc9e275e..38cee101 100644 --- a/antora.yml +++ b/antora.yml @@ -7,6 +7,6 @@ nav: asciidoc: attributes: page-origin-private: false - neo4j-version: '5.23' - neo4j-version-exact: '5.23.0' - neo4j-buildnumber: '5.23' + neo4j-version: '5.24' + neo4j-version-exact: '5.24.0' + neo4j-buildnumber: '5.24' \ No newline at end of file diff --git a/modules/ROOT/content-nav.adoc b/modules/ROOT/content-nav.adoc index c115e12e..37f18944 100644 --- a/modules/ROOT/content-nav.adoc +++ b/modules/ROOT/content-nav.adoc @@ -1,8 +1,8 @@ * xref:index.adoc[] -** xref:errors/index.adoc[] -*** xref:errors/all-errors.adoc[] -** xref:notifications/index.adoc[] -*** xref:notifications/all-notifications.adoc[] -** xref:changelogs.adoc[] +* xref:errors/index.adoc[] +** xref:errors/all-errors.adoc[] +* xref:notifications/index.adoc[] +** xref:notifications/all-notifications.adoc[] +* xref:changelogs.adoc[] diff --git a/modules/ROOT/pages/changelogs.adoc b/modules/ROOT/pages/changelogs.adoc index 2c60c782..6e134a68 100644 --- a/modules/ROOT/pages/changelogs.adoc +++ b/modules/ROOT/pages/changelogs.adoc @@ -1,6 +1,14 @@ :description: This page lists all changes to status codes per Neo4j version. = Changes to status codes per Neo4j version +== Neo4j 5.23 + +From version 5.23, Neo4j has a new GqlStatusObject API in addition to the existing Notification API. + +The GqlStatusObject API provides information about the status of a Cypher query or command execution in compliance with the GQL standard. +It includes GQLSTATUS code, StatusDescription, and DiagnosticRecord. +For more information, see xref:notifications/index.adoc#gqlstatus-notification-object[GQL-status notification object]. + == Neo4j 5.17 **New:** diff --git a/modules/ROOT/pages/errors/all-errors.adoc b/modules/ROOT/pages/errors/all-errors.adoc index 7f6dcc69..28942cd0 100644 --- a/modules/ROOT/pages/errors/all-errors.adoc +++ b/modules/ROOT/pages/errors/all-errors.adoc @@ -2,7 +2,7 @@ [[neo4j-errors]] -= List of all error codes += List of all server error codes This page contains lists of all Neo4j errors, grouped by type. diff --git a/modules/ROOT/pages/errors/index.adoc b/modules/ROOT/pages/errors/index.adoc index f11d8ece..4d6e4637 100644 --- a/modules/ROOT/pages/errors/index.adoc +++ b/modules/ROOT/pages/errors/index.adoc @@ -1,7 +1,7 @@ :description: The Neo4j error codes for Neo4j version {neo4j-version}. -[[notifications]] -= Error codes +[[error-codes]] += Server errors Error codes are Neo4j status codes returned by the server when the execution of a query fails. They always have the severity level `ERROR`. diff --git a/modules/ROOT/pages/index.adoc b/modules/ROOT/pages/index.adoc index d30fcfcc..48b7d109 100644 --- a/modules/ROOT/pages/index.adoc +++ b/modules/ROOT/pages/index.adoc @@ -1,10 +1,18 @@ + +[[status-codes]] +ifdef::backend-pdf[] += Neo4j 5 Status Codes +endif::[] +ifndef::backend-pdf[] += Introduction +endif::[] :description: The Neo4j status codes for Neo4j version {neo4j-version}. :neo4j-buildnumber: {neo4j-version} -[[status-codes]] -= Neo4j Status Codes v5 + This document details all status codes that a Neo4j DBMS may return to indicate the outcome of a request. + == Format Each Neo4j status code follows the same format: @@ -14,6 +22,7 @@ Each Neo4j status code follows the same format: Neo.[Type].[SubType].[Name] ----- + == Types of Neo4j status codes The fact that a Neo4j status code is returned by the server does not always mean there is a fatal error. @@ -46,6 +55,14 @@ The type of the status code determines the effect on the transaction. |=== +[NOTE] +==== +From version 5.23, Neo4j has a new GqlStatusObject API in addition to the existing Notification API. + +The GqlStatusObject API provides information about the status of a Cypher query or command execution in compliance with the GQL standard. +It includes GQLSTATUS code, StatusDescription, and DiagnosticRecord. +For more information, see xref:notifications/index.adoc#gqlstatus-notification-object[GQL-status notification object]. +==== ifndef::backend-pdf[] License: link:{common-license-page-uri}[Creative Commons 4.0] diff --git a/modules/ROOT/pages/notifications/all-notifications.adoc b/modules/ROOT/pages/notifications/all-notifications.adoc index 58038f9a..bee9bd23 100644 --- a/modules/ROOT/pages/notifications/all-notifications.adoc +++ b/modules/ROOT/pages/notifications/all-notifications.adoc @@ -1,50 +1,61 @@ :description: This section describes the notifications that Neo4j can return, grouped by category, and an example of when they can occur. [[listOfNnotifications]] -= List of all notification codes += List of all server notification codes -The following are all Neo4j notifications, grouped by category, when they are returned, and an example of improvement. +The following page provides an overview of all notifications in Neo4j, along with some scenarios and their possible solutions. -* <<_performance_notifications, `PERFORMANCE` category>> -* <<_hint_notifications, `HINT` category>> -* <<_unrecognized_notifications, `UNRECOGNIZED` category>> -* <<_unsupported_notifications, `UNSUPPORTED` category>> -* <<_deprecated_notifications, `DEPRECATION` category>> -* <<_security_notifications, `SECURITY` category>> -* <<_topology_notifications, `TOPOLOGY` category>> -* <<_schema_notifications, `SCHEMA` category>> -* <<_generic, `GENERIC` category>> +* <<_performance_notifications, `PERFORMANCE` notifications>> +* <<_hint_notifications, `HINT` notifications>> +* <<_unrecognized_notifications, `UNRECOGNIZED` notifications>> +* <<_unsupported_notifications, `UNSUPPORTED` notifications>> +* <<_deprecated_notifications, `DEPRECATION` notifications>> +* <<_security_notifications, `SECURITY` notifications>> +* <<_topology_notifications, `TOPOLOGY` notifications>> +* <<_schema_notifications, `SCHEMA` notifications>> +* <<_generic, `GENERIC` notifications>> [#_performance_notifications] -== `PERFORMANCE` category +== `PERFORMANCE` notifications Performance notifications are returned whenever the query uses costly operations and the performance may be improved by changing the query or adding an index. [#_neo_clientnotification_statement_cartesianproduct] -=== CartesianProduct +=== Cartesian product -.When is this notification returned? -[TIP] -==== -Whenever there is a cartesian product in the plan. -==== +This notification is returned when there is a Cartesian product in the plan. .Notification details [cols="<1s,<4"] |=== -|Code +|Neo4j code m|Neo.ClientNotification.Statement.CartesianProduct |Title a|This query builds a cartesian product between disconnected patterns. -|Severity -m|INFORMATION +|Description +|If a part of a query contains multiple disconnected patterns, this will build a cartesian product between all those parts. This may produce a large amount of data and slow down query processing. While occasionally intended, it may often be possible to reformulate the query that avoids the use of this cross product, perhaps by adding a relationship between the different parts or by using OPTIONAL MATCH (%s) |Category m|PERFORMANCE +|GQLSTATUS code +m|03N90 +|Status description +a|info: cartesian product. +The disconnected patterns `$pat` build a cartesian product. +A cartesian product may produce a large amount of data and slow down query processing. +|Classification +m|PERFORMANCE +|SeverityLevel +m|INFORMATION |=== -.Cartesian product -==== + +.A query that contains many disconnected patterns +[.tabbed-example] +===== +[.include-with-neo4j-code] +====== + Query:: + [source, cypher, role="noplay"] @@ -60,7 +71,7 @@ While occasionally intended, it may often be possible to reformulate the query t perhaps by adding a relationship between the different parts or by using `OPTIONAL MATCH` (identifier is: (`p`)) Suggestions for improvement:: -In case a cartesian product is needed, nothing can be done to improve this query. +In case a Cartesian product is needed, nothing can be done to improve this query. In many cases, however, you might not need a combination of all children and parents, and that is when this query could be improved. If for example, you need the children and the children's parents, you can improve this query by rewriting it to the following: + @@ -68,32 +79,74 @@ If for example, you need the children and the children's parents, you can improv ---- MATCH (c:Child)-[:ChildOf]->(p:Parent) RETURN c, p ---- -==== + +====== +[.include-with-GQLSTATUS-code] +====== + +Query:: ++ +[source, cypher, role="noplay"] +---- +MATCH (c:Child), (p:Parent) RETURN c, p +---- + +Returned GQLSTATUS code:: +03N90 + +Returned status description:: +info: cartesian product. +The disconnected patterns `(c:Child), (p:Parent)` build a cartesian product. +A cartesian product may produce a large amount of data and slow down query processing. + +Suggestions for improvement:: +In case a Cartesian product is needed, nothing can be done to improve this query. +In many cases, however, you might not need a combination of all children and parents, and that is when this query could be improved. +If for example, you need the children and the children's parents, you can improve this query by rewriting it to the following: ++ +[source, cypher, role="noplay"] +---- +MATCH (c:Child)-[:ChildOf]->(p:Parent) RETURN c, p +---- + +====== +===== [#_neo_clientnotification_statement_unboundedvariablelengthpattern] -=== UnboundedVariableLengthPattern +=== Unbounded variable length pattern -.When is this notification returned? -[TIP] -==== -When there is no upper bound specified on the variable length relationship. -==== +This notification is returned when there is no upper bound specified on the variable length relationship. .Notification details [cols="<1s,<4"] |=== -|Code +|Neo4j code m|Neo.ClientNotification.Statement.UnboundedVariableLengthPattern |Title a|The provided pattern is unbounded, consider adding an upper limit to the number of node hops. -|Severity -m|INFORMATION +|Description +|Using shortest path with an unbounded pattern will likely result in long execution times. +It is recommended to use an upper limit to the number of node hops in your pattern. |Category m|PERFORMANCE +|GQLSTATUS code +m|03N91 +|Status description +a|info: unbounded variable length pattern. The provided pattern `$pat` is unbounded. +Shortest path with an unbounded pattern may result in long execution times. +Use an upper limit (e.g. `[*..5]`) on the number of node hops in your pattern. +|Classification +m|PERFORMANCE +|SeverityLevel +m|INFORMATION |=== .Shortest path with an unbounded pattern -==== +[.tabbed-example] +===== +[.include-with-neo4j-code] +====== + Query:: + [source, cypher, role="noplay"] @@ -113,34 +166,75 @@ Consider adding an upper limit. ---- MATCH p=shortestPath((n)-[*..8]->(m)) RETURN p ---- -==== +====== +[.include-with-GQLSTATUS-code] +====== + +Query:: ++ +[source, cypher, role="noplay"] +---- +MATCH p=shortestPath((n)-[*]->(m)) RETURN p +---- + +Returned GQLSTATUS code:: +03N91 + +Returned status description:: +info: unbounded variable length pattern. +The provided pattern `(n)-[\*]->(m)` is unbounded. +Shortest path with an unbounded pattern may result in long execution times. +Use an upper limit (e.g. `[*..5]`) on the number of node hops in your pattern. + +Suggestions for improvement:: +If you have a big graph, this query might be very slow. +Consider adding an upper limit. ++ +[source, cypher, role="noplay"] +---- +MATCH p=shortestPath((n)-[*..8]->(m)) RETURN p +---- +====== +===== [#_neo_clientnotification_statement_exhaustiveshortestpath] -=== ExhaustiveShortestPath +=== Exhaustive shortest path -.When is this notification returned? -[TIP] -==== -When a predicate, given on the shortest path, needs to inspect the whole path before deciding whether it is valid, the shortest path might fall back to the exhaustive search algorithm. +This notification is returned when a predicate, given on the shortest path, needs to inspect the whole path before deciding whether it is valid, the shortest path might fall back to the exhaustive search algorithm. For more information, see link:https://neo4j.com/docs/cypher-manual/current/execution-plans/shortestpath-planning#_shortest_pathadditional_predicate_checks_on_the_paths[Cypher manual -> Shortest path - additional predicate checks on the paths]. -==== .Notification details [cols="<1s,<4"] |=== -|Code +|Neo4j code m|Neo.ClientNotification.Statement.ExhaustiveShortestPath |Title a|Exhaustive shortest path has been planned for your query that means that shortest path graph algorithm might not be used to find the shortest path. Hence an exhaustive enumeration of all paths might be used in order to find the requested shortest path. -|Severity -m|INFORMATION +|Description +|Using shortest path with an exhaustive search fallback might cause query slow down since shortest path graph algorithms might not work for this use case. +It is recommended to introduce a `WITH` to separate the `MATCH` containing the shortest path from the existential predicates on that path. |Category m|PERFORMANCE +|GQLSTATUS code +m|03N92 +|Status description +a|info: exhaustive shortest path. +The query runs with exhaustive shortest path due to the existential predicate(s) `$pred_list`. +It may be possible to use `WITH` to separate the `MATCH` from the existential predicate(s). +|Classification +m|PERFORMANCE +|SeverityLevel +m|INFORMATION |=== -.Exhaustive shortest path -==== +.A query that runs with an exhaustive shortest path +[.tabbed-example] +===== +[.include-with-neo4j-code] +====== +Query:: ++ [source, cypher, role="noplay"] ---- MATCH p = shortestPath(()-[*..42]-()) @@ -162,32 +256,76 @@ WITH p WHERE ANY(n in nodes(p) WHERE n:Label) RETURN p ---- -==== +====== +[.include-with-GQLSTATUS-code] +====== +Query:: ++ +[source, cypher, role="noplay"] +---- +MATCH p = shortestPath(()-[*..42]-()) +WHERE ANY(n in nodes(p) WHERE n:Label) +RETURN p +---- + +Returned GQLSTATUS code:: +03N92 + +Returned status description:: +info: exhaustive shortest path. +The query runs with exhaustive shortest path due to the existential predicate(s) `ANY(n in nodes(p) WHERE n:Label)`. +It may be possible to use `WITH` to separate the `MATCH` from the existential predicate(s). + +Suggestions for improvement:: +Separate the predicate by introducing a `WITH` after the `MATCH` clause. ++ +[source, cypher, role="noplay"] +---- +MATCH p = shortestPath(()-[*..42]-()) +WITH p +WHERE ANY(n in nodes(p) WHERE n:Label) +RETURN p +---- +====== +===== [#_neo_clientnotification_statement_noapplicableindex] -=== NoApplicableIndex +=== No applicable index -.When is this notification returned? -[TIP] -==== -Given a larger number of nodes, `LOAD CSV` together with a `MATCH` or a `MERGE` clause may speed up the query if you add an index. -==== +This notification is returned when using `LOAD CSV` with a `MATCH` or a `MERGE` clause that matches a non-indexed label. +This may not perform well on large data sets. +Adding an index could improve the query speed. .Notification details [cols="<1s,<4"] |=== -|Code +|Neo4j code m|Neo.ClientNotification.Statement.NoApplicableIndex |Title a|Adding a schema index may speed up this query. -|Severity -m|INFORMATION +|Description +|Using `LOAD CSV` followed by a `MATCH` or `MERGE` that matches a non-indexed label will most likely not perform well on large data sets. +Please consider using a schema index. |Category m|PERFORMANCE +|GQLSTATUS code +m|03N93 +|Status description +a|info: no applicable index. +`LOAD CSV` in combination with `MATCH` or `MERGE` on a label that does not have an index may result in long execution times. +Consider adding an index for label `$label`. +|Classification +m|PERFORMANCE +|SeverityLevel +m|INFORMATION |=== -.Load CSV with `MATCH` or `MERGE` -==== +.`LOAD CSV` with `MATCH` or `MERGE` +[.tabbed-example] +===== +[.include-with-neo4j-code] +====== + Query:: + [source, cypher, role="noplay"] @@ -206,32 +344,70 @@ Create an index on the label and property you match. ---- CREATE INDEX FOR (n:Person) ON (n.name) ---- -==== + +====== +[.include-with-GQLSTATUS-code] +====== + +Query:: ++ +[source, cypher, role="noplay"] +---- +LOAD CSV FROM 'file:///ignore/ignore.csv' AS line WITH * MATCH (n:Person{name:line[0]}) RETURN line, n +---- + +Returned GQLSTATUS code:: +03N93 + +Returned status description:: +info: no applicable index. +`LOAD CSV` in combination with `MATCH` or `MERGE` on a label that does not have an index may result in long execution times. +Consider adding an index for label `Person`. + +Suggestions for improvement:: +Create an index on the label and property you match. ++ +[source, cypher, role="noplay"] +---- +CREATE INDEX FOR (n:Person) ON (n.name) +---- +====== +===== [#_neo_clientnotification_statement_eageroperator] -=== EagerOperator +=== Eager operator -.When is this notification returned? -[TIP] -==== -When the execution plan for a query contains an eager operator. -==== +This notification is returned when the execution plan for a query contains the `Eager` operator. .Notification details [cols="<1s,<4"] |=== -|Code +|Neo4j code m|Neo.ClientNotification.Statement.EagerOperator |Title a|The execution plan for this query contains the Eager operator, which forces all dependent data to be materialized in main memory before proceeding -|Severity -m|INFORMATION +|Description +|Using `LOAD CSV` with a large data set in a query where the execution plan contains the Eager operator could potentially consume a lot of memory and is likely to not perform well. +See the Neo4j Manual entry on the Eager operator for more information and hints on how problems could be avoided. |Category m|PERFORMANCE +|GQLSTATUS code +m|03N94 +|Status description +a|info: eager operator. +The query execution plan contains the `Eager` operator. +`LOAD CSV` in combination with `Eager` can consume a lot of memory. +|Classification +m|PERFORMANCE +|SeverityLevel +m|INFORMATION |=== -.Load CSV with `MATCH` or `MERGE` -==== +.`LOAD CSV` with an Eager operator +[.tabbed-example] +===== +[.include-with-neo4j-code] +====== `LOAD CSV` together with an Eager operator can take up a lot of memory. @@ -259,26 +435,75 @@ CALL { } RETURN line ---- -==== + +====== +[.include-with-GQLSTATUS-code] +====== + +Query:: ++ +[source, cypher, role="noplay"] +---- +LOAD CSV FROM 'file:///ignore/ignore.csv' AS line MATCH (n:Person{name:line[0]}) DELETE n RETURN line +---- + +Returned GQLSTATUS code:: +03N94 + +Returned status description:: +info: eager operator. +The query execution plan contains the `Eager` operator. +`LOAD CSV` in combination with `Eager` can consume a lot of memory. + +Suggestions for improvement:: +See the link:https://neo4j.com/docs/cypher-manual/current/planning-and-tuning/operators/operators-detail/#query-plan-eager[Cypher Manual -> Eager operator] for more information and hints on how to avoid problems. +In this specific case, the query could be rewritten to the following: ++ +[source, cypher, role="noplay"] +---- +LOAD CSV FROM 'file:///ignore/ignore.csv' AS line +CALL { + WITH line + MATCH (n:Person{name:line[0]}) DELETE n +} +RETURN line +---- +====== +===== + [#_neo_clientnotification_statement_dynamicproperty] -=== DynamicProperty +=== Dynamic property .Notification details [cols="<1s,<4"] |=== -|Code +|Neo4j code m|Neo.ClientNotification.Statement.DynamicProperty |Title a|Queries using dynamic properties will use neither index seeks nor index scans for those properties -|Severity -m|INFORMATION +|Description +|Using a dynamic property makes it impossible to use an index lookup for this query (%s) |Category m|PERFORMANCE +|GQLSTATUS code +m|03N95 +|Status description +a|info: dynamic property. +An index exists on label/type(s) `$label_list`. +It is not possible to use indexes for dynamic properties. +Consider using static properties. +|Classification +m|PERFORMANCE +|SeverityLevel +m|INFORMATION |=== -.Using a dynamic node property key makes it impossible to use indexes -==== +.A dynamic node property key makes it impossible to use indexes +[.tabbed-example] +===== +[.include-with-neo4j-code] +====== Query:: + @@ -288,7 +513,7 @@ MATCH (n:Person) WHERE n[$prop] IS NOT NULL RETURN n; ---- Description of the returned code:: -Did not supply query with enough parameters. The produced query plan will not be cached and is not executable without `EXPLAIN`. (Missing parameters: `prop`) +Using a dynamic property makes it impossible to use an index lookup for this query (indexed label is: `Person`) Suggestions for improvement:: If there is an index for `(n:Person) ON (n.name)`, it will not be used for the above query because the query is using a dynamic property. @@ -299,10 +524,46 @@ For example, if `prop` is equal to `name`, the following query would be able to ---- MATCH (n:Person) WHERE n.name IS NOT NULL RETURN n; ---- -==== -.Using dynamic relationship property key makes it impossible to use indexes -==== +====== +[.include-with-GQLSTATUS-code] +====== + +Query:: ++ +[source, cypher] +---- +MATCH (n:Person) WHERE n[$prop] IS NOT NULL RETURN n; +---- + +Returned GQLSTATUS code:: +03N95 + +Returned status description:: +info: dynamic property. +An index exists on label/type(s) `Person`. +It is not possible to use indexes for dynamic properties. +Consider using static properties. + +Suggestions for improvement:: +If there is an index for `(n:Person) ON (n.name)`, it will not be used for the above query because the query is using a dynamic property. +Therefore, if there is an index, it is better to use the constant value. +For example, if `prop` is equal to `name`, the following query would be able to use the index: ++ +[source, cypher] +---- +MATCH (n:Person) WHERE n.name IS NOT NULL RETURN n; +---- + +====== +===== + +.A dynamic relationship property key makes it impossible to use indexes +[.tabbed-example] +===== +[.include-with-neo4j-code] +====== + Query:: + [source,cypher] @@ -311,7 +572,7 @@ MATCH ()-[r: KNOWS]->() WHERE r[$prop] IS NOT NULL RETURN r ---- Description of the returned code:: -Did not supply query with enough parameters. The produced query plan will not be cached and is not executable without `EXPLAIN`. (Missing parameters: `prop`) +Using a dynamic property makes it impossible to use an index lookup for this query (indexed type is: `KNOWS`) Suggestions for improvement:: Similar to dynamic node properties, use a constant value if possible, especially when there is an index on the relationship property. @@ -322,51 +583,108 @@ For example, if `$prop` is equal to `since`, you can rewrite the query to: MATCH ()-[r: KNOWS]->() WHERE r.since IS NOT NULL RETURN r ---- -==== +====== +[.include-with-GQLSTATUS-code] +====== + +Query:: ++ +[source,cypher] +---- +MATCH ()-[r: KNOWS]->() WHERE r[$prop] IS NOT NULL RETURN r +---- + +Returned GQLSTATUS code:: +03N95 + +Returned status description:: +info: dynamic property. +An index exists on label/type(s) `KNOWS`. +It is not possible to use indexes for dynamic properties. +Consider using static properties. + +Suggestions for improvement:: +Similar to dynamic node properties, use a constant value if possible, especially when there is an index on the relationship property. +For example, if `$prop` is equal to `since`, you can rewrite the query to: ++ +[source, cypher] +---- +MATCH ()-[r: KNOWS]->() WHERE r.since IS NOT NULL RETURN r +---- + +====== +===== [#_neo_clientnotification_statement_codegenerationfailed] -=== CodeGenerationFailed +=== Failed code generation + +The `CodeGenerationFailed` notification is created when it is not possible to generate a code for a query, for example, when the query is too big. +For more information about the specific query, see the stack trace in the _debug.log_ file. .Notification details [cols="<1s,<4"] |=== -|Code +|Neo4j code m|Neo.ClientNotification.Statement.CodeGenerationFailed |Title -a|The database was unable to generate code for the query. A stack trace can be found in the _debug.log_. -|Severity -m|INFORMATION +a|The database was unable to generate code for the query. A stacktrace can be found in the _debug.log_. +|Description +|The database was unable to generate code for the query. A stacktrace can be found in the debug.log. (method too big) |Category m|PERFORMANCE +|GQLSTATUS code +m|03N96 +|Status description +a|info: failed code generation. +Failed to generate code, falling back to interpreted $enginetype engine. A stacktrace can be found in the debug.log. Cause: $msg. +|Classification +m|PERFORMANCE +|SeverityLevel +m|INFORMATION |=== -The `CodeGenerationFailed` notification is created when it is not possible to generate a code for a query, for example, when the query is too big. -To find more information about the specific query, see the stack trace in the _debug.log_ file. +//TO ADD EXAMPLES +//To update the description when the code is spit out [#_hint_notifications] -== `HINT` category +== `HINT` notifications `HINT` notifications are returned by default when the Cypher planner or runtime cannot create a query plan to fulfill a specified hint, for example, `JOIN` or `INDEX`. -This behavior of the Cypher planner or runtime can be changed by setting the configuration `dbms.cypher.hints_error` to `true`, in which case, the query will return an error instead. +This behavior of the Cypher planner or runtime can be changed by setting the configuration link:https://neo4j.com/docs/operations-manual/current/configuration/configuration-settings/#config_dbms.cypher.hints_error[`dbms.cypher.hints_error`] to `true`. +In this case, the query will return an error. [#_neo_clientnotification_statement_joinhintunfulfillablewarning] -=== JoinHintUnfulfillableWarning +=== Join hint unfulfillable .Notification details [cols="<1s,<4"] |=== -|Code +|Neo4j code m|Neo.ClientNotification.Statement.JoinHintUnfulfillableWarning |Title a|The database was unable to plan a hinted join. -|Severity -m|WARNING +|Description +|The hinted join was not planned. +This could happen because no generated plan contained the join key, +please try using a different join key or restructure your query. (%s) |Category m|HINT +|GQLSTATUS code +m|01N30 +|Status description +a|warn: join hint unfulfillable. Unable to create a plan with `JOIN ON $var_list`. Try to change the join key(s) or restructure your query. +|Classification +m|HINT +|SeverityLevel +m|WARNING |=== -.A `JOIN` hint was given, but it was not possible to fulfill the hint. -==== +.Inability to fulfill the hint despite the given `JOIN` hint +[.tabbed-example] +===== +[.include-with-neo4j-code] +====== + Query:: + [source, cypher] @@ -385,28 +703,72 @@ This could happen because no generated plan contained the join key, please try using a different join key or restructure your query. (hinted join key identifier is: `a`) Suggestions for improvement:: -The join hint cannot be fulfilled because the given `JOIN` variable was introduced before the optional match and is therefore already bound. -The only option for this query is to remove the hint or change the query so it is possible to use the hint. -==== +The `JOIN` hint cannot be applied because its specified variable is before the `OPTIONAL MATCH` and, therefore, is already bound. +The only option for this query is to either remove the hint or modify the query to allow it to be used. + +====== +[.include-with-GQLSTATUS-code] +====== + +Query:: ++ +[source, cypher] +---- +MATCH (a:A) +WITH a, 1 AS horizon +OPTIONAL MATCH (a)-[r]->(b:B) +USING JOIN ON a +OPTIONAL MATCH (a)--(c) +RETURN * +---- + +Returned GQLSTATUS code:: +01N30 + +Returned status description:: +warn: joint hint unfulfillable. +Unable to create a plan with `JOIN ON a`. +Try to change the join key(s) or restructure your query. + +Suggestions for improvement:: +The `JOIN` hint cannot be applied because its specified variable is before the `OPTIONAL MATCH` and, therefore, is already bound. +The only option for this query is to either remove the hint or modify the query to allow it to be used. + +====== +===== + [#_neo_clientnotification_schema_hintedindexnotfound] -=== HintedIndexNotFound +=== Hinted index not found .Notification details [cols="<1s,<4"] |=== -|Code +|Neo4j code m|Neo.ClientNotification.Schema.HintedIndexNotFound |Title a|The request (directly or indirectly) referred to an index that does not exist. -|Severity -m|WARNING +|Description +|The hinted index does not exist, please check the schema (%s) |Category m|HINT +|GQLSTATUS code +m|01N31 +|Status description +a|warn: hinted index not found. +Unable to create a plan with `$index_descr` because the index does not exist. +|Classification +m|HINT +|SeverityLevel +m|WARNING |=== -.An index hint was given, but it was not possible to use the index. -==== +.Inability to use the label index despite the given index hint +[.tabbed-example] +===== +[.include-with-neo4j-code] +====== + Query:: + [source, cypher] @@ -424,86 +786,191 @@ Suggestions for improvement:: The hinted index does not exist, make sure the label and property are spelled correctly. If the spelling is correct, either create the index or remove the hint from the query. -==== +====== +[.include-with-GQLSTATUS-code] +====== -.A relationship index hint was given, but it was not possible to use the index -==== Query:: + [source, cypher] ---- -MATCH ()-[r:Rel]-() -USING INDEX r:Rel(id) -WHERE r.id = 1 -RETURN r +MATCH (a: Label) +USING INDEX a:Label(id) +WHERE a.id = 1 +RETURN a ---- -Description of the returned code:: -The hinted index does not exist, please check the schema (index is: INDEX FOR ()-[`r`:`Rel`]-() ON (`r`.`id`)) +Returned GQLSTATUS code:: +01N31 + +Returned status description:: +warn: hinted index not found. +Unable to create a plan with `INDEX :Label(id)` because the index does not exist. Suggestions for improvement:: The hinted index does not exist, make sure the label and property are spelled correctly. If the spelling is correct, either create the index or remove the hint from the query. +====== +===== -==== +.Inability to use the relationship index despite the given index hint +[.tabbed-example] +===== +[.include-with-neo4j-code] +====== -[#_unrecognized_notifications] -== `UNRECOGNIZED` category +Query:: ++ +[source, cypher] +---- +MATCH ()-[r:Rel]-() +USING INDEX r:Rel(id) +WHERE r.id = 1 +RETURN r +---- + +Description of the returned code:: +The hinted index does not exist, please check the schema (index is: INDEX FOR ()-[`r`:`Rel`]-() ON (`r`.`id`)) + +Suggestions for improvement:: +The hinted index does not exist, make sure the relationship type and property are spelled correctly. +If the spelling is correct, either create the index or remove the hint from the query. + +====== +[.include-with-GQLSTATUS-code] +====== + +Query:: ++ +[source, cypher] +---- +MATCH ()-[r:Rel]-() +USING INDEX r:Rel(id) +WHERE r.id = 1 +RETURN r +---- + +Returned GQLSTATUS code:: +01N31 + +Returned status description:: +warn: hinted index not found. +Unable to create a plan with `INDEX :Rel(id)` because the index does not exist. + +Suggestions for improvement:: +The hinted index does not exist, make sure the relationship type and property are spelled correctly. +If the spelling is correct, either create the index or remove the hint from the query. +====== +===== + +[#_unrecognized_notifications] +== `UNRECOGNIZED` notifications -A notification has the unrecognized category if the query or command mentions entities that are unknown to the system. +Unrecognized notifications are returned when the query or command mentions entities that are unknown to the system. [#_neo_clientnotification_database_homedatabasenotfound] -=== HomeDatabaseNotFound +=== Home database not found .Notification details [cols="<1s,<4"] |=== -|Code +|Neo4j code m|Neo.ClientNotification.Database.HomeDatabaseNotFound |Title a|The request referred to a home database that does not exist. -|Severity -m|INFORMATION +|Description +|The home database provided does not currently exist in the DBMS. +This command will not take effect until this database is created. (%s`) |Category m|UNRECOGNIZED +|GQLSTATUS code +m|00N50 +|Status description +a|note: successful completion - home database not found. +The database `$db` does not exist. +Verify that the spelling is correct or create the database for the command to take effect. +|Classification +m|UNRECOGNIZED +|SeverityLevel +m|INFORMATION |=== -.Set the `home` database to a database that does not yet exist. -==== +.Setting the `home` database to a database that does not exist +[.tabbed-example] +===== +[.include-with-neo4j-code] +====== + Query:: + [source,cypher] ---- -CREATE USER linnea SET PASSWORD "password" SET HOME DATABASE NonExistingDatabase +CREATE USER john SET PASSWORD "secret" SET HOME DATABASE nej4 ---- Description of the returned code:: The home database provided does not currently exist in the DBMS. -This command will not take effect until this database is created. (HOME DATABASE: `nonexistingdatabase`) +This command will not take effect until this database is created. (HOME DATABASE: `nej4`) Suggestions for improvement:: -Make sure the home database has not been misspelled. +Verify that the home database name is not misspelled. -==== +====== +[.include-with-GQLSTATUS-code] +====== + +Query:: ++ +[source,cypher] +---- +CREATE USER john SET PASSWORD "secret" SET HOME DATABASE nej4 +---- + +Returned GQLSTATUS code:: +00N50 + +Returned status description:: +note: successful completion - home database not found. +The database `ne4j` does not exist. +Verify that the spelling is correct or create the database for the command to take effect. + +Suggestions for improvement:: +Verify that the home database name is not misspelled. +====== +===== [#_neo_clientnotification_statement_unknownlabelwarning] -=== UnknownLabelWarning +=== Unknown label .Notification details [cols="<1s,<4"] |=== -|Code +|Neo4j code m|Neo.ClientNotification.Statement.UnknownLabelWarning |Title a|The provided label is not in the database. -|Severity -m|WARNING +|Description +|One of the labels in your query is not available in the database, make sure you didn't misspell it or that the label is available when you run this statement in your application (%s) |Category m|UNRECOGNIZED +|GQLSTATUS code +m|01N50 +|Status description +a|warn: unknown label. +The label `$label` does not exist. +Verify that the spelling is correct. +|Classification +m|UNRECOGNIZED +|SeverityLevel +m|WARNING |=== -.Match on a node with a label that does not exist in the database. -==== +.Matching on a node with a label that does not exist in the database +[.tabbed-example] +===== +[.include-with-neo4j-code] +====== + Query:: + [source,cypher] @@ -515,28 +982,66 @@ Description of the returned code:: One of the labels in your query is not available in the database, make sure you didn't misspell it or that the label is available when you run this statement in your application (the missing label name is: `Perso`) Suggestions for improvement:: -Make sure you didn't misspell the label. If nodes with the given label will be created in the future, then no change is needed. +Verify that the label is not misspelled. +If you plan to create nodes with that label in the future, then no change is needed. -==== +====== +[.include-with-GQLSTATUS-code] +====== + +Query:: ++ +[source,cypher] +---- +MATCH (n:Perso) RETURN n +---- + +Returned GQLSTATUS code:: +01N50 + +Returned status description:: +warn: unknown label. +The label `Perso` does not exist. +Verify that the spelling is correct. + +Suggestions for improvement:: +Verify that the label is not misspelled. +If you plan to create nodes with that label in the future, no change is needed. +====== +===== [#_neo_clientnotification_statement_unknownrelationshiptypewarning] -=== UnknownRelationshipTypeWarning +=== Unknown relationship type .Notification details [cols="<1s,<4"] |=== -|Code +|Neo4j code m|Neo.ClientNotification.Statement.UnknownRelationshipTypeWarning |Title a|The provided relationship type is not in the database. -|Severity -m|WARNING +|Description +|One of the relationship types in your query is not available in the database, +make sure you didn't misspell it or that the label is available when you run this statement in your application (%s) |Category m|UNRECOGNIZED +|GQLSTATUS code +m|01N51 +|Status description +a|warn: unknown relationship type. +The relationship type `$reltype` does not exist. +Verify that the spelling is correct. +|Classification +m|UNRECOGNIZED +|SeverityLevel +m|WARNING |=== -.Match on a relationship, where there are no relationships in the database with the given relationship type. -==== +.Matching a relationship with a type that does not exist +[.tabbed-example] +===== +[.include-with-neo4j-code] +====== Query:: + [source,cypher] @@ -549,68 +1054,144 @@ One of the relationship types in your query is not available in the database, make sure you didn't misspell it or that the label is available when you run this statement in your application (the missing relationship type is: `NonExistingType`) Suggestions for improvement:: -Make sure you did not misspell the relationship type. -If relationships will be created, with the given relationship type, in the future, then no change to the query is needed. +Verify that the relationship type is not misspelled. +If you plan to create relationships of this type in the future, no change is needed. -==== +====== +[.include-with-GQLSTATUS-code] +====== +Query:: ++ +[source,cypher] +---- +MATCH (n)-[:NonExistingType]->() RETURN n +---- + +Returned GQLSTATUS code:: +01N51 + +Returned status description:: +warn: unknown relationship type. +The relationship type `NonExistingType` does not exist. +Verify that the spelling is correct. + +Suggestions for improvement:: +Verify that the relationship type is not misspelled. +If you plan to create relationships of this type in the future, no change is needed. +====== +===== [#_neo_clientnotification_statement_unknownpropertykeywarning] -=== UnknownPropertyKeyWarning +=== Unknown property key .Notification details [cols="<1s,<4"] |=== -|Code +|Neo4j code m|Neo.ClientNotification.Statement.UnknownPropertyKeyWarning |Title a|The provided property key is not in the database -|Severity -m|WARNING +|Description +|One of the property names in your query is not available in the database, +make sure you didn't misspell it or that the label is available when you run this statement in your application (%s) |Category m|UNRECOGNIZED +|GQLSTATUS code +m|01N52 +|Status description +a|warn: unknown property key. +The property `$propkey` does not exist. +Verify that the spelling is correct. +|Classification +m|UNRECOGNIZED +|SeverityLevel +m|WARNING |=== -.Match on a property key that does not exist. -==== +.Matching a property key that does not exist +[.tabbed-example] +===== +[.include-with-neo4j-code] +====== Query:: + [source,cypher] ---- -MATCH (n {nonExistingProp:1}) RETURN n +MATCH (n:Person {nme:”Tom”}) +RETURN n ---- Description of the returned code:: One of the property names in your query is not available in the database, -make sure you didn't misspell it or that the label is available when you run this statement in your application (the missing property name is: `nonExistingProp`) +make sure you didn't misspell it or that the label is available when you run this statement in your application (the missing property name is: `nme`) Suggestions for improvement:: -Make sure you didn't misspell the property key. If the property key will be created in the future, then no change is needed to the query. +Verify that the property key is not misspelled. +If you plan to create that property key in the future, no change is needed. -==== +====== +[.include-with-GQLSTATUS-code] +====== +Query:: ++ +[source,cypher] +---- +MATCH (n:Person {nme:”Tom”}) +RETURN n +---- + +Returned GQLSTATUS code:: +01N52 + +Returned status description:: +warn: unknown property key. +The property `nme` does not exist. +Verify that the spelling is correct. + +Suggestions for improvement:: +Verify that the property key is not misspelled. +If you plan to create that property key in the future, no change is needed. +====== +===== [#_unsupported_notifications] == `UNSUPPORTED` category -Notifications with the unsupported category are created if the query or command is trying to use features that are not supported by the current system or using experimental features that should not be used in production. +Unsupported notifications are returned when the query or command is trying to use features that are not supported by the current system or using experimental features that should not be used in production. [#_neo_clientnotification_statement_runtimeunsupportedwarning] -=== RuntimeUnsupportedWarning +=== Unsupported runtime .Notification details [cols="<1s,<4"] |=== -|Code +|Neo4j code m|Neo.ClientNotification.Statement.RuntimeUnsupportedWarning |Title a|This query is not supported by the chosen runtime. -|Severity -m|WARNING +|Description +|Selected runtime is unsupported for this query, please use a different runtime instead or fallback to default. +(%s) |Category m|UNSUPPORTED +|GQLSTATUS code +m|01N40 +|Status description +a|warn: unsupported runtime. +The query cannot be executed with `$preparser_input1`, `$preparser_input2` is used. +Cause: `$msg`. +|Classification +m|UNSUPPORTED +|SeverityLevel +m|WARNING |=== -.The chosen runtime is not supported for the given query -==== +.A runtime is not supported by a Cypher command +[.tabbed-example] +===== +[.include-with-neo4j-code] +====== + Query:: + [source,cypher] @@ -629,22 +1210,57 @@ Use a different runtime or remove the runtime option to run the query with the d ---- SHOW INDEXES YIELD * ---- -==== +====== +[.include-with-GQLSTATUS-code] +====== +Query:: ++ +[source,cypher] +---- +EXPLAIN CYPHER runtime=pipelined SHOW INDEXES YIELD * +---- + +Returned GQLSTATUS code:: +01N40 + +Returned status description:: +warn: unsupported runtime. +The query cannot be executed with `runtime=pipelined`, `runtime=slotted` is used. +Cause: Pipelined does not yet support the plans including `ShowIndexes`, use another runtime. + +Suggestions for improvement:: +Use a different runtime or remove the runtime option to run the query with the default runtime: ++ +[source,cypher] +---- +SHOW INDEXES YIELD * +---- +====== +===== + +[role=label--deprecated-5.14] [#_neo_clientnotification_statement_runtimeexperimental] === RuntimeExperimental +[NOTE] +==== +The usage of this notification has been removed since Neo4j 5.14. +==== + .Notification details [cols="<1s,<4"] |=== -|Code +|Neo4j code m|Neo.ClientNotification.Statement.RuntimeExperimental |Title a|This feature is experimental and should not be used in production systems. -|Severity -m|WARNING +|Description +|You are using an experimental feature (%s) |Category m|UNSUPPORTED +|SeverityLevel +m|WARNING |=== .Use of the parallel runtime @@ -669,228 +1285,613 @@ MATCH (n) RETURN (n) ==== [#_deprecated_notifications] -== `DEPRECATION` category +== `DEPRECATION` notifications -Notifications within the deprecation category contain information about a feature or functionality which has been deprecated. It is important to change to the new functionality, otherwise, the query might break in a future version. +Deprecation notifications contain information about a feature or functionality that has been deprecated. +It is important to change to the new functionality, otherwise, the query might break in a future version. -[#_neo_clientnotification_statement_featuredeprecationwarning] -=== FeatureDeprecationWarning +[#_neo_clientnotification_statement_featuredeprecated] +=== Feature deprecated .Notification details [cols="<1s,<4"] |=== -|Code +|Neo4j code m|Neo.ClientNotification.Statement.FeatureDeprecationWarning |Title a|This feature is deprecated and will be removed in future versions. -|Severity -m|WARNING +|Descriptions +a| +- The procedure has a deprecated field. (%s) +- The function has a deprecated field. (%s) +- Creating an entity (%s) and referencing that entity in a property definition in the same CREATE is deprecated. +- Merging an entity (%s) and referencing that entity in a property definition in the same MERGE is deprecated. +- The Unicode character `%s` is deprecated for unescaped identifiers and will be considered as a whitespace character in the future. +To continue using it, escape the identifier by adding backticks around the identifier `%s`. +- The character with the Unicode representation `%s` is deprecated for unescaped identifiers and will not be supported in the future. +To continue using it, escape the identifier by adding backticks around the identifier `%s`. +- All subqueries in a UNION [ALL] should have the same ordering for the return columns. +Using differently ordered return items in a UNION [ALL] clause is deprecated and will be removed in a future version. +- Databases and aliases with unescaped `.` are deprecated unless to indicate that they belong to a composite database. +Names containing `.` should be escaped. (%s) |Category m|DEPRECATION +|GQLSTATUS code +m|01N00 +|Status description +a|warn: feature deprecated. $msg +|Classification +m|DEPRECATION +|SeverityLevel +m|WARNING |=== -.Colon after the | in a relationship pattern -==== +.Create a database with an unescaped name containing a dot +[.tabbed-example] +===== +[.include-with-neo4j-code] +====== Query:: + [source,cypher] ---- -MATCH (a)-[:A|:B|:C]-() RETURN * +CREATE DATABASE foo.bar ---- Description of the returned code:: -The semantics of using colon in the separation of alternative relationship types will change in a future version. (Please use ':A|B|C' instead) +Databases and aliases with unescaped `.` are deprecated unless to indicate that they belong to a composite database. +Names containing `.` should be escaped. (Name: `foo.bar`) Suggestions for improvement:: -Remove the colon inside the relationship type expression. +If not intended for a composite database, escape the name with the character ```. + [source,cypher] ---- -MATCH (a)-[:A|B|C]-() RETURN * +CREATE DATABASE `foo.bar` ---- -==== -.Setting properties using a node -==== +====== +[.include-with-GQLSTATUS-code] +====== Query:: + [source,cypher] ---- -MATCH (a)-[]-(b) -SET a = b +CREATE DATABASE foo.bar ---- -Description of the returned code:: -The use of nodes or relationships for setting properties is deprecated and will be removed in a future version. Please use `properties()` instead. +Returned GQLSTATUS code:: +01N00 + +Returned status description:: +warn: feature deprecated. +Databases and aliases with unescaped `.` are deprecated unless to indicate that they belong to a composite database. Names containing `.` should be escaped. (Name: foo.bar) Suggestions for improvement:: -Use the `properties()` function to get all properties from `b`. +If not intended for a composite database, escape the name with the character ```. + [source,cypher] ---- -MATCH (a)-[]-(b) -SET a = properties(b) +CREATE DATABASE `foo.bar` ---- -==== +====== +===== -.Setting properties using a relationship -==== +.Using differently ordered return items in a `UNION` clause +[.tabbed-example] +===== +[.include-with-neo4j-code] +====== Query:: + [source,cypher] ---- -MATCH (a)-[r]-(b) -SET a += r +RETURN 'val' as one, 'val' as two +UNION +RETURN 'val' as two, 'val' as one ---- Description of the returned code:: -The use of nodes or relationships for setting properties is deprecated and will be removed in a future version. Please use `properties()` instead. +All subqueries in a UNION [ALL] should have the same ordering for the return columns. +Using differently ordered return items in a UNION [ALL] clause is deprecated and will be removed in a future version. Suggestions for improvement:: -Use the `properties()` function to get all properties from `r` +Use the same order for the return columns in all subqueries combined by a `UNION` clause. + + [source,cypher] ---- -MATCH (a)-[r]-(b) -SET a += properties(r) +RETURN 'val' as one, 'val' as two +UNION +RETURN 'val' as one, 'val' as two ---- -==== -.Shortest path with a fixed relationship length -==== +====== +[.include-with-GQLSTATUS-code] +====== Query:: + [source,cypher] ---- -MATCH (a:Start), shortestPath((a)-[r]->()) RETURN a +RETURN 'val' as one, 'val' as two +UNION +RETURN 'val' as two, 'val' as one ---- -Description of the returned code:: -The use of `shortestPath` and `allShortestPaths` with fixed length relationships is deprecated and will be removed in a future version. -Please use a path with a length of `1 [r*1..1]` instead or a `Match` with a `limit`. +Returned GQLSTATUS code:: +01N00 + +Returned status description:: +warn: feature deprecated. +All subqueries in a UNION [ALL] should have the same ordering for the return columns. +Using differently ordered return items in a UNION [ALL] clause is deprecated and will be removed in a future version. Suggestions for improvement:: -If the relationship length is fixed, there is no reason to search for the shortest path. -Instead, you can rewrite it to the following: +Use the same order for the return columns in all subqueries combined by a `UNION` clause. + + [source,cypher] ---- -MATCH (a: Start)-[r]->(b: End) RETURN b LIMIT 1 +RETURN 'val' as one, 'val' as two +UNION +RETURN 'val' as one, 'val' as two ---- -==== +====== +===== - -.Create a database with an unescaped name containing a dot -==== +.Using the Unicode \u0085 in an unescaped identifier +[.tabbed-example] +===== +[.include-with-neo4j-code] +====== Query:: + [source,cypher] ---- -CREATE DATABASE foo.bar +RETURN 1 as my\u0085identifier ---- - Description of the returned code:: -Databases and aliases with unescaped `.` are deprecated unless to indicate that they belong to a composite database. -Names containing `.` should be escaped. (Name: `foo.bar`) +The Unicode character `\u0085` is deprecated for unescaped identifiers and will be considered as a whitespace character in the future. To continue using it, escape the identifier by adding backticks around the identifier `my\u0085identifier`. -Suggestions for improvement:: -If not intended for a composite database, escape the name with the character ```. +====== +[.include-with-GQLSTATUS-code] +====== +Query:: + [source,cypher] ---- -CREATE DATABASE `foo.bar` +RETURN 1 as my\u0085identifier ---- -==== - -.A procedure has been deprecated or renamed -==== -[source,cypher] ----- -CALL unsupported.dbms.shutdown ----- +Returned GQLSTATUS code:: +01N00 -Description of the returned code:: -The query used a deprecated procedure: `'unsupported.dbms.shutdown'`. +Returned status description:: +warn: feature deprecated. +The Unicode character `\u0085` is deprecated for unescaped identifiers and will be considered as a whitespace character in the future. +To continue using it, escape the identifier by adding backticks around the identifier `my\u0085identifier`. +====== +===== -Suggestions for improvement:: -Remove the use of the deprecated procedure. -If there is a suggested replacement, update to use the replacement instead. +[#_deprecated-feature-with-replacement] +=== Feature deprecated with a replacement -==== +.Notification details +[cols="<1s,<4"] +|=== +|Neo4j code +m|Neo.ClientNotification.Statement.FeatureDeprecationWarning +|Title +a|This feature is deprecated and will be removed in future versions. +|Descriptions +a| +- The semantics of using colon in the separation of alternative relationship types will change in a future version. (%s) +- The use of nodes or relationships for setting properties is deprecated and will be removed in a future version. +Please use properties() instead. +- The use of shortestPath and allShortestPaths with fixed length relationships is deprecated and will be removed in a future version. +Please use a path with a length of 1 [r*1..1] instead or a Match with a limit. +- The query used a deprecated function. (%s) +- The query used a deprecated procedure. (%s) +- The query used a deprecated runtime option. (%s) +- The `TextIndexProvider.DESCRIPTOR.name()` provider for text indexes is deprecated and will be removed in a future version. +Please use `TrigramIndexProvider.DESCRIPTOR.name()` instead. +|Category +m|DEPRECATION +|GQLSTATUS code +m|01N01 +|Status description +a|warn: feature deprecated with replacement. +`$thing1` is deprecated. +It is replaced by `$thing2`. +|Classification +m|DEPRECATION +|SeverityLevel +m|WARNING +|=== -.Using a deprecated runtime option -==== +.Colon after the vertical bar `|:` in a relationship pattern +[.tabbed-example] +===== +[.include-with-neo4j-code] +====== Query:: + [source,cypher] ---- -CYPHER runtime = interpreted MATCH (n) RETURN n +MATCH (a)-[:A|:B|:C]-() RETURN * ---- Description of the returned code:: -The query used a deprecated runtime option. (`'runtime=interpreted'` is deprecated, please use `'runtime=slotted'` instead) +The semantics of using colon in the separation of alternative relationship types will change in a future version. (Please use ':A|B|C' instead) Suggestions for improvement:: -Runtime `interpreted` is deprecated, use another runtime or remove the runtime option to use the default runtime. +Remove the colon inside the relationship type expression. + [source,cypher] ---- -MATCH (n) RETURN n +MATCH (a)-[:A|B|C]-() RETURN * ---- -==== -.Using the `text-1.0` index provider when creating a text index -==== +====== +[.include-with-GQLSTATUS-code] +====== Query:: + [source,cypher] ---- -CREATE TEXT INDEX FOR (n:Label) ON (n.prop) OPTIONS {indexProvider : 'text-1.0'} +MATCH (a)-[:A|:B|:C]-() RETURN * ---- -Description of the returned code:: -The `text-1.0` provider for text indexes is deprecated and will be removed in a future version. -Please use `text-2.0` instead. +Returned GQLSTATUS code:: +01N01 + +Returned status description:: +warn: feature deprecated with replacement. +`:A|:B|:C` is deprecated. +It is replaced by `:A|B|C`. Suggestions for improvement:: -Update the option `indexProvider` with the value `text-2.0`. +Remove the colon inside the relationship type expression. + [source,cypher] ---- -CREATE TEXT INDEX FOR (n:Label) ON (n.prop) OPTIONS {indexProvider : 'text-2.0'} +MATCH (a)-[:A|B|C]-() RETURN * ---- -==== -.Using differently ordered return items in a `UNION` clause -==== +====== +===== + +.Setting properties using a node +[.tabbed-example] +===== +[.include-with-neo4j-code] +====== Query:: + [source,cypher] ---- -RETURN 'val' as one, 'val' as two -UNION -RETURN 'val' as two, 'val' as one +MATCH (a)-[]-(b) +SET a = b ---- Description of the returned code:: -All subqueries in a UNION [ALL] should have the same ordering for the return columns. -Using differently ordered return items in a UNION [ALL] clause is deprecated and will be removed in a future version. +The use of nodes or relationships for setting properties is deprecated and will be removed in a future version. +Please use `properties()` instead. Suggestions for improvement:: -Use the same order for the return columns in all subqueries combined by a `UNION` clause. +Use the `properties()` function to get all properties from `b`. ++ +[source,cypher] +---- +MATCH (a)-[]-(b) +SET a = properties(b) +---- +====== +[.include-with-GQLSTATUS-code] +====== +Query:: + [source,cypher] ---- -RETURN 'val' as one, 'val' as two -UNION -RETURN 'val' as one, 'val' as two +MATCH (a)-[]-(b) +SET a = b ---- -==== + +Returned GQLSTATUS code:: +01N01 + +Returned status description:: +warn: feature deprecated with replacement. +`SET a = b` is deprecated. +It is replaced by `SET a = properties(b)`. + +Suggestions for improvement:: +Use the `properties()` function to get all properties from `b`. ++ +[source,cypher] +---- +MATCH (a)-[]-(b) +SET a = properties(b) +---- + +====== +===== + + +.Setting properties using a relationship +[.tabbed-example] +===== +[.include-with-neo4j-code] +====== +Query:: ++ +[source,cypher] +---- +MATCH (a)-[r]-(b) +SET a += r +---- + +Description of the returned code:: +The use of nodes or relationships for setting properties is deprecated and will be removed in a future version. +Please use `properties()` instead. + +Suggestions for improvement:: +Use the `properties()` function to get all properties from `r`. ++ +[source,cypher] +---- +MATCH (a)-[r]-(b) +SET a += properties(r) +---- + +====== +[.include-with-GQLSTATUS-code] +====== +Query:: ++ +[source,cypher] +---- +MATCH (a)-[r]-(b) +SET a += r +---- + +Returned GQLSTATUS code:: +01N01 + +Returned status description:: +warn: feature deprecated with replacement. +`SET a += r` is deprecated. +It is replaced by `SET a += properties(r)`. + +Suggestions for improvement:: +Use the `properties()` function to get all properties from `r`. ++ +[source,cypher] +---- +MATCH (a)-[r]-(b) +SET a += properties(r) +---- +====== +===== + + +.Shortest path with a fixed relationship length +[.tabbed-example] +===== +[.include-with-neo4j-code] +====== +Query:: ++ +[source,cypher] +---- +MATCH (a:Start), shortestPath((a)-[r]->()) RETURN a +---- + +Description of the returned code:: +The use of `shortestPath` and `allShortestPaths` with fixed length relationships is deprecated and will be removed in a future version. +Please use a path with a length of `1 [r*1..1]` instead or a `Match` with a `limit`. + +Suggestions for improvement:: +If the relationship length is fixed, there is no reason to search for the shortest path. +Instead, you can rewrite it to the following: ++ +[source,cypher] +---- +MATCH (a: Start)-[r]->(b: End) RETURN b LIMIT 1 +---- + +====== +[.include-with-GQLSTATUS-code] +====== +Query:: ++ +[source,cypher] +---- +MATCH (a:Start), shortestPath((a)-[r]->()) RETURN a +---- + +Returned GQLSTATUS code:: +01N01 + +Returned status description:: +warn: feature deprecated with replacement. +`shortestPath\((a)-[r]->())` is deprecated. +It is replaced by `shortestPath\((n)-[r*1..1]->(m))`. + +Suggestions for improvement:: +If the relationship length is fixed, there is no reason to search for the shortest path. +Instead, you can rewrite it to the following: ++ +[source,cypher] +---- +MATCH (a: Start)-[r]->(b: End) RETURN b LIMIT 1 +---- +====== +===== + +.Using a deprecated runtime option +[.tabbed-example] +===== +[.include-with-neo4j-code] +====== +Query:: ++ +[source,cypher] +---- +CYPHER runtime = interpreted MATCH (n) RETURN n +---- + +Description of the returned code:: +The query used a deprecated runtime option. (`'runtime=interpreted'` is deprecated, please use `'runtime=slotted'` instead) + +Suggestions for improvement:: +Runtime `interpreted` is deprecated and another runtime is used instead. +Alternatively, you can remove the runtime option to use the default runtime. ++ +[source,cypher] +---- +MATCH (n) RETURN n +---- + +====== +[.include-with-GQLSTATUS-code] +====== +Query:: ++ +[source,cypher] +---- +CYPHER runtime = interpreted MATCH (n) RETURN n +---- + +Returned GQLSTATUS code:: +01N01 + +Returned status description:: +warn: feature deprecated with replacement. +`runtime=interpreted` is deprecated. +It is replaced by `runtime=slotted`. + +Suggestions for improvement:: +Runtime `interpreted` is deprecated and another runtime is used instead. +Alternatively, you can remove the runtime option to use the default runtime. ++ +[source,cypher] +---- +MATCH (n) RETURN n +---- +====== +===== + +.Using the `text-1.0` index provider when creating a text index +[.tabbed-example] +===== +[.include-with-neo4j-code] +====== +Query:: ++ +[source,cypher] +---- +CREATE TEXT INDEX FOR (n:Label) ON (n.prop) OPTIONS {indexProvider : 'text-1.0'} +---- + +Description of the returned code:: +The `text-1.0` provider for text indexes is deprecated and will be removed in a future version. +Please use `text-2.0` instead. + +Suggestions for improvement:: +Update the option `indexProvider` with the value `text-2.0`. ++ +[source,cypher] +---- +CREATE TEXT INDEX FOR (n:Label) ON (n.prop) OPTIONS {indexProvider : 'text-2.0'} +---- + +====== +[.include-with-GQLSTATUS-code] +====== +Query:: ++ +[source,cypher] +---- +CREATE TEXT INDEX FOR (n:Label) ON (n.prop) OPTIONS {indexProvider : 'text-1.0'} +---- + +Returned GQLSTATUS code:: +01N01 + +Returned status description:: +warn: feature deprecated with replacement. +`text-1.0` is deprecated. +It is replaced by `text-2.0`. + +Suggestions for improvement:: +Update the option `indexProvider` with the value `text-2.0`. ++ +[source,cypher] +---- +CREATE TEXT INDEX FOR (n:Label) ON (n.prop) OPTIONS {indexProvider : 'text-2.0'} +---- +====== +===== + +.Using a renamed or a deprecated procedure +[.tabbed-example] +===== +[.include-with-neo4j-code] +====== + +[source,cypher] +---- +CALL unsupported.dbms.shutdown +---- + +Description of the returned code:: +The query used a deprecated procedure: `'unsupported.dbms.shutdown'`. + +Suggestions for improvement:: +Remove the use of the deprecated procedure. +If there is a suggested replacement, update to use the replacement instead. + +====== +[.include-with-GQLSTATUS-deprecated-with-replacement] +====== +[source,cypher] +---- +CALL cdc.query +---- + +Returned GQLSTATUS code:: +01N01 + +Returned status description:: +warn: feature deprecated with replacement. +`cdc.query` is deprecated. +It is replaced by `db.cdc.query`. + +====== +[.include-with-GQLSTATUS-deprecated-without-replacement] +====== +[source,cypher] +---- +CALL unsupported.dbms.shutdown +---- + +Returned GQLSTATUS code:: +01N02 + +Returned status description:: +warn: feature deprecated without replacement. +`unsupported.dbms.shutdown` is deprecated and will be removed without a replacement. +====== +===== .Using id() function -==== +[.tabbed-example] +===== +[.include-with-neo4j-code] +====== + Query:: + [source,cypher] @@ -898,8 +1899,10 @@ Query:: MATCH (a) RETURN id(a) ---- + Description of the returned code:: The query used a deprecated function: `id`. + Suggestions for improvement:: Use the function `elementId()` instead. + @@ -908,10 +1911,88 @@ Use the function `elementId()` instead. MATCH (a) RETURN elementId(a) ---- -==== +====== +[.include-with-GQLSTATUS-deprecated-with-replacement] +====== +Query:: ++ +[source,cypher] +---- +MATCH (a) +RETURN id(a) +---- -.Using Cypher query option connectComponentsPlanner -==== +Returned GQLSTATUS code:: +01N01 + +Returned status description:: +warn: feature deprecated with replacement. +`id` is deprecated. +It is replaced by `elementId()`. + +Suggestions for improvement:: +Use the function `elementId()` instead. ++ +[source,cypher] +---- +MATCH (a) +RETURN elementId(a) +---- +====== +[.include-with-GQLSTATUS-deprecated-without-replacement] +====== +Query:: ++ +[source,cypher] +---- +MATCH (a) +RETURN id(a) +---- + +Returned GQLSTATUS code:: +01N02 + +Returned status description:: +warn: feature deprecated without replacement. +`id` is deprecated and will be removed without a replacement. +====== +===== + +[#_deprecated-notifications-without-replacement] +=== Deprecated features without a future replacement + +.Notification details +[cols="<1s,<4"] +|=== +|Neo4j code +m|Neo.ClientNotification.Statement.FeatureDeprecationWarning +|Title +a|This feature is deprecated and will be removed in future versions. +|Descriptions +a| +- The Cypher query option `connectComponentsPlanner` is deprecated and will be removed without a replacement. +The product's default behavior of using a cost-based IDP search algorithm when combining sub-plans will be kept. +For more information, see Cypher Manual -> Cypher planner. +- The query used a deprecated function%s +- The query used a deprecated procedure%s +|Category +m|DEPRECATION +|GQLSTATUS code +m|01N02 +|Status description +a|warn: feature deprecated without replacement. +`$thing` is deprecated and will be removed without a replacement. +|Classification +m|DEPRECATION +|SeverityLevel +m|WARNING +|=== + +.Using Cypher query option `connectComponentsPlanner` +[.tabbed-example] +===== +[.include-with-neo4j-code] +====== Query:: + [source,cypher] @@ -922,35 +2003,75 @@ Description of the returned code:: The Cypher query option `connectComponentsPlanner` is deprecated and will be removed without a replacement. The product's default behavior of using a cost-based IDP search algorithm when combining sub-plans will be kept. For more information, see link:https://neo4j.com/docs/cypher-manual/current/query-tuning/query-options/#cypher-planner[Cypher manual -> Cypher planner]. -==== -.Using the unicode \u0085 in an unescaped identifier -==== +====== +[.include-with-GQLSTATUS-code] +====== Query:: + [source,cypher] ---- -RETURN 1 as my\u0085identifier +CYPHER connectComponentsPlanner=greedy MATCH (a), (b) RETURN * ---- -Description of the returned code:: -The Unicode character \`\u0085` is deprecated for unescaped identifiers and will be considered as a whitespace character in the future. To continue using it, escape the identifier by adding backticks around the identifier \`my…identifier`. -==== -[#_neo_clientnotification_request_deprecatedformat] -=== DeprecatedFormat +Returned GQLSTATUS code:: +01N02 + +Returned status description:: +warn: feature deprecated without replacement. +`connectComponentsPlanner` is deprecated and will be removed without a replacement. +====== +===== +[[_deprecated-procedure-result-column]] +=== Procedure field deprecated .Notification details [cols="<1s,<4"] |=== -|Code -m|Neo.ClientNotification.Request.DeprecatedFormat +|Neo4j code +m|Neo.ClientNotification.Statement.FeatureDeprecationWarning |Title -a|The client requested a deprecated format. -|Severity +a|This feature is deprecated and will be removed in future versions. +|Description +a|The query used a deprecated field from a procedure. (%s) +|Category +m|DEPRECATION +|GQLSTATUS code +m|01N03 +|Status description +a|warn: procedure field deprecated. +`$field` for procedure `$proc` is deprecated. +|Classification +m|DEPRECATION +|SeverityLevel m|WARNING +|=== + +[#_neo_clientnotification_request_] +=== Feature deprecated with replacement - DeprecatedFormat + +.Notification details +[cols="<1s,<4"] +|=== +|Neo4j code +m|Neo.ClientNotification.Request.DeprecatedFormat +|Title +a|The client made a request for a format which has been deprecated. +|Description +|The requested format has been deprecated. (%s) |Category m|DEPRECATION +|GQLSTATUS code +m|01N01 +|Status description +a|warn: feature deprecated with replacement. +`$thing1` is deprecated. +It is replaced by `$thing2`. +|Classification +m|DEPRECATION +|SeverityLevel +m|WARNING |=== [#_security_notifications] @@ -960,44 +2081,59 @@ Security notifications indicate that the result of the query or command might ha Verify that this is the intended behavior of your query or command. [#_neo_clientnotification_security_commandhasnoeffect] -=== CommandHasNoEffect +=== Role or privilege not assigned .Notification details [cols="<1s,<4"] |=== -|Code +|Neo4j code m|Neo.ClientNotification.Security.CommandHasNoEffect |Title a|`` has no effect.* -|Severity -m|INFORMATION +|Descriptions +a| +- The user does not have the role. See Status Codes documentation for more information. +- The role does not have the privilege. See Status Codes documentation for more information. |Category m|SECURITY +|GQLSTATUS code +m|00N71 +|Status description +|note: successful completion - role or privilege not assigned. +`$cmd` has no effect. +The role or privilege is not assigned. +|Classification +m|SECURITY +|SeverityLevel +m|INFORMATION |=== -*_`` could be either the full command given by the user or a subset of the given command._ +*_```` and `cmd` could be either the full command given by the user or a subset of the given command._ -.Granting a role to a user who already has that role -==== + +.Revoking a role from a user who does not have that role +[.tabbed-example] +===== +[.include-with-neo4j-code] +====== Command:: + [source, cypher] ---- -GRANT ROLE admin TO john +REVOKE ROLE admin, reader FROM jane ---- -Full title of the returned code:: -`GRANT ROLE admin TO john` has no effect. +Title of the returned code:: +`REVOKE ROLE reader FROM jane` has no effect. Description of the returned code:: -The user already has the role. See Status Codes documentation for more information. +The user does not have the role. See Status Codes documentation for more information. Suggestions for improvement:: Verify that this is the intended role and user. -==== - -.Revoking a role from a user who does not have that role -==== +====== +[.include-with-GQLSTATUS-code] +====== Command:: + [source, cypher] @@ -1005,19 +2141,147 @@ Command:: REVOKE ROLE admin, reader FROM jane ---- -Full title of the returned code:: +Returned GQLSTATUS code:: +00N71 + +Returned status description:: +note: successful completion - role or privilege not assigned. `REVOKE ROLE reader FROM jane` has no effect. +The role or privilege is not assigned. + +Suggestions for improvement:: +Verify that this is the intended role and user. +====== +===== + +.Revoking a privilege from a role that does not have that privilege +[.tabbed-example] +===== +[.include-with-neo4j-code] +====== +Command:: ++ +[source, cypher] +---- +REVOKE WRITE ON GRAPH * FROM reader +---- + +Title of the returned code:: +`REVOKE DENY WRITE ON GRAPH * FROM reader` has no effect. Description of the returned code:: -The user does not have the role. See Status Codes documentation for more information. +The role does not have the privilege. See Status Codes documentation for more information. + +Suggestions for improvement:: +Verify that this is the intended privilege and role. +====== +[.include-with-GQLSTATUS-code] +====== + +Command:: ++ +[source, cypher] +---- +REVOKE WRITE ON GRAPH * FROM reader +---- + +Returned GQLSTATUS code:: +00N71 + +Returned status description:: +note: successful completion - role or privilege not assigned. +`REVOKE DENY WRITE ON GRAPH * FROM reader` has no effect. +The role or privilege is not assigned. + +Suggestions for improvement:: +Verify that this is the intended privilege and role. + +====== +===== + + +[#_neo_clientnotification_security_roleorprivilegealreadyassigned] +=== Role or privilege already assigned + +.Notification details +[cols="<1s,<4"] +|=== +|Neo4j code +m|Neo.ClientNotification.Security.CommandHasNoEffect +|Title +a|`` has no effect.* +|Descriptions +a| +- The user already has the role. See Status Codes documentation for more information. +- The role already has the privilege. See Status Codes documentation for more information. +|Category +m|SECURITY +|GQLSTATUS code +m|00N70 +|Status description +|note: successful completion - role or privilege already assigned. +`$cmd` has no effect. +The role or privilege is already assigned. +|Classification +m|SECURITY +|SeverityLevel +m|INFORMATION +|=== + +*_```` and `cmd` could be either the full command given by the user or a subset of the given command._ + + +.Granting a role to a user who already has that role +[.tabbed-example] +===== +[.include-with-neo4j-code] +====== +Command:: ++ +[source,cypher] +---- +GRANT ROLE admin TO john +---- +Title of the returned code:: +`GRANT ROLE admin TO john` has no effect. + +Description of the returned code:: +The user already has the role. See Status Codes documentation for more information. Suggestions for improvement:: Verify that this is the intended role and user. -==== + +====== +[.include-with-GQLSTATUS-code] +====== +Command:: ++ +[source,cypher] +---- +GRANT ROLE admin TO john +---- + +Returned GQLSTATUS code:: +00N70 + +Returned status description:: +note: successful completion - role or privilege already assigned. +`GRANT ROLE admin TO john` has no effect. +The role or privilege is already assigned. + +Suggestions for improvement:: +Verify that this is the intended role and user. + +====== +===== + .Granting or denying a privilege to a role that already has that privilege -==== // This command returns 2 notifications, one for NODES and one for RELATIONSHIPS. +[.tabbed-example] +===== +[.include-with-neo4j-code] +====== Command:: + [source, cypher] @@ -1025,7 +2289,7 @@ Command:: GRANT TRAVERSE ON GRAPH * TO reader ---- -Full title of the returned code:: +Title of the returned code:: `GRANT TRAVERSE ON GRAPH * NODE * TO reader` has no effect. Description of the returned code:: @@ -1033,68 +2297,135 @@ The role already has the privilege. See Status Codes documentation for more info Suggestions for improvement:: Verify that this is the intended privilege and role. -==== -.Revoking a privilege from a role that does not have that privilege -==== +====== +[.include-with-GQLSTATUS-code] +====== Command:: + [source, cypher] ---- -REVOKE WRITE ON GRAPH * FROM reader +GRANT TRAVERSE ON GRAPH * TO reader ---- -Full title of the returned code:: -`REVOKE DENY WRITE ON GRAPH * FROM reader` has no effect. +Returned GQLSTATUS code:: +00N70 -Description of the returned code:: -The role does not have the privilege. See Status Codes documentation for more information. +Returned status description:: +note: successful completion - role or privilege already assigned. +`GRANT TRAVERSE ON GRAPH * TO reader` has no effect. +The role or privilege is already assigned. Suggestions for improvement:: Verify that this is the intended privilege and role. -==== +====== +===== + + [#_neo_clientnotification_security_impossiblerevokecommand] -=== ImpossibleRevokeCommand +=== Impossible revoke command .Notification details [cols="<1s,<4"] |=== -|Code +|Neo4j code m|Neo.ClientNotification.Security.ImpossibleRevokeCommand |Title a|`` has no effect.* -|Severity -m|WARNING +|Description +|Role does not exist. Make sure nothing is misspelled. +This notification will become an error in a future major version. +See Status Codes documentation for more information. |Category m|SECURITY +|GQLSTATUS code +m|01N70 +|Status description +a|warn: impossible revoke command. `cmd` has no effect. $msg +Make sure nothing is misspelled. +This notification will become an error in a future major version. +|Classification +m|SECURITY +|SeverityLevel +m|WARNING |=== -*_`` could be either the full command given by the user or a subset of the given command._ +*_```` and `cmd` could be either the full command given by the user or a subset of the given command._ .Revoking a non-existing role from a user -==== +[.tabbed-example] +===== +[.include-with-neo4j-code] +====== +Command:: ++ +[source, cypher] +---- +REVOKE ROLE manager, reader FROM jane +---- + +Title of the returned code:: +`REVOKE ROLE manager FROM jane` has no effect. + +Description of the returned code:: +Role does not exist. Make sure nothing is misspelled. +This notification will become an error in a future major version. +See Status Codes documentation for more information. + +Suggestions for improvement:: +Verify that this is the intended role and that it is spelled correctly. +====== +[.include-with-GQLSTATUS-code] +====== +Command:: ++ +[source, cypher] +---- +REVOKE ROLE manager, reader FROM jane +---- + +Returned GQLSTATUS code:: +01N70 + +Returned status description:: +warn: impossible revoke command. +`REVOKE ROLE manager FROM jane` has no effect. +Role does not exist. +Make sure nothing is misspelled. +This notification will become an error in a future major version. + +Suggestions for improvement:: +Verify that this is the intended role and that it is spelled correctly. +====== +===== + +.Revoking a role from a non-existing user +[.tabbed-example] +===== +[.include-with-neo4j-code] +====== Command:: + [source, cypher] ---- -REVOKE ROLE manager, reader FROM jane +REVOKE ROLE reader FROM alice ---- -Full title of the returned code:: -`REVOKE ROLE manager FROM jane` has no effect. +Title of the returned code:: +`REVOKE ROLE reader FROM alice` has no effect. Description of the returned code:: -Role does not exist. Make sure nothing is misspelled. +User does not exist. +Make sure nothing is misspelled. This notification will become an error in a future major version. -See Status Codes documentation for more information. Suggestions for improvement:: -Verify that this is the intended role and that it is spelled correctly. -==== +Verify that this is the intended user and that it is spelled correctly. +====== +[.include-with-GQLSTATUS-code] +====== -.Revoking a role from a non-existing user -==== Command:: + [source, cypher] @@ -1102,20 +2433,28 @@ Command:: REVOKE ROLE reader FROM alice ---- -Full title of the returned code:: -`REVOKE ROLE reader FROM alice` has no effect. +Returned GQLSTATUS code:: +01N70 -Description of the returned code:: -User does not exist. Make sure nothing is misspelled. +Returned status description:: +warn: impossible revoke command. +`REVOKE ROLE reader FROM alice` has no effect. +User does not exist. +Make sure nothing is misspelled. This notification will become an error in a future major version. See Status Codes documentation for more information. - +o Suggestions for improvement:: Verify that this is the intended user and that it is spelled correctly. -==== +====== +===== + .Revoking a privilege from a non-existing role -==== +[.tabbed-example] +===== +[.include-with-neo4j-code] +====== Command:: + [source, cypher] @@ -1123,7 +2462,7 @@ Command:: REVOKE GRANT WRITE ON GRAPH * FROM manager ---- -Full title of the returned code:: +Title of the returned code:: `REVOKE GRANT WRITE ON GRAPH * FROM manager` has no effect. Description of the returned code:: @@ -1133,10 +2472,37 @@ See Status Codes documentation for more information. Suggestions for improvement:: Verify that this is the intended role and that it is spelled correctly. -==== +====== +[.include-with-GQLSTATUS-code] +====== + +Command:: ++ +[source, cypher] +---- +REVOKE GRANT WRITE ON GRAPH * FROM manager +---- + +Returned GQLSTATUS code:: +01N70 + +Returned status description:: +warn: impossible revoke command. +`REVOKE GRANT WRITE ON GRAPH * FROM manager` has no effect. +Role does not exist. +Make sure nothing is misspelled. +This notification will become an error in a future major version. + +Suggestions for improvement:: +Verify that this is the intended role and that it is spelled correctly. +====== +===== .Revoking a privilege on a non-existing graph from a role -==== +[.tabbed-example] +===== +[.include-with-neo4j-code] +====== Command:: + [source, cypher] @@ -1144,24 +2510,46 @@ Command:: REVOKE GRANT WRITE ON GRAPH neo3j FROM editor ---- -Full title of the returned code:: +Title of the returned code:: `REVOKE GRANT WRITE ON GRAPH neo3j FROM editor` has no effect. Description of the returned code:: -// We use 'Database' here for multiple reasons -// - The user fixes the issue by doing 'create database', not 'create graph'. -// - This matches the existing behaviour when granting the privilege. -// - It is easier to implement this way. -Database 'neo3j' does not exist. Make sure nothing is misspelled. +Database `neo3j` does not exist. Make sure nothing is misspelled. This notification will become an error in a future major version. See Status Codes documentation for more information. Suggestions for improvement:: Verify that this is the intended graph and that it is spelled correctly. -==== +====== +[.include-with-GQLSTATUS-code] +====== +Command:: ++ +[source, cypher] +---- +REVOKE GRANT WRITE ON GRAPH neo3j FROM editor +---- + +Returned GQLSTATUS code:: +01N70 + +Returned status description:: +warn: impossible revoke command. +`REVOKE GRANT WRITE ON GRAPH neo3j FROM editor` has no effect. +Database `neo3j` does not exist. +Make sure nothing is misspelled. +This notification will become an error in a future major version. + +Suggestions for improvement:: +Verify that this is the intended graph and that it is spelled correctly. +====== +===== .Revoking a privilege on a non-existing database from a role -==== +[.tabbed-example] +===== +[.include-with-neo4j-code] +====== Command:: + [source, cypher] @@ -1169,20 +2557,48 @@ Command:: REVOKE GRANT ACCESS ON DATABASE neo3j FROM editor ---- -Full title of the returned code:: +Title of the returned code:: `REVOKE GRANT ACCESS ON DATABASE neo3j FROM editor` has no effect. Description of the returned code:: -Database 'neo3j' does not exist. Make sure nothing is misspelled. +Database `neo3j` does not exist. Make sure nothing is misspelled. This notification will become an error in a future major version. See Status Codes documentation for more information. Suggestions for improvement:: Verify that this is the intended database and that it is spelled correctly. -==== +====== +[.include-with-GQLSTATUS-code] +====== +Command:: ++ +[source, cypher] +---- +REVOKE GRANT ACCESS ON DATABASE neo3j FROM editor +---- + +Returned GQLSTATUS code:: +01N70 + +Returned status description:: +warn: impossible revoke command. +`REVOKE GRANT ACCESS ON DATABASE neo3j FROM editor` has no effect. +Database `neo3j` does not exist. +Make sure nothing is misspelled. +This notification will become an error in a future major version. + +Suggestions for improvement:: +Verify that this is the intended database and that it is spelled correctly. + +====== +===== + .Revoking a privilege from a role with wildcard graph parameter -==== +[.tabbed-example] +===== +[.include-with-neo4j-code] +====== Parameter:: + [source, javascript] @@ -1198,7 +2614,7 @@ Command:: REVOKE GRANT CREATE ON GRAPH $graph FROM PUBLIC ---- -Full title of the returned code:: +Title of the returned code:: `REVOKE GRANT CREATE ON GRAPH $graph FROM PUBLIC` has no effect. Description of the returned code:: @@ -1209,10 +2625,46 @@ See Status Codes documentation for more information. Suggestions for improvement:: Use `GRAPH *` without the parameter to revoke the privilege on all graphs. -==== +====== +[.include-with-GQLSTATUS-code] +====== +Parameter:: ++ +[source, javascript] +---- +{ + "graph": "*" +} +---- +Command:: ++ +[source, cypher] +---- +REVOKE GRANT CREATE ON GRAPH $graph FROM PUBLIC +---- -.Revoking a privilege from a role with wildcard database parameter -==== +Returned GQLSTATUS code:: +01N70 + +Returned status description:: +warn: impossible revoke command. +`REVOKE GRANT CREATE ON GRAPH $graph FROM PUBLIC` has no effect. +Database `*` does not exist. +Make sure nothing is misspelled. +This notification will become an error in a future major version. + +Suggestions for improvement:: +Use `GRAPH *` without the parameter to revoke the privilege on all graphs. + + +====== +===== + +.Revoking a privilege from a role with a wildcard database parameter +[.tabbed-example] +===== +[.include-with-neo4j-code] +====== Parameter:: + [source, javascript] @@ -1228,7 +2680,7 @@ Command:: REVOKE GRANT ACCESS ON DATABASE $database FROM PUBLIC ---- -Full title of the returned code:: +Title of the returned code:: `REVOKE GRANT ACCESS ON DATABASE $database FROM PUBLIC` has no effect. Description of the returned code:: @@ -1239,69 +2691,211 @@ See Status Codes documentation for more information. Suggestions for improvement:: Use `DATABASE *` without the parameter to revoke the privilege on all databases. -==== +====== +[.include-with-GQLSTATUS-code] +====== + +Parameter:: ++ +[source, javascript] +---- +{ + "database": "*" +} +---- +Command:: ++ +[source, cypher] +---- +REVOKE GRANT ACCESS ON DATABASE $database FROM PUBLIC +---- + +Returned GQLSTATUS code:: +01N70 + +Returned status description:: +warn: impossible revoke command. +`REVOKE GRANT ACCESS ON DATABASE $database FROM PUBLIC` has no effect. +Database `*` does not exist. +Make sure nothing is misspelled. +This notification will become an error in a future major version. + +Suggestions for improvement:: +Use `DATABASE *` without the parameter to revoke the privilege on all databases. + +====== +===== [#_topology_notifications] == `TOPOLOGY` category Topology notifications provide additional information related to managing databases and servers. -[#_neo_clientnotification_cluster_cordonedserversexistedduringallocation] -=== CordonedServersExistedDuringAllocation +[#_neo_clientnotification_cluster_serveralreadyenabled] +=== Server already enabled -.When is this notification returned? -[TIP] -==== -When a Cypher administration command triggers an allocation decision and some of the servers are cordoned. -For example, `CREATE DATABASE`, `ALTER DATABASE`, `DEALLOCATE DATABASES FROM SERVER[S]`, and `ALTER DATABASE` return this notification. However, `REALLOCATE DATABASES` requires that there are no cordoned servers and, therefore, does not return it. -==== .Notification details [cols="<1s,<4"] |=== -|Code -m|Neo.ClientNotification.Cluster.CordonedServersExistedDuringAllocation +|Neo4j code +m|Neo.ClientNotification.Cluster.ServerAlreadyEnabled |Title -a| Cordoned servers existed when making an allocation decision. -|Severity -m|INFORMATION +a| `` has no effect. +|Description +a|Server `%s` is already enabled. +Verify that this is the intended server. |Category m|TOPOLOGY +|GQLSTATUS code +m|00N80 +|Status description +a|note: successful completion - server already enabled. +`ENABLE SERVER` has no effect. +Server `$server` is already enabled. +Verify that this is the intended server. +|Classification +m|TOPOLOGY +|SeverityLevel +m|INFORMATION |=== -.Cordoned servers existed during an allocation decision -==== -The example assumes that you have a cluster with three servers, of which server `123e4567-e89b-12d3-a456-426614174000` is cordoned using the `dbms.cluster.cordonServer` procedure. Then the below command will return this notification. +.Enabling an already enabled server +[.tabbed-example] +===== +[.include-with-neo4j-code] +====== +Command:: ++ +[source, cypher] +---- +ENABLE SERVER "123e4567-e89b-12d3-a456-426614174000" +---- + +Description of the returned code:: +Server `123e4567-e89b-12d3-a456-426614174000` is already enabled. +Verify that this is the intended server. +====== +[.include-with-GQLSTATUS-code] +====== Command:: + [source, cypher] ---- -CREATE DATABASE foo TOPOLOGY 2 PRIMARIES +ENABLE SERVER "123e4567-e89b-12d3-a456-426614174000" +---- + +Returned GQLSTATUS code:: +00N80 + +Returned status description:: +note: successful completion - server already enabled. +`ENABLE SERVER` has no effect. +Server `123e4567-e89b-12d3-a456-426614174000` is already enabled. +Verify that this is the intended server. + +====== +===== + +[#_neo_clientnotification_cluster_serveralreadycordoned] +=== Server already cordoned + +.Notification details +[cols="<1s,<4"] +|=== +|Neo4j code +m|Neo.ClientNotification.Cluster.ServerAlreadyCordoned +|Title +a| `` has no effect. +|Description +a|Server `%s` is already cordoned. +Verify that this is the intended server. +|Category +m|TOPOLOGY +|GQLSTATUS code +m|00N81 +|Status description +a|note: successful completion - server already cordoned. +`CORDON SERVER` has no effect. +Server `$server` is already cordoned. +Verify that this is the intended server. +|Classification +m|TOPOLOGY +|SeverityLevel +m|INFORMATION +|=== + +.Cordoning an already cordoned server +[.tabbed-example] +===== +[.include-with-neo4j-code] +====== +Command:: ++ +[source, cypher] +---- +CORDON SERVER "123e4567-e89b-12d3-a456-426614174000" ---- Description of the returned code:: -Server(s) `123e4567-e89b-12d3-a456-426614174000` are cordoned. This can impact allocation decisions. -==== +Server `123e4567-e89b-12d3-a456-426614174000` is already cordoned. +Verify that this is the intended server. + +====== +[.include-with-GQLSTATUS-code] +====== +Command:: ++ +[source, cypher] +---- +CORDON SERVER "123e4567-e89b-12d3-a456-426614174000" +---- + +Returned GQLSTATUS code:: +00N81 + +Returned status description:: +note: successful completion - server already cordoned. +`CORDON SERVER` has no effect. +Server `123e4567-e89b-12d3-a456-426614174000` is already cordoned. +Verify that this is the intended server. + +====== +===== [#_neo_clientnotification_cluster_nodatabasesreallocated] -=== NoDatabasesReallocated +=== No databases reallocated .Notification details [cols="<1s,<4"] |=== -|Code +|Neo4j code m|Neo.ClientNotification.Cluster.NoDatabasesReallocated |Title a| `` has no effect. -|Severity -m|INFORMATION +|Description +a| No databases were reallocated. No better allocation is currently possible. |Category m|TOPOLOGY +|GQLSTATUS code +m|00N82 +|Status description +a|note: successful completion - no databases reallocated. +`REALLOCATE DATABASES` has no effect. +No databases were reallocated. +No better allocation is currently possible. +|Classification +m|TOPOLOGY +|SeverityLevel +m|INFORMATION |=== .Reallocating databases resulted in no allocation changes -==== +[.tabbed-example] +===== +[.include-with-neo4j-code] +====== Command:: + [source, cypher] @@ -1318,30 +2912,143 @@ Example scenarios:: For example, when there are three servers, each hosting databases `foo` and `bar`, meaning all databases are allocated to all servers. + -**Scenario 2:** The cluster appears unbalanced, but server constraints prevent you from moving to a better, more balanced, allocation. -For example, assuming server 1 hosts databases `foo` and `bar`, server 2 hosts only `foo`, and server 3 hosts no databases. -Then, a better allocation would move `foo` from server 1 to server 3, but if server 3 has the constraint `deniedDatabases:['foo']}`, then the cluster is already balanced subject to this constraint. -==== +**Scenario 2:** The cluster appears unbalanced, but server constraints prevent you from moving to a better, more balanced, allocation. +For example, assuming server 1 hosts databases `foo` and `bar`, server 2 hosts only `foo`, and server 3 hosts no databases. +Then, a better allocation would move `foo` from server 1 to server 3, but if server 3 has the constraint `deniedDatabases:['foo']}`, then the cluster is already balanced subject to this constraint. +====== +[.include-with-GQLSTATUS-code] +====== +Command:: ++ +[source, cypher] +---- +REALLOCATE DATABASES +---- + +Returned GQLSTATUS code:: +00N82 + +Returned status description:: +note: successful completion - no databases reallocated. +`REALLOCATE DATABASES` has no effect. +No databases were reallocated. +No better allocation is currently possible. + +Example scenarios:: +**Scenario 1:** The cluster is already balanced. +For example, when there are three servers, each hosting databases `foo` and `bar`, meaning all databases are allocated to all servers. ++ + +**Scenario 2:** The cluster appears unbalanced, but server constraints prevent you from moving to a better, more balanced, allocation. +For example, assuming server 1 hosts databases `foo` and `bar`, server 2 hosts only `foo`, and server 3 hosts no databases. +Then, a better allocation would move `foo` from server 1 to server 3, but if server 3 has the constraint `deniedDatabases:['foo']}`, then the cluster is already balanced subject to this constraint. +====== +===== + +[#_neo_clientnotification_cluster_cordonedserversexistedduringallocation] +=== Cordoned servers existed during allocation + +This notification is returned when a Cypher administration command triggers an allocation decision and some of the servers are cordoned. +For example, `CREATE DATABASE`, `ALTER DATABASE`, `DEALLOCATE DATABASES FROM SERVER[S]`, and `ALTER DATABASE` return this notification. However, `REALLOCATE DATABASES` requires that there are no cordoned servers and, therefore, does not return it. + +.Notification details +[cols="<1s,<4"] +|=== +|Neo4j code +m|Neo.ClientNotification.Cluster.CordonedServersExistedDuringAllocation +|Title +a| Cordoned servers existed when making an allocation decision. +|Description +a| Server(s) `%s` are cordoned. This can impact allocation decisions. +|Category +m|TOPOLOGY +|GQLSTATUS code +m|00N83 +|Status description +a|note: successful completion - cordoned servers existed during allocation. +Cordoned servers existed when making an allocation decision. +Server(s) `$server_list` are cordoned. +This can impact allocation decisions. +|Classification +m|TOPOLOGY +|SeverityLevel +m|INFORMATION +|=== + +.Cordoned servers existed during an allocation decision +[.tabbed-example] +===== +[.include-with-neo4j-code] +====== +The example assumes that you have a cluster with three servers, of which server `123e4567-e89b-12d3-a456-426614174000` is cordoned using the `dbms.cluster.cordonServer` procedure. Then the below command will return this notification. + +Command:: ++ +[source, cypher] +---- +CREATE DATABASE foo TOPOLOGY 2 PRIMARIES +---- + +Description of the returned code:: +Server(s) `123e4567-e89b-12d3-a456-426614174000` are cordoned. This can impact allocation decisions. +====== +[.include-with-GQLSTATUS-code] +====== +The example assumes that you have a cluster with three servers, of which server `123e4567-e89b-12d3-a456-426614174000` is cordoned using the `dbms.cluster.cordonServer` procedure. Then the below command will return this notification. + +Command:: ++ +[source, cypher] +---- +CREATE DATABASE foo TOPOLOGY 2 PRIMARIES +---- + +Returned GQLSTATUS code:: +00N83 + +Returned status description:: +note: successful completion - cordoned servers existed during allocation. +Cordoned servers existed when making an allocation decision. +Server(s) `123e4567-e89b-12d3-a456-426614174000` are cordoned. +This can impact allocation decisions. +====== +===== + [#_neo_clientnotification_cluster_requestedtopologymatchedcurrenttopology] -=== RequestedTopologyMatchedCurrentTopology +=== Requested topology matched current topology .Notification details [cols="<1s,<4"] |=== -|Code +|Neo4j code m|Neo.ClientNotification.Cluster.RequestedTopologyMatchedCurrentTopology |Title a| `` has no effect. -|Severity -m|INFORMATION +|Description +a|The requested topology matched the current topology. +No allocations were changed. |Category m|TOPOLOGY +|GQLSTATUS code +m|00N84 +|Status description +a|note: successful completion - requested topology matched current topology. +`ALTER DATABASE` has no effect. +The requested topology matched the current topology. +No allocations were changed. +|Classification +m|TOPOLOGY +|SeverityLevel +m|INFORMATION |=== -.Requested topology matched current topology -==== -The example assumes that you have a cluster with three servers and a database `foo` with a topology of two primaries and one secondary. +.Requested topology matched current topology +[.tabbed-example] +===== +[.include-with-neo4j-code] +====== +The example assumes that you have a cluster with three servers and a database `foo` with a topology of two primaries and one secondary. Command:: + @@ -1352,39 +3059,29 @@ ALTER DATABASE foo SET TOPOLOGY 2 PRIMARIES 1 SECONDARY Description of the returned code:: The requested topology matched the current topology. No allocations were changed. -==== - - -[#_neo_clientnotification_cluster_serveralreadyenabled] -=== ServerAlreadyEnabled - -.Notification details -[cols="<1s,<4"] -|=== -|Code -m|Neo.ClientNotification.Cluster.ServerAlreadyEnabled -|Title -a| `` has no effect. -|Severity -m|INFORMATION -|Category -m|TOPOLOGY -|=== +====== +[.include-with-GQLSTATUS-code] +====== +The example assumes that you have a cluster with three servers and a database `foo` with a topology of two primaries and one secondary. -.Enabling an already enabled server -==== Command:: + [source, cypher] ---- -ENABLE SERVER "123e4567-e89b-12d3-a456-426614174000" +ALTER DATABASE foo SET TOPOLOGY 2 PRIMARIES 1 SECONDARY ---- -Description of the returned code:: -Server `123e4567-e89b-12d3-a456-426614174000` is already enabled. -Verify that this is the intended server. +Returned GQLSTATUS code:: +00N84 -==== +Returned status description:: +note: successful completion - requested topology matched current topology. +`ALTER DATABASE` has no effect. +The requested topology matched the current topology. +No allocations were changed. + +====== +===== [#_schema_notifications] == `SCHEMA` category @@ -1392,25 +3089,38 @@ Verify that this is the intended server. Schema notifications provide additional information related to indexes and constraints. [#_neo_clientnotification_schema_indexorconstraintalreadyexists] -=== IndexOrConstraintAlreadyExists +=== Index or constraint already exists .Notification details [cols="<1s,<4"] |=== -|Code +|Neo4j code m|Neo.ClientNotification.Schema.IndexOrConstraintAlreadyExists |Title a|`` has no effect. |Description a|`` already exists. -|Severity -m|INFORMATION +|Description +a|`%s` already exists. |Category m|SCHEMA +|GQLSTATUS code +m|00NA0 +|Status description +a|note: successful completion - index or constraint already exists. +`$cmd` has no effect. +`$index_constr_pat` already exists. +|SeverityLevel +m|INFORMATION |=== +*_```` and `cmd` could be either the full command given by the user or a subset of the given command._ + .Creating an index when an equivalent index already exists -==== +[.tabbed-example] +===== +[.include-with-neo4j-code] +====== Given a range index on `(:Label \{property})` named `existingRangeIndex`. Command:: @@ -1420,16 +3130,40 @@ Command:: CREATE INDEX labelProperyRangeIndex IF NOT EXISTS FOR (n:Label) ON (n.property) ---- -Full title of the returned code:: +Title of the returned code:: `CREATE RANGE INDEX labelProperyRangeIndex IF NOT EXISTS FOR (e:Label) ON (e.property)` has no effect. Full description of the returned code:: `RANGE INDEX existingRangeIndex FOR (e:Label) ON (e.property)` already exists. -==== +====== +[.include-with-GQLSTATUS-code] +====== +Given a range index on `(:Label \{property})` named `existingRangeIndex`. + +Command:: ++ +[source, cypher] +---- +CREATE INDEX labelProperyRangeIndex IF NOT EXISTS FOR (n:Label) ON (n.property) +---- + +Returned GQLSTATUS code:: +00NA0 + +Returned status description:: +note: successful completion - index or constraint already exists. +`CREATE RANGE INDEX labelProperyRangeIndex IF NOT EXISTS FOR (e:Label) ON (e.property)` has no effect. +`RANGE INDEX existingRangeIndex FOR (e:Label) ON (e.property)` already exists. + +====== +===== .Creating an index when another unrelated index using that name already exists -==== +[.tabbed-example] +===== +[.include-with-neo4j-code] +====== Given a range index on `(:Label \{property})` named `myIndex`. Command:: @@ -1439,7 +3173,7 @@ Command:: CREATE TEXT INDEX myIndex IF NOT EXISTS FOR ()-[r:REL_TYPE]-() ON (r.property) ---- -Full title of the returned code:: +Title of the returned code:: `CREATE TEXT INDEX myIndex IF NOT EXISTS FOR ()-[e:REL_TYPE]-() ON (e.property)` has no effect. Full description of the returned code:: @@ -1453,10 +3187,42 @@ Choose a different name for the new index and try again. CREATE TEXT INDEX myIndex2 IF NOT EXISTS FOR ()-[r:REL_TYPE]-() ON (r.property) ---- -==== +====== +[.include-with-GQLSTATUS-code] +====== +Given a range index on `(:Label \{property})` named `myIndex`. + +Command:: ++ +[source, cypher] +---- +CREATE TEXT INDEX myIndex IF NOT EXISTS FOR ()-[r:REL_TYPE]-() ON (r.property) +---- + +Returned GQLSTATUS code:: +00NA0 + +Returned status description:: +note: successful completion - index or constraint already exists. +`CREATE TEXT INDEX myIndex IF NOT EXISTS FOR ()-[e:REL_TYPE]-() ON (e.property)` has no effect. +`RANGE INDEX myIndex FOR (e:Label) ON (e.property)` already exists. + +Suggestions for improvement:: +Choose a different name for the new index and try again. ++ +[source, cypher] +---- +CREATE TEXT INDEX myIndex2 IF NOT EXISTS FOR ()-[r:REL_TYPE]-() ON (r.property) +---- + +====== +===== .Creating a constraint when an identical constraint already exists -==== +[.tabbed-example] +===== +[.include-with-neo4j-code] +====== Given a node key constraint on `(:Label \{property})` named `nodeKeyLabelPropertyConstraint`. Command:: @@ -1466,16 +3232,41 @@ Command:: CREATE CONSTRAINT nodeKeyLabelPropertyConstraint IF NOT EXISTS FOR (n:Label) REQUIRE (n.property) IS NODE KEY ---- -Full title of the returned code:: +Title of the returned code:: `CREATE CONSTRAINT nodeKeyLabelPropertyConstraint IF NOT EXISTS FOR (e:Label) REQUIRE (e.property) IS NODE KEY` has no effect. Full description of the returned code:: `CONSTRAINT nodeKeyLabelPropertyConstraint FOR (e:Label) REQUIRE (e.property) IS NODE KEY` already exists. -==== +====== +[.include-with-GQLSTATUS-code] +====== +Given a node key constraint on `(:Label \{property})` named `nodeKeyLabelPropertyConstraint`. + +Command:: ++ +[source, cypher] +---- +CREATE CONSTRAINT nodeKeyLabelPropertyConstraint IF NOT EXISTS FOR (n:Label) REQUIRE (n.property) IS NODE KEY +---- + +Returned GQLSTATUS code:: +00NA0 + +Returned status description:: +note: successful completion - index or constraint already exists. +`CREATE CONSTRAINT nodeKeyLabelPropertyConstraint IF NOT EXISTS FOR (e:Label) REQUIRE (e.property) IS NODE KEY` has no effect. +`CONSTRAINT nodeKeyLabelPropertyConstraint FOR (e:Label) REQUIRE (e.property) IS NODE KEY` already exists. + +====== +===== + .Creating a constraint when another unrelated constraint using that name already exists -==== +[.tabbed-example] +===== +[.include-with-neo4j-code] +====== Given a node key constraint on `(:Label \{property})` named `myConstraint`. Command:: @@ -1485,7 +3276,7 @@ Command:: CREATE CONSTRAINT myConstraint IF NOT EXISTS FOR (n:Label2) REQUIRE (n.property2) IS NOT NULL ---- -Full title of the returned code:: +Title of the returned code:: `CREATE CONSTRAINT myConstraint IF NOT EXISTS FOR (e:Label2) REQUIRE (e.property2) IS NOT NULL` has no effect. Full description of the returned code:: @@ -1499,28 +3290,66 @@ Choose a different name for the new constraint and try again. CREATE CONSTRAINT myConstraint2 IF NOT EXISTS FOR (n:Label2) REQUIRE (n.property2) IS NOT NULL ---- -==== +====== +[.include-with-GQLSTATUS-code] +====== +Given a node key constraint on `(:Label \{property})` named `myConstraint`. + +Command:: ++ +[source, cypher] +---- +CREATE CONSTRAINT myConstraint IF NOT EXISTS FOR (n:Label2) REQUIRE (n.property2) IS NOT NULL +---- + +Returned GQLSTATUS code:: +00NA0 + +Returned status description:: +note: successful completion - index or constraint already exists. +`CREATE CONSTRAINT myConstraint IF NOT EXISTS FOR (e:Label2) REQUIRE (e.property2) IS NOT NULL` has no effect. +`CONSTRAINT myConstraint FOR (e:Label) REQUIRE (e.property) IS NODE KEY` already exists. + +Suggestions for improvement:: +Choose a different name for the new constraint and try again. ++ +[source, cypher] +---- +CREATE CONSTRAINT myConstraint2 IF NOT EXISTS FOR (n:Label2) REQUIRE (n.property2) IS NOT NULL +---- + +====== +===== [#_neo_clientnotification_schema_indexorconstraintdoesnotexist] -=== IndexOrConstraintDoesNotExist +=== Index or constraint does not exist .Notification details [cols="<1s,<4"] |=== -|Code +|Neo4j code m|Neo.ClientNotification.Schema.IndexOrConstraintDoesNotExist |Title a|`` has no effect. |Description -a|`` does not exist. -|Severity -m|INFORMATION +a|`%s` does not exist. |Category m|SCHEMA +|GQLSTATUS code +m|00NA1 +|Status description +a|note: successful completion - index or constraint does not exist. +`$cmd` has no effect. +`$index_constr_name` does not exist. +|SeverityLevel +m|INFORMATION |=== .Attempting to drop a non-existing index -==== +[.tabbed-example] +===== +[.include-with-neo4j-code] +====== Command:: + @@ -1529,7 +3358,7 @@ Command:: DROP INDEX nonExistingIndex IF EXISTS ---- -Full title of the returned code:: +Title of the returned code:: `DROP INDEX nonExistingIndex IF EXISTS` has no effect. Full description of the returned code:: @@ -1538,10 +3367,35 @@ Full description of the returned code:: Suggestions for improvement:: Verify that this is the intended index and that it is spelled correctly. -==== +====== +[.include-with-GQLSTATUS-code] +====== +Command:: ++ +[source, cypher] +---- +DROP INDEX nonExistingIndex IF EXISTS +---- + +Returned GQLSTATUS code:: +00NA1 + +Returned status description:: +note: successful completion - index or constraint does not exist. +`DROP INDEX nonExistingIndex IF EXISTS` has no effect. +`nonExistingIndex` does not exist. + +Suggestions for improvement:: +Verify that this is the intended index and that it is spelled correctly. + +====== +===== .Attempting to drop a non-existing constraint -==== +[.tabbed-example] +===== +[.include-with-neo4j-code] +====== Command:: + @@ -1550,7 +3404,7 @@ Command:: DROP CONSTRAINT nonExistingConstraint IF EXISTS ---- -Full title of the returned code:: +Title of the returned code:: `DROP CONSTRAINT nonExistingConstraint IF EXISTS` has no effect. Full description of the returned code:: @@ -1559,32 +3413,67 @@ Full description of the returned code:: Suggestions for improvement:: Verify that this is the intended constraint and that it is spelled correctly. -==== +====== +[.include-with-GQLSTATUS-code] +====== +Command:: ++ +[source, cypher] +---- +DROP CONSTRAINT nonExistingConstraint IF EXISTS +---- + +Returned GQLSTATUS code:: +00NA1 + +Returned status description:: +note: successful completion - index or constraint does not exist. +`DROP CONSTRAINT nonExistingConstraint IF EXISTS` has no effect. +`nonExistingConstraint` does not exist. +Suggestions for improvement:: +Verify that this is the intended constraint and that it is spelled correctly. + +====== +===== [#_generic] -== `GENERIC` category +== `GENERIC` notifications `GENERIC` notification codes do not belong to any wider category and do not have any connection to each other. [#_neo_clientnotification_statement_subqueryvariableshadowing] -=== SubqueryVariableShadowing +=== Subquery variable shadowing .Notification details [cols="<1s,<4"] |=== -|Code +|Neo4j code m|Neo.ClientNotification.Statement.SubqueryVariableShadowing |Title a|Variable in subquery is shadowing a variable with the same name from the outer scope. -|Severity -m|INFORMATION +|Description +|Variable in subquery is shadowing a variable with the same name from the outer scope. +If you want to use that variable instead, it must be imported into the subquery using importing WITH clause. (%s) |Category m|GENERIC +|GQLSTATUS code +m|03N60 +|Status description +a|info: subquery variable shadowing. +The variable `$var` in the subquery uses the same name as a variable from the outer query. +Use `WITH $var` in the subquery to import the one from the outer scope unless you want it to be a new variable. +|Classification +m|GENERIC +|SeverityLevel +m|INFORMATION |=== .Shadowing of a variable from the outer scope -==== +[.tabbed-example] +===== +[.include-with-neo4j-code] +====== Query:: + [source,cypher] @@ -1603,7 +3492,7 @@ If you want to use that variable instead, it must be imported into the subquery Suggestions for improvement:: If the intended behavior of the query is for the variable in the subquery to be a new variable, then nothing needs to be done. -If the intended behavior is to use the variable from the outer query, it needs to be imported to the subquery using the with clause. +If the intended behavior is to use the variable from the outer query, it needs to be imported to the subquery using the `WITH` clause. + [source,cypher] ---- @@ -1615,32 +3504,85 @@ CALL { } RETURN * ---- -==== +====== +[.include-with-GQLSTATUS-code] +====== +Query:: ++ +[source,cypher] +---- +MATCH (n) +CALL { + MATCH (n)--(m) + RETURN m +} +RETURN * +---- +Returned GQLSTATUS code:: +03N60 + +Returned status description:: +info: subquery variable shadowing. +The variable `n` in the subquery uses the same name as a variable from the outer query. +Use `WITH n` in the subquery to import the one from the outer scope unless you want it to be a new variable. + +Suggestions for improvement:: +If the intended behavior of the query is for the variable in the subquery to be a new variable, then nothing needs to be done. +If the intended behavior is to use the variable from the outer query, it needs to be imported to the subquery using the `WITH` clause. ++ +[source,cypher] +---- +MATCH (n) +CALL { + WITH n + MATCH (n)--(m) + RETURN m +} +RETURN * +---- +====== +===== [#_neo_clientnotification_statement_parameternotprovided] -=== ParameterNotProvided +=== Parameter missing .Notification details [cols="<1s,<4"] |=== -|Code +|Neo4j code m|Neo.ClientNotification.Statement.ParameterNotProvided |Title a|The statement refers to a parameter that was not provided in the request. -|Severity -m|WARNING +|Description +|Did not supply query with enough parameters. +The produced query plan will not be cached and is not executable without EXPLAIN. (%s) |Category m|GENERIC +|GQLSTATUS code +m|01N60 +|Status description +a|warn: parameter missing. +The query plan cannot be cached and is not executable without `EXPLAIN` due to the undefined parameter(s) `$param_list`. +Provide the parameter(s). +|Classification +m|GENERIC +|SeverityLevel +m|WARNING |=== + .Using an `EXPLAIN` query with parameters without providing them -==== +[.tabbed-example] +===== +[.include-with-neo4j-code] +====== Query:: + [source,cypher] ---- -EXPLAIN WITH $param as param RETURN param +EXPLAIN WITH $param as param +RETURN param ---- Description of the returned code:: @@ -1650,50 +3592,91 @@ The produced query plan will not be cached and is not executable without `EXPLAI Suggestions for improvement:: Provide the parameter to be able to cache the plan. -==== +====== +[.include-with-GQLSTATUS-code] +====== +Query:: ++ +[source,cypher] +---- +EXPLAIN WITH $param as param +RETURN param +---- + +Returned GQLSTATUS code:: +01N60 + +Returned status description:: +warn: parameter missing. +The query plan cannot be cached and is not executable without `EXPLAIN` due to the undefined parameter(s) `$param`. +Provide the parameter(s). + +Suggestions for improvement:: +Provide the parameter to be able to cache the plan. +====== +===== + [#_neo_clientnotification_procedure_procedurewarning] -=== ProcedureWarning +=== Procedure or function execution warning .Notification details [cols="<1s,<4"] |=== -|Code +|Neo4j code m|Neo.ClientNotification.Procedure.ProcedureWarning |Title a|The query used a procedure that generated a warning. -|Severity -m|WARNING +|Description +|The query used a procedure that generated a warning. (%s) |Category m|GENERIC +|GQLSTATUS code +m|01N62 +|Status description +a|warn: procedure execution warning. +The procedure `$proc` generates the warning `$msg`. +|Classification +m|GENERIC +|SeverityLevel +m|WARNING |=== -[#_neo_clientnotification_statement_unsatisfiablerelationshiptypeexpression] -=== UnsatisfiableRelationshipTypeExpression -label:introduced-in-Neo4j-5.4[Introduced in Neo4j 5.4] +[role=label--new-5.4] +[#_neo_clientnotification_statement_unsatisfiablerelationshiptypeexpression] +=== Unsatisfiable relationship type expression -.When is this notification returned? -[TIP] -==== When matching on a relationship type expression that can never be satisfied, for example asking for zero, more than one or contradictory types. -==== .Notification category details [cols="<1s,<4"] |=== -|Code +|Neo4j code m|Neo.ClientNotification.Statement.UnsatisfiableRelationshipTypeExpression |Title a|The query contains a relationship type expression that cannot be satisfied. -|Severity -m|WARNING +|Description +|Relationship type expression cannot possibly be satisfied. (%s) |Category m|GENERIC +|GQLSTATUS code +m|01N61 +|Status description +a|warn: unsatisfiable relationship type expression. +The expression `$label_expr` cannot be satisfied because relationships must have exactly one type. +|Classification +m|GENERIC +|SeverityLevel +m|WARNING |=== + .Matching on a relationship type expression that can never be satisfied -==== +[.tabbed-example] +===== +[.include-with-neo4j-code] +====== Query:: + [source,cypher] @@ -1702,28 +3685,59 @@ MATCH ()-[r:R1&R2]->() RETURN r ---- Description of the returned code:: Relationship type expression cannot possibly be satisfied. (`R1&R2` can never be fulfilled by any relationship. Relationships must have exactly one type.) -==== +====== +[.include-with-GQLSTATUS-code] +====== +Query:: ++ +[source,cypher] +---- +MATCH ()-[r:R1&R2]->() RETURN r +---- -[#_neo_clientnotification_statement_repeatedrelationshipreference] -=== RepeatedRelationshipReference +Returned GQLSTATUS code:: +01N61 + +Returned status description:: +warn: unsatisfiable relationship type expression. +The expression `R1&R2` cannot be satisfied because relationships must have exactly one type. +====== +===== -label:introduced-in-Neo4j-5.5[Introduced in Neo4j 5.5] +[role=label--new-5.5] +[#_neo_clientnotification_statement_repeatedrelationshipreference] +=== Repeated relationship reference .Notification category details [cols="<1s,<4"] |=== -|Code +|Neo4j code m|Neo.ClientNotification.Statement.RepeatedRelationshipReference |Title a|The query returns no results because a relationship variable is bound more than once. -|Severity -m|WARNING +|Description +a| +- A relationship is referenced more than once in the query, which leads to no results because relationships must not occur more than once in each result. (%s) +- A variable-length relationship variable is bound more than once, which leads to no results because relationships must not occur more than once in each result. (%s) |Category m|GENERIC +|GQLSTATUS code +m|01N63 +|Status description +a| +warn: repeated relationship reference. `$var` is repeated in `$pat`, which leads to no results. +|Classification +m|GENERIC +|SeverityLevel +m|WARNING |=== + .Binding a relationship variable more than once -==== +[.tabbed-example] +===== +[.include-with-neo4j-code] +====== Query:: + [source,cypher] @@ -1740,10 +3754,38 @@ Use one pattern to match all relationships that start with a node with the label ---- MATCH (:A)-[r]->(:B) RETURN r ---- -==== +====== +[.include-with-GQLSTATUS-code] +====== +Query:: ++ +[source,cypher] +---- +MATCH (:A)-[r]->(), ()-[r]->(:B) RETURN r +---- + +Returned GQLSTATUS code:: +01N63 + +Returned status description:: +warn: repeated relationship reference. +`r` is repeated in `(:A)-[r]->(), ()-[r]->(:B)`, which leads to no results. + +Suggestions for improvement:: +Use one pattern to match all relationships that start with a node with the label `A` and end with a node with the label `B`: ++ +[source, cypher, role="noplay"] +---- +MATCH (:A)-[r]->(:B) RETURN r +---- +====== +===== .Binding a variable-length relationship variable more than once (when run on version 5.6 or newer) -==== +[.tabbed-example] +===== +[.include-with-neo4j-code] +====== Query:: + [source,cypher] @@ -1751,5 +3793,24 @@ Query:: MATCH ()-[r*]->()<-[r*]-() RETURN count(*) AS count ---- Description of the returned code:: -A variable-length relationship variable is bound more than once, which leads to no results because relationships must not occur more than once in each result. (Relationship r was repeated) -==== +A variable-length relationship variable is bound more than once, which leads to no results because relationships must not occur more than once in each result. (Relationship `r` was repeated) + +====== +[.include-with-GQLSTATUS-code] +====== +Query:: ++ +[source,cypher] +---- +MATCH ()-[r*]->()<-[r*]-() RETURN count(*) AS count +---- + +Returned GQLSTATUS code:: +01N63 + +Returned status description:: +warn: repeated relationship reference. +`r` is repeated in `()-[r*]->()<-[r*]-()`, which leads to no results. +====== +===== + diff --git a/modules/ROOT/pages/notifications/index.adoc b/modules/ROOT/pages/notifications/index.adoc index 335eb741..60d7e860 100644 --- a/modules/ROOT/pages/notifications/index.adoc +++ b/modules/ROOT/pages/notifications/index.adoc @@ -1,35 +1,204 @@ :description: The Neo4j notifications for Neo4j version {neo4j-version}. [[notifications]] -= Notification codes += Server notifications -Notification codes are Neo4j status codes of type `ClientNotification` and are returned by the server with severity `WARNING` or `INFORMATION`. -Contrary to errors, notifications are only returned if the execution of the query is successful. +After a successful query execution, the Neo4j server sends notifications to provide advice on how to improve the query's quality or give additional information about the query execution. +The driver receives these notifications and sends them to the client, which displays them to the user. -[[notification-format]] -== Notification object fields +From version 5.23, Neo4j has a new GqlStatusObject API in addition to the existing Notification API. +The GqlStatusObject API provides information about the status of a Cypher query or command execution in compliance with the GQL standard. -The notification object, which is part of the result summary, consists of the following fields: +This page describes both the Neo4j Notification and the GQL-status object frameworks, how they are structured, the objects they provide for notifications, and how to interpret them. +It also explains the server notification grouping and filtering, the notification internals, and the server-driver compatibility for both the Notification and GqlStatusObject APIs. -* *Code* -- The Neo4j status code in the form of `Neo.ClientNotification.[SubType].[Name]`. -* *Title* -- The description of the Neo4j status code. -* *Description* -- The description of a specific notification, which can contain details about the query being executed. -* *Severity* -- The severity can be one of the following: + - ** `WARNING`: There might be a problem with your query. Please, take a look. + - ** `INFORMATION`: The query is correct, but this information can still be useful. -* *Category* -- The category of the notification. -* *Position* -- The position, given by row and column, where the notification is relevant in the query text. +[[neo4j-notification-object]] +== Neo4j notification object -[[notification-categories]] -== Notification code categories +The Neo4j notification object contains diagnostic information representing the successful outcome of a Cypher query or command execution, including severity, the `ClientNotification` code, category, title, description, and position in the query text where the notification is relevant. +Depending on the application, some of the fields from the notification object might not be visible. -All notifications are grouped by category, which can have severity `WARNING`, `WARNING OR INFORMATION`, or `INFORMATION`. +The notification object consists of the following fields: -The following categories exist, ordered by severity: +.Neo4j notification object +[cols="<1s,<4"] +|=== +|Neo4j code +a|The Neo4j status code in the form of `Neo.ClientNotification.[SubType].[Name]`. +|Title +a|The title of the Neo4j status code. +|Description +a|The description of the specific notification. +|Severity level +a|The severity can be one of the following: + +- `WARNING`: There might be a problem with your query. Please, take a look. +- `INFORMATION`: The query is correct, but this information can still be useful. +|Category +a|The category of the notification. +|Position +a|The position, given by row and column, where the notification is relevant in the query text. +|=== + + +[role=label--version-5.23] +[[gqlstatus-notification-object]] +== GQL-status notification object + +In the GQL-status object framework, notifications are an implementation-defined subset of the GQL-status objects that cover informational notes and warnings, but not errors, `SUCCESS`, `NO DATA`, or `OMITTED RESULT`. +For the latter, see <>. + + +In GQL, the execution of a query from user to server always has an outcome, called the _execution outcome_. +The execution outcome is a list of GQL-status objects, ordered by the following precedence, where the first object in the list is the primary GQL-status object: + +. `NO DATA` has precedence over `WARNING`. +. `WARNING` has precedence over the `SUCCESSFUL COMPLETION` subclass. +. `SUCCESSFUL COMPLETION` subclass has precedence over `INFORMATIONAL`. +. `INFORMATIONAL` is the condition with the least precedence. + +The primary GQL-status object describes the condition with the greatest precedence and is always present. +All other GQL-status objects in the list are additional GQL-status objects. + +The GQL-status object also includes the Neo4j-specific information, such as the severity level and the classification of the notification, which can be used for filtering. +For more information about notification grouping and filtering, see <>. + +Each GQL-status object consists of the following fields: + +.GQLSTATUS notification object +[cols="<1s,<4"] +|=== +|GQLSTATUS code +a| A 5-character string that is the concatenation of a 2-character class code followed by a 3-character subclass code. +|StatusDescription +a| A human-readable description of the GQLSTATUS, which consists of a condition, a subcondition, and a description. +The condition and subcondition are textual representations of the class and subclass codes, respectively. +| DiagnosticRecord +a| Extra information about the status, given as key-value pairs, both on the server and driver side. +To retrieve the full diagnostic record, you can use the `diagnosticRecord()` method on both the server and driver sides. +Additional helper methods are exposed for some useful fields. +[cols="<1s,<4"] +!=== +! Field ! Description +! `OPERATION` ! The operation that the notification is related to. Always defaults to empty. +! `OPERATION_CODE` ! The operation code that the notification is related to. Always defaults to `0`. +! `CURRENT_SCHEMA` ! The current schema that the notification is related to. Always defaults to `/`. +! `_severity` a! The Neo4j severity level, which can be one of the following: + +- `WARNING`: There might be a problem with your query. Please, take a look. +- `INFORMATION`: The query is correct, but this information can still be useful. + +!`_classification` ! The Neo4j category of the notification. +! `_position` ! The position, given by row and column, where the notification is relevant in the query text. +! `_status_parameters`! A map that contains all variable parts of the status description. +!=== +|=== + + +[[general-codes-for-success]] +=== General codes for success + +GQL has three general codes for success, indicated by different GQLSTATUS codes in categories S (successful completion) and N (no data), which are not covered by the Neo4j notification framework and are considered to be the default statuses for successful completion, omitted result, and no data, respectively. +The Neo4j classification, severity, position, and status parameters are not meaningful for these GQL statuses, so they are not included in the diagnostic record and are set to default values either by the server or by the driver. + +.GQLSTATUS general codes +[cols="1,2,1,4", options="header"] +|=== +|GQLSTATUS +|Condition +|Subcondition +|Description + +| 00000 +| Successful completion +| +| Successful completion with a regular non-empty result (n > 0 columns, m > 0 rows), for example, a `RETURN` clause with matches. + +| 00001 +| Successful completion +| Omitted result +| Successful completion with no return columns (n = 0 columns, m = 0 rows), for example, link:https://neo4j.com/docs/cypher-manual/current/planning-and-tuning/[`EXPLAIN` queries]. + +| 02000 +| No data +| +| Successful completion with an empty result (n > 0 columns, m = 0 rows), for example, a `MATCH` clause with no matches. +|=== + +GQLSTATUS general codes are filled in by the server unless the server is too old to be aware of GQL-status objects, in which case, it is polyfilled by the driver (see <>). +The driver tries to deduce `SUCCESS`, `OMITTED RESULT`, or `NO DATA` from the returned number of records and columns. +If that fails, it uses the GQLSTATUS 02N42 (`no data: unknown subcondition. Unknown GQLSTATUS from old server.`) to indicate that the server did not provide a GQL-status object. +Then, it poly-fills statuses from the notifications and merges the two lists according to the GQL precedence rules described in <>. + +[[gqlstatus-codes]] +=== Neo4j-defined GQLSTATUS codes + +The Neo4j-defined GQLSTATUS codes are divided into classes and subclasses, where the class code is a 2-character string (one of `00`, `01`, or `03`) and the subclass code is a 3-character string. +The class code indicates the general condition of the status (such as successful completion, warning, or information), and the subclass code provides more detailed information about the condition, such as classification and messages. + +The following table lists the Neo4j-defined groups of GQLSTATUS codes and their meanings: + +.GQLSTATUS groups of codes as defined by Neo4j +[frame="topbot", stripes=odd, grid="cols", cols="<1s,<4"] +|=== +|GQLSTATUS code +|*Description* + +| 01N0[y] +| Deprecation warnings +| 01N3[y] +| Hint warnings + +| 01N4[y] +| Unsupported warnings + +| 01N5[y] +| Unrecognized warnings + +| 01N6[y] +| Generic warnings + +| 01N7[y] +| Security warnings + +| 03N9[y] +| Performance information + +| 03N6[y] +| Generic information + +| 00N5[y] +| Unrecognized information under successful completion + +| 00N6[y] +| Generic information under successful completion + +| 00N7[y] +| Security information under successful completion + +| 00N8[y] +| Topology information under successful completion + +|=== + +[[notification-grouping-and-filtering]] +== Server notification grouping and filtering + +All server notifications are grouped by category (which is called classification in the GqlStatusObject framework) and severity level, which can be one of `WARNING`, `WARNING OR INFORMATION`, or `INFORMATION`. + +The driver-side notification configuration used for filtering notifications by category and severity is the same for both Neo4j Notification and GQL-status object frameworks. +The driver can filter notifications by category/classification and severity level, and the server will only send notifications that match the driver-side configuration. + +The driver can also choose to ignore notifications. +However, as per the GQLSTATUS framework, the server must always send the primary GQL-status object. +Therefore, if notifications are off or the notification configuration filtering is set to filter out all notifications, the server will still send the primary GQL-status object with the status `SUCCESSFUL COMPLETION`, `OMITTED RESULT` or `NO DATA`. + +The following notification groups exist in Neo4j, ordered by severity: + +.Notification groups and severity levels [options="header", cols="<1m,<1m,<3,<2"] |=== -| CATEGORY +| CATEGORY/CLASSIFICATION | SEVERITY | EXPLANATION | RECOMMENDED ACTION @@ -79,3 +248,44 @@ The following categories exist, ordered by severity: | The query uses costly operations and might be slow. Consider if it is possible to rewrite the query in a different way. | |=== + +[[notification-internals]] +== Notification internals + +The server and driver communicate with each other through the Bolt protocol. +During the handshake process, they agree on using the newest possible Bolt protocol version that both the server and the driver support. +For more information on the Bolt versions supported by different server versions, see the link:https://neo4j.com/docs/bolt/current/bolt-compatibility[Bolt Protocol documentation]. + +On the server side, notifications are part of the Result Core API. +A method called `getNotifications()` returns a list of server-side notification objects. +These notifications are then sent to the driver as success Bolt message metadata. +On the driver side, notifications are part of the ResultSummary API, which has a method called `notifications()` that returns a list of driver-side Notification objects. +The result of the `getCode()` or `code()` methods is known as the Neo4j status code. +Driver-side notification configuration filters notifications by severity and/or category at both the driver and session levels. +For more information, see <>. + +From version 5.23, Neo4j has a new GqlStatusObject API in addition to the existing Notification API. +This can be used using the `.getGqlStatusObjects()` method in the Result Core API or by using the latest Neo4j drivers. + +[[server-driver-compatibility]] +== Server-driver version compatibility + +The GqlStatusObject API is available in Neo4j 5.22 and later versions on the server side and in the 5.23 driver and later versions on the driver side. +The current Notification API is still present, and the GqlStatusObject API can be used in parallel with it. + +To fully utilize the GqlStatusObject API, both your server and the driver must support it. +Drivers that are older than 5.23 send only notifications from the Notification API, even if the server is 5.22 or later. + +If the 5.23 driver talks to a server that is too old to be aware of GQL-status objects, the driver tries to deduce `SUCCESS`, `OMITTED RESULT`, or `NO DATA` from the returned number of records and columns. +If that fails, it uses the GQLSTATUS 02N42 (`no data: unknown subcondition. Unknown GQLSTATUS from old server.`) to indicate that the server did not provide a GQL-status object. +Then, it poly-fills statuses from the notifications and merges the two lists according to the GQL precedence rules described in <>. + +// The following table illustrates the compatibility between the different server and driver versions for both the current Notification API and the GqlStatusObject API: + +// TODO + + + + + +>>>>>>> gql-notifications diff --git a/publish.yml b/publish.yml index a305469f..28ffeba8 100644 --- a/publish.yml +++ b/publish.yml @@ -6,7 +6,7 @@ site: content: sources: - url: ./ - branches: ['3.5','4.0','4.1','4.2','4.3','4.4','dev'] + branches: ['3.5','4.0','4.1','4.2','4.3','4.4','HEAD'] edit_url: https://github.com/neo4j/docs-status-codes/tree/{refname}/{path} exclude: - '!**/_includes/*' From 723874e043e689ee28dcda28ee087a0f3d5f09c9 Mon Sep 17 00:00:00 2001 From: NataliaIvakina <82437520+NataliaIvakina@users.noreply.github.com> Date: Thu, 29 Aug 2024 09:46:39 +0200 Subject: [PATCH 05/45] Improve docs about compatibility codes (#172) (#173) Documentation about 01N42, 02N42, 03N42. Also tried to remove some duplication by only referring to one single place so the content does not diverge. --------- Co-authored-by: Louise Berglund --- modules/ROOT/pages/notifications/index.adoc | 35 +++++++++++++++++---- 1 file changed, 29 insertions(+), 6 deletions(-) diff --git a/modules/ROOT/pages/notifications/index.adoc b/modules/ROOT/pages/notifications/index.adoc index 60d7e860..bb5ac24c 100644 --- a/modules/ROOT/pages/notifications/index.adoc +++ b/modules/ROOT/pages/notifications/index.adoc @@ -125,9 +125,6 @@ The Neo4j classification, severity, position, and status parameters are not mean |=== GQLSTATUS general codes are filled in by the server unless the server is too old to be aware of GQL-status objects, in which case, it is polyfilled by the driver (see <>). -The driver tries to deduce `SUCCESS`, `OMITTED RESULT`, or `NO DATA` from the returned number of records and columns. -If that fails, it uses the GQLSTATUS 02N42 (`no data: unknown subcondition. Unknown GQLSTATUS from old server.`) to indicate that the server did not provide a GQL-status object. -Then, it poly-fills statuses from the notifications and merges the two lists according to the GQL precedence rules described in <>. [[gqlstatus-codes]] === Neo4j-defined GQLSTATUS codes @@ -276,10 +273,36 @@ The current Notification API is still present, and the GqlStatusObject API can b To fully utilize the GqlStatusObject API, both your server and the driver must support it. Drivers that are older than 5.23 send only notifications from the Notification API, even if the server is 5.22 or later. -If the 5.23 driver talks to a server that is too old to be aware of GQL-status objects, the driver tries to deduce `SUCCESS`, `OMITTED RESULT`, or `NO DATA` from the returned number of records and columns. -If that fails, it uses the GQLSTATUS 02N42 (`no data: unknown subcondition. Unknown GQLSTATUS from old server.`) to indicate that the server did not provide a GQL-status object. -Then, it poly-fills statuses from the notifications and merges the two lists according to the GQL precedence rules described in <>. +If a driver of version 5.23 or later talks to a server that is too old to be aware of GQL-status objects, the driver needs to poly-fill the GqlStatusObject API with information. +The driver tries to deduce `SUCCESS`, `OMITTED RESULT`, or `NO DATA` from the returned number of records and columns. +If that fails, the general GQLSTATUS code will be set to `02N42`. +Then, the driver poly-fills the rest of the GQL-status object list with the notifications from the old notification API. +These will get GQLSTATUS `01N42` for notifications with severity `WARNING` and `03N42` for notifications with severity `INFORMATION`. +Finally, the list of poly-filled GQL-status objects is sorted according to the GQL precedence rules described in <>. +.GQLSTATUS compatibility codes +[cols="1,2,1,4", options="header"] +|=== +|GQLSTATUS +|Condition +|Subcondition +|Description + +| 01N42 +| Warning +| Unknown warning +| Poly-filled notification with severity `WARNING`. + +| 02N42 +| No data +| Unknown subcondition +| Poly-filled general status when `SUCCESS`, `OMITTED RESULT`, or `NO DATA` cannot be deduced. + +| 03N42 +| Informational +| Unknown notification +| Poly-filled notification with severity `INFORMATION`. +|=== // The following table illustrates the compatibility between the different server and driver versions for both the current Notification API and the GqlStatusObject API: // TODO From f1d09ca835c7b389999d4fced223856d2766eb97 Mon Sep 17 00:00:00 2001 From: JoelBergstrand Date: Tue, 17 Sep 2024 16:29:28 +0200 Subject: [PATCH 06/45] Added superfluous optional notification (#175) Notification from [OPTIONAL CALL PR](https://github.com/neo-technology/neo4j/pull/26755). --------- Co-authored-by: Reneta Popova --- modules/ROOT/pages/changelogs.adoc | 10 ++ .../notifications/all-notifications.adoc | 155 ++++++++++++++++++ 2 files changed, 165 insertions(+) diff --git a/modules/ROOT/pages/changelogs.adoc b/modules/ROOT/pages/changelogs.adoc index 6e134a68..e28a8798 100644 --- a/modules/ROOT/pages/changelogs.adoc +++ b/modules/ROOT/pages/changelogs.adoc @@ -1,6 +1,16 @@ :description: This page lists all changes to status codes per Neo4j version. = Changes to status codes per Neo4j version +== Neo4j 5.24 + +**New:** + +[source, status codes, role="noheader"] +----- +Neo.ClientNotification.Statement.RedundantOptionalProcedure +Neo.ClientNotification.Statement.RedundantOptionalSubquery +----- + == Neo4j 5.23 From version 5.23, Neo4j has a new GqlStatusObject API in addition to the existing Notification API. diff --git a/modules/ROOT/pages/notifications/all-notifications.adoc b/modules/ROOT/pages/notifications/all-notifications.adoc index bee9bd23..ac6fc60a 100644 --- a/modules/ROOT/pages/notifications/all-notifications.adoc +++ b/modules/ROOT/pages/notifications/all-notifications.adoc @@ -3544,6 +3544,161 @@ RETURN * ====== ===== +[#_neo_clientnotification_statement_redundantoptionalprocedure] +=== Redundant optional procedure + +.Notification details +[cols="<1s,<4"] +|=== +|Neo4j code +m|Neo.ClientNotification.Statement.RedundantOptionalProcedure +|Title +a|The use of `OPTIONAL` is redundant when the procedure calls a void procedure. +|Description +|The use of `OPTIONAL` is redundant as `CALL %s` is a void procedure. +|Category +m|GENERIC +|GQLSTATUS code +m|03N61 +|Status description +a|info: redundant optional procedure. The use of `OPTIONAL` is redundant as `CALL %s` is a void procedure. +|Classification +m|GENERIC +|SeverityLevel +m|INFORMATION +|=== + +.Redundant use of `OPTIONAL` in a procedure call +[.tabbed-example] +===== +[.include-with-neo4j-code] +====== +Query:: ++ +[source,cypher] +---- +OPTIONAL CALL db.createLabel("A") +---- + +Description of the returned code:: +The use of `OPTIONAL` is redundant as `CALL db.createLabel` is a void procedure. + +Suggestions for improvement:: +If the intended behavior of the query is to use a void procedure, the `OPTIONAL` keyword can be removed without impacting the query. ++ +[source,cypher] +---- +CALL db.createLabel("A") +---- +====== +[.include-with-GQLSTATUS-code] +====== +Query:: ++ +[source,cypher] +---- +OPTIONAL CALL db.createLabel("A") +---- +Returned GQLSTATUS code:: +03N61 + +Returned status description:: +info: redundant optional procedure. The use of `OPTIONAL` is redundant as `CALL db.createLabel` is a void procedure. + +Suggestions for improvement:: +If the intended behavior of the query is to use a void procedure, the `OPTIONAL` keyword can be removed without impacting the query. ++ +[source,cypher] +---- +CALL db.createLabel("A") +---- +====== +===== + +[#_neo_clientnotification_statement_redundantoptionalsubquery] +=== Redundant optional subquery + +.Notification details +[cols="<1s,<4"] +|=== +|Neo4j code +m|Neo.ClientNotification.Statement.RedundantOptionalSubquery +|Title +a|The use of `OPTIONAL` is redundant when `CALL` is a unit subquery. +|Description +|The use of `OPTIONAL` is redundant as `CALL` is a unit subquery. +|Category +m|GENERIC +|GQLSTATUS code +m|03N62 +|Status description +a|info: redundant optional subquery. The use of `OPTIONAL` is redundant as `CALL` is a unit subquery. +|Classification +m|GENERIC +|SeverityLevel +m|INFORMATION +|=== + +.Redundant use of `OPTIONAL` in a `CALL` subquery +[.tabbed-example] +===== +[.include-with-neo4j-code] +====== +Query:: ++ +[source,cypher] +---- +UNWIND [1, 2, 3] AS x +OPTIONAL CALL (x) { + CREATE({i:x}) +} +---- + +Description of the returned code:: +Optional is redundant in the case of a unit subquery. The use of `OPTIONAL` on unit subqueries have no effect and can be removed. + +Suggestions for improvement:: +If the intended behavior of the query is for the subquery not to return any values, the `OPTIONAL` keyword can be removed without impacting the query. ++ +[source,cypher] +---- +UNWIND [1, 2, 3] AS x +CALL (x) { + CREATE({i:x}) +} +---- +====== +[.include-with-GQLSTATUS-code] +====== +Query:: ++ +[source,cypher] +---- +UNWIND [1, 2, 3] AS x +OPTIONAL CALL (x) { + CREATE({i:x}) +} +---- + +Returned GQLSTATUS code:: +03N62 + +Description of the returned code:: +info: redundant optional subquery. The use of `OPTIONAL` is redundant as `CALL` is a unit subquery. + +Suggestions for improvement:: +If the intended behavior of the query is for the subquery not to return any values, the `OPTIONAL` keyword can be removed without impacting the query. ++ +[source,cypher] +---- +UNWIND [1, 2, 3] AS x +CALL (x) { + CREATE({i:x}) +} +---- +====== +===== + [#_neo_clientnotification_statement_parameternotprovided] === Parameter missing From 81aab386c6ce9eca1bc5a573cf54588522f56ba3 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Tue, 17 Sep 2024 15:45:30 +0100 Subject: [PATCH 07/45] Bump express from 4.19.1 to 4.21.0 in the dev-dependencies group (#177) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Bumps the dev-dependencies group with 1 update: [express](https://github.com/expressjs/express). Updates `express` from 4.19.1 to 4.21.0
Release notes

Sourced from express's releases.

4.21.0

What's Changed

New Contributors

Full Changelog: https://github.com/expressjs/express/compare/4.20.0...4.21.0

4.20.0

What's Changed

Important

  • IMPORTANT: The default depth level for parsing URL-encoded data is now 32 (previously was Infinity)
  • Remove link renderization in html while using res.redirect

Other Changes

... (truncated)

Changelog

Sourced from express's changelog.

4.21.0 / 2024-09-11

  • Deprecate res.location("back") and res.redirect("back") magic string
  • deps: serve-static@1.16.2
    • includes send@0.19.0
  • deps: finalhandler@1.3.1
  • deps: qs@6.13.0

4.20.0 / 2024-09-10

  • deps: serve-static@0.16.0
    • Remove link renderization in html while redirecting
  • deps: send@0.19.0
    • Remove link renderization in html while redirecting
  • deps: body-parser@0.6.0
    • add depth option to customize the depth level in the parser
    • IMPORTANT: The default depth level for parsing URL-encoded data is now 32 (previously was Infinity)
  • Remove link renderization in html while using res.redirect
  • deps: path-to-regexp@0.1.10
    • Adds support for named matching groups in the routes using a regex
    • Adds backtracking protection to parameters without regexes defined
  • deps: encodeurl@~2.0.0
    • Removes encoding of \, |, and ^ to align better with URL spec
  • Deprecate passing options.maxAge and options.expires to res.clearCookie
    • Will be ignored in v5, clearCookie will set a cookie with an expires in the past to instruct clients to delete the cookie

4.19.2 / 2024-03-25

  • Improved fix for open redirect allow list bypass
Commits

[![Dependabot compatibility score](https://dependabot-badges.githubapp.com/badges/compatibility_score?dependency-name=express&package-manager=npm_and_yarn&previous-version=4.19.1&new-version=4.21.0)](https://docs.github.com/en/github/managing-security-vulnerabilities/about-dependabot-security-updates#about-compatibility-scores) Dependabot will resolve any conflicts with this PR as long as you don't alter it yourself. You can also trigger a rebase manually by commenting `@dependabot rebase`. [//]: # (dependabot-automerge-start) [//]: # (dependabot-automerge-end) ---
Dependabot commands and options
You can trigger Dependabot actions by commenting on this PR: - `@dependabot rebase` will rebase this PR - `@dependabot recreate` will recreate this PR, overwriting any edits that have been made to it - `@dependabot merge` will merge this PR after your CI passes on it - `@dependabot squash and merge` will squash and merge this PR after your CI passes on it - `@dependabot cancel merge` will cancel a previously requested merge and block automerging - `@dependabot reopen` will reopen this PR if it is closed - `@dependabot close` will close this PR and stop Dependabot recreating it. You can achieve the same result by closing it manually - `@dependabot show ignore conditions` will show all of the ignore conditions of the specified dependency - `@dependabot ignore major version` will close this group update PR and stop Dependabot creating any more for the specific dependency's major version (unless you unignore this specific dependency's major version or upgrade to it yourself) - `@dependabot ignore minor version` will close this group update PR and stop Dependabot creating any more for the specific dependency's minor version (unless you unignore this specific dependency's minor version or upgrade to it yourself) - `@dependabot ignore ` will close this group update PR and stop Dependabot creating any more for the specific dependency (unless you unignore this specific dependency or upgrade to it yourself) - `@dependabot unignore ` will remove all of the ignore conditions of the specified dependency - `@dependabot unignore ` will remove the ignore condition of the specified dependency and ignore conditions
Signed-off-by: dependabot[bot] Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> --- package-lock.json | 197 +++++++++++++++++++++++++--------------------- package.json | 2 +- 2 files changed, 110 insertions(+), 89 deletions(-) diff --git a/package-lock.json b/package-lock.json index 50da922b..2258f44c 100644 --- a/package-lock.json +++ b/package-lock.json @@ -17,7 +17,7 @@ "@neo4j-documentation/remote-include": "^1.0.0" }, "devDependencies": { - "express": "^4.19.1", + "express": "^4.21.0", "nodemon": "^3.1.0" } }, @@ -457,9 +457,9 @@ } }, "node_modules/body-parser": { - "version": "1.20.2", - "resolved": "https://registry.npmjs.org/body-parser/-/body-parser-1.20.2.tgz", - "integrity": "sha512-ml9pReCu3M61kGlqoTm2umSXTlRTuGTx0bfYj+uIUKKYycG5NtSbeetV3faSU6R7ajOPw0g/J1PvK4qNy7s5bA==", + "version": "1.20.3", + "resolved": "https://registry.npmjs.org/body-parser/-/body-parser-1.20.3.tgz", + "integrity": "sha512-7rAxByjUMqQ3/bHJy7D6OGXvx/MMc4IqBn/X0fcM1QUcAItpZrBEYhWGem+tzXH90c+G01ypMcYJBO9Y30203g==", "dev": true, "dependencies": { "bytes": "3.1.2", @@ -470,7 +470,7 @@ "http-errors": "2.0.0", "iconv-lite": "0.4.24", "on-finished": "2.4.1", - "qs": "6.11.0", + "qs": "6.13.0", "raw-body": "2.5.2", "type-is": "~1.6.18", "unpipe": "1.0.0" @@ -874,9 +874,9 @@ "dev": true }, "node_modules/encodeurl": { - "version": "1.0.2", - "resolved": "https://registry.npmjs.org/encodeurl/-/encodeurl-1.0.2.tgz", - "integrity": "sha512-TPJXq8JqFaVYm2CWmPvnP2Iyo4ZSM7/QKcSmuMLDObfpH5fi7RUGmd/rTDf+rut/saiDiQEeVTNgAmJEdAOx0w==", + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/encodeurl/-/encodeurl-2.0.0.tgz", + "integrity": "sha512-Q0n9HRi4m6JuGIV1eFlmvJB7ZEVxu93IrMyiMsGC0lrMJMWzRgx6WGquyfQgZVb31vhGgXnfmPNNXmxnOkRBrg==", "dev": true, "engines": { "node": ">= 0.8" @@ -941,37 +941,37 @@ } }, "node_modules/express": { - "version": "4.19.1", - "resolved": "https://registry.npmjs.org/express/-/express-4.19.1.tgz", - "integrity": "sha512-K4w1/Bp7y8iSiVObmCrtq8Cs79XjJc/RU2YYkZQ7wpUu5ZyZ7MtPHkqoMz4pf+mgXfNvo2qft8D9OnrH2ABk9w==", + "version": "4.21.0", + "resolved": "https://registry.npmjs.org/express/-/express-4.21.0.tgz", + "integrity": "sha512-VqcNGcj/Id5ZT1LZ/cfihi3ttTn+NJmkli2eZADigjq29qTlWi/hAQ43t/VLPq8+UX06FCEx3ByOYet6ZFblng==", "dev": true, "dependencies": { "accepts": "~1.3.8", "array-flatten": "1.1.1", - "body-parser": "1.20.2", + "body-parser": "1.20.3", "content-disposition": "0.5.4", "content-type": "~1.0.4", "cookie": "0.6.0", "cookie-signature": "1.0.6", "debug": "2.6.9", "depd": "2.0.0", - "encodeurl": "~1.0.2", + "encodeurl": "~2.0.0", "escape-html": "~1.0.3", "etag": "~1.8.1", - "finalhandler": "1.2.0", + "finalhandler": "1.3.1", "fresh": "0.5.2", "http-errors": "2.0.0", - "merge-descriptors": "1.0.1", + "merge-descriptors": "1.0.3", "methods": "~1.1.2", "on-finished": "2.4.1", "parseurl": "~1.3.3", - "path-to-regexp": "0.1.7", + "path-to-regexp": "0.1.10", "proxy-addr": "~2.0.7", - "qs": "6.11.0", + "qs": "6.13.0", "range-parser": "~1.2.1", "safe-buffer": "5.2.1", - "send": "0.18.0", - "serve-static": "1.15.0", + "send": "0.19.0", + "serve-static": "1.16.2", "setprototypeof": "1.2.0", "statuses": "2.0.1", "type-is": "~1.6.18", @@ -1025,13 +1025,13 @@ } }, "node_modules/finalhandler": { - "version": "1.2.0", - "resolved": "https://registry.npmjs.org/finalhandler/-/finalhandler-1.2.0.tgz", - "integrity": "sha512-5uXcUVftlQMFnWC9qu/svkWv3GTd2PfUhK/3PLkYNAe7FbqJMt3515HaxE6eRL74GdsriiwujiawdaB1BpEISg==", + "version": "1.3.1", + "resolved": "https://registry.npmjs.org/finalhandler/-/finalhandler-1.3.1.tgz", + "integrity": "sha512-6BN9trH7bp3qvnrRyzsBz+g3lZxTNZTbVO2EV1CS0WIcDbawYVdYvGflME/9QP0h0pYlCDBCTjYa9nZzMDpyxQ==", "dev": true, "dependencies": { "debug": "2.6.9", - "encodeurl": "~1.0.2", + "encodeurl": "~2.0.0", "escape-html": "~1.0.3", "on-finished": "2.4.1", "parseurl": "~1.3.3", @@ -1685,10 +1685,13 @@ } }, "node_modules/merge-descriptors": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/merge-descriptors/-/merge-descriptors-1.0.1.tgz", - "integrity": "sha512-cCi6g3/Zr1iqQi6ySbseM1Xvooa98N0w31jzUYrXPX2xqObmFGHJ0tQ5u74H3mVh7wLouTseZyYIq39g8cNp1w==", - "dev": true + "version": "1.0.3", + "resolved": "https://registry.npmjs.org/merge-descriptors/-/merge-descriptors-1.0.3.tgz", + "integrity": "sha512-gaNvAS7TZ897/rVaZ0nMtAyxNyi/pdbjbAwUpFQpN70GqnVfOiXpeUUMKRBmzXaSQ8DdTX4/0ms62r2K+hE6mQ==", + "dev": true, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } }, "node_modules/methods": { "version": "1.1.2", @@ -1883,10 +1886,13 @@ } }, "node_modules/object-inspect": { - "version": "1.13.1", - "resolved": "https://registry.npmjs.org/object-inspect/-/object-inspect-1.13.1.tgz", - "integrity": "sha512-5qoj1RUiKOMsCCNLV1CBiPYE10sziTsnmNxkAI/rZhiD63CF7IqdFGC/XzjWjpSgLf0LxXX3bDFIh0E18f6UhQ==", + "version": "1.13.2", + "resolved": "https://registry.npmjs.org/object-inspect/-/object-inspect-1.13.2.tgz", + "integrity": "sha512-IRZSRuzJiynemAXPYtPe5BoI/RESNYR7TYm50MC5Mqbd3Jmw5y790sErYw3V6SryFJD64b74qQQs9wn5Bg/k3g==", "dev": true, + "engines": { + "node": ">= 0.4" + }, "funding": { "url": "https://github.com/sponsors/ljharb" } @@ -2007,9 +2013,9 @@ } }, "node_modules/path-to-regexp": { - "version": "0.1.7", - "resolved": "https://registry.npmjs.org/path-to-regexp/-/path-to-regexp-0.1.7.tgz", - "integrity": "sha512-5DFkuoqlv1uYQKxy8omFBeJPQcdoE07Kv2sferDCrAq1ohOU+MSDswDIbnx3YAM60qIOnYa53wBhXW0EbMonrQ==", + "version": "0.1.10", + "resolved": "https://registry.npmjs.org/path-to-regexp/-/path-to-regexp-0.1.10.tgz", + "integrity": "sha512-7lf7qcQidTku0Gu3YDPc8DJ1q7OOucfa/BSsIwjuh56VU7katFvuM8hULfkwB3Fns/rsVF7PwPKVw1sl5KQS9w==", "dev": true }, "node_modules/pend": { @@ -2190,12 +2196,12 @@ } }, "node_modules/qs": { - "version": "6.11.0", - "resolved": "https://registry.npmjs.org/qs/-/qs-6.11.0.tgz", - "integrity": "sha512-MvjoMCJwEarSbUYk5O+nmoSzSutSsTwF85zcHPQ9OrlFoZOYIjaqBAJIqIXjptyD5vThxGq52Xu/MaJzRkIk4Q==", + "version": "6.13.0", + "resolved": "https://registry.npmjs.org/qs/-/qs-6.13.0.tgz", + "integrity": "sha512-+38qI9SOr8tfZ4QmJNplMUxqjbe7LKvvZgWdExBOmd+egZTtjLB67Gu0HRX3u/XOq7UU2Nx6nsjvS16Z9uwfpg==", "dev": true, "dependencies": { - "side-channel": "^1.0.4" + "side-channel": "^1.0.6" }, "engines": { "node": ">=0.6" @@ -2385,9 +2391,9 @@ } }, "node_modules/send": { - "version": "0.18.0", - "resolved": "https://registry.npmjs.org/send/-/send-0.18.0.tgz", - "integrity": "sha512-qqWzuOjSFOuqPjFe4NOsMLafToQQwBSOEpS+FwEt3A2V3vKubTquT3vmLTQpFgMXp8AlFWFuP1qKaJZOtPpVXg==", + "version": "0.19.0", + "resolved": "https://registry.npmjs.org/send/-/send-0.19.0.tgz", + "integrity": "sha512-dW41u5VfLXu8SJh5bwRmyYUbAoSB3c9uQh6L8h/KtsFREPWpbX1lrljJo186Jc4nmci/sGUZ9a0a0J2zgfq2hw==", "dev": true, "dependencies": { "debug": "2.6.9", @@ -2408,6 +2414,15 @@ "node": ">= 0.8.0" } }, + "node_modules/send/node_modules/encodeurl": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/encodeurl/-/encodeurl-1.0.2.tgz", + "integrity": "sha512-TPJXq8JqFaVYm2CWmPvnP2Iyo4ZSM7/QKcSmuMLDObfpH5fi7RUGmd/rTDf+rut/saiDiQEeVTNgAmJEdAOx0w==", + "dev": true, + "engines": { + "node": ">= 0.8" + } + }, "node_modules/send/node_modules/ms": { "version": "2.1.3", "resolved": "https://registry.npmjs.org/ms/-/ms-2.1.3.tgz", @@ -2415,15 +2430,15 @@ "dev": true }, "node_modules/serve-static": { - "version": "1.15.0", - "resolved": "https://registry.npmjs.org/serve-static/-/serve-static-1.15.0.tgz", - "integrity": "sha512-XGuRDNjXUijsUL0vl6nSD7cwURuzEgglbOaFuZM9g3kwDXOWVTck0jLzjPzGD+TazWbboZYu52/9/XPdUgne9g==", + "version": "1.16.2", + "resolved": "https://registry.npmjs.org/serve-static/-/serve-static-1.16.2.tgz", + "integrity": "sha512-VqpjJZKadQB/PEbEwvFdO43Ax5dFBZ2UECszz8bQ7pi7wt//PWe1P6MN7eCnjsatYtBT6EuiClbjSWP2WrIoTw==", "dev": true, "dependencies": { - "encodeurl": "~1.0.2", + "encodeurl": "~2.0.0", "escape-html": "~1.0.3", "parseurl": "~1.3.3", - "send": "0.18.0" + "send": "0.19.0" }, "engines": { "node": ">= 0.8.0" @@ -3390,9 +3405,9 @@ "dev": true }, "body-parser": { - "version": "1.20.2", - "resolved": "https://registry.npmjs.org/body-parser/-/body-parser-1.20.2.tgz", - "integrity": "sha512-ml9pReCu3M61kGlqoTm2umSXTlRTuGTx0bfYj+uIUKKYycG5NtSbeetV3faSU6R7ajOPw0g/J1PvK4qNy7s5bA==", + "version": "1.20.3", + "resolved": "https://registry.npmjs.org/body-parser/-/body-parser-1.20.3.tgz", + "integrity": "sha512-7rAxByjUMqQ3/bHJy7D6OGXvx/MMc4IqBn/X0fcM1QUcAItpZrBEYhWGem+tzXH90c+G01ypMcYJBO9Y30203g==", "dev": true, "requires": { "bytes": "3.1.2", @@ -3403,7 +3418,7 @@ "http-errors": "2.0.0", "iconv-lite": "0.4.24", "on-finished": "2.4.1", - "qs": "6.11.0", + "qs": "6.13.0", "raw-body": "2.5.2", "type-is": "~1.6.18", "unpipe": "1.0.0" @@ -3700,9 +3715,9 @@ "dev": true }, "encodeurl": { - "version": "1.0.2", - "resolved": "https://registry.npmjs.org/encodeurl/-/encodeurl-1.0.2.tgz", - "integrity": "sha512-TPJXq8JqFaVYm2CWmPvnP2Iyo4ZSM7/QKcSmuMLDObfpH5fi7RUGmd/rTDf+rut/saiDiQEeVTNgAmJEdAOx0w==", + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/encodeurl/-/encodeurl-2.0.0.tgz", + "integrity": "sha512-Q0n9HRi4m6JuGIV1eFlmvJB7ZEVxu93IrMyiMsGC0lrMJMWzRgx6WGquyfQgZVb31vhGgXnfmPNNXmxnOkRBrg==", "dev": true }, "end-of-stream": { @@ -3749,37 +3764,37 @@ "integrity": "sha512-mQw+2fkQbALzQ7V0MY0IqdnXNOeTtP4r0lN9z7AAawCXgqea7bDii20AYrIBrFd/Hx0M2Ocz6S111CaFkUcb0Q==" }, "express": { - "version": "4.19.1", - "resolved": "https://registry.npmjs.org/express/-/express-4.19.1.tgz", - "integrity": "sha512-K4w1/Bp7y8iSiVObmCrtq8Cs79XjJc/RU2YYkZQ7wpUu5ZyZ7MtPHkqoMz4pf+mgXfNvo2qft8D9OnrH2ABk9w==", + "version": "4.21.0", + "resolved": "https://registry.npmjs.org/express/-/express-4.21.0.tgz", + "integrity": "sha512-VqcNGcj/Id5ZT1LZ/cfihi3ttTn+NJmkli2eZADigjq29qTlWi/hAQ43t/VLPq8+UX06FCEx3ByOYet6ZFblng==", "dev": true, "requires": { "accepts": "~1.3.8", "array-flatten": "1.1.1", - "body-parser": "1.20.2", + "body-parser": "1.20.3", "content-disposition": "0.5.4", "content-type": "~1.0.4", "cookie": "0.6.0", "cookie-signature": "1.0.6", "debug": "2.6.9", "depd": "2.0.0", - "encodeurl": "~1.0.2", + "encodeurl": "~2.0.0", "escape-html": "~1.0.3", "etag": "~1.8.1", - "finalhandler": "1.2.0", + "finalhandler": "1.3.1", "fresh": "0.5.2", "http-errors": "2.0.0", - "merge-descriptors": "1.0.1", + "merge-descriptors": "1.0.3", "methods": "~1.1.2", "on-finished": "2.4.1", "parseurl": "~1.3.3", - "path-to-regexp": "0.1.7", + "path-to-regexp": "0.1.10", "proxy-addr": "~2.0.7", - "qs": "6.11.0", + "qs": "6.13.0", "range-parser": "~1.2.1", "safe-buffer": "5.2.1", - "send": "0.18.0", - "serve-static": "1.15.0", + "send": "0.19.0", + "serve-static": "1.16.2", "setprototypeof": "1.2.0", "statuses": "2.0.1", "type-is": "~1.6.18", @@ -3824,13 +3839,13 @@ } }, "finalhandler": { - "version": "1.2.0", - "resolved": "https://registry.npmjs.org/finalhandler/-/finalhandler-1.2.0.tgz", - "integrity": "sha512-5uXcUVftlQMFnWC9qu/svkWv3GTd2PfUhK/3PLkYNAe7FbqJMt3515HaxE6eRL74GdsriiwujiawdaB1BpEISg==", + "version": "1.3.1", + "resolved": "https://registry.npmjs.org/finalhandler/-/finalhandler-1.3.1.tgz", + "integrity": "sha512-6BN9trH7bp3qvnrRyzsBz+g3lZxTNZTbVO2EV1CS0WIcDbawYVdYvGflME/9QP0h0pYlCDBCTjYa9nZzMDpyxQ==", "dev": true, "requires": { "debug": "2.6.9", - "encodeurl": "~1.0.2", + "encodeurl": "~2.0.0", "escape-html": "~1.0.3", "on-finished": "2.4.1", "parseurl": "~1.3.3", @@ -4322,9 +4337,9 @@ "dev": true }, "merge-descriptors": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/merge-descriptors/-/merge-descriptors-1.0.1.tgz", - "integrity": "sha512-cCi6g3/Zr1iqQi6ySbseM1Xvooa98N0w31jzUYrXPX2xqObmFGHJ0tQ5u74H3mVh7wLouTseZyYIq39g8cNp1w==", + "version": "1.0.3", + "resolved": "https://registry.npmjs.org/merge-descriptors/-/merge-descriptors-1.0.3.tgz", + "integrity": "sha512-gaNvAS7TZ897/rVaZ0nMtAyxNyi/pdbjbAwUpFQpN70GqnVfOiXpeUUMKRBmzXaSQ8DdTX4/0ms62r2K+hE6mQ==", "dev": true }, "methods": { @@ -4460,9 +4475,9 @@ } }, "object-inspect": { - "version": "1.13.1", - "resolved": "https://registry.npmjs.org/object-inspect/-/object-inspect-1.13.1.tgz", - "integrity": "sha512-5qoj1RUiKOMsCCNLV1CBiPYE10sziTsnmNxkAI/rZhiD63CF7IqdFGC/XzjWjpSgLf0LxXX3bDFIh0E18f6UhQ==", + "version": "1.13.2", + "resolved": "https://registry.npmjs.org/object-inspect/-/object-inspect-1.13.2.tgz", + "integrity": "sha512-IRZSRuzJiynemAXPYtPe5BoI/RESNYR7TYm50MC5Mqbd3Jmw5y790sErYw3V6SryFJD64b74qQQs9wn5Bg/k3g==", "dev": true }, "object-keys": { @@ -4562,9 +4577,9 @@ "integrity": "sha512-AVbw3UJ2e9bq64vSaS9Am0fje1Pa8pbGqTTsmXfaIiMpnr5DlDhfJOuLj9Sf95ZPVDAUerDfEk88MPmPe7UCQg==" }, "path-to-regexp": { - "version": "0.1.7", - "resolved": "https://registry.npmjs.org/path-to-regexp/-/path-to-regexp-0.1.7.tgz", - "integrity": "sha512-5DFkuoqlv1uYQKxy8omFBeJPQcdoE07Kv2sferDCrAq1ohOU+MSDswDIbnx3YAM60qIOnYa53wBhXW0EbMonrQ==", + "version": "0.1.10", + "resolved": "https://registry.npmjs.org/path-to-regexp/-/path-to-regexp-0.1.10.tgz", + "integrity": "sha512-7lf7qcQidTku0Gu3YDPc8DJ1q7OOucfa/BSsIwjuh56VU7katFvuM8hULfkwB3Fns/rsVF7PwPKVw1sl5KQS9w==", "dev": true }, "pend": { @@ -4719,12 +4734,12 @@ } }, "qs": { - "version": "6.11.0", - "resolved": "https://registry.npmjs.org/qs/-/qs-6.11.0.tgz", - "integrity": "sha512-MvjoMCJwEarSbUYk5O+nmoSzSutSsTwF85zcHPQ9OrlFoZOYIjaqBAJIqIXjptyD5vThxGq52Xu/MaJzRkIk4Q==", + "version": "6.13.0", + "resolved": "https://registry.npmjs.org/qs/-/qs-6.13.0.tgz", + "integrity": "sha512-+38qI9SOr8tfZ4QmJNplMUxqjbe7LKvvZgWdExBOmd+egZTtjLB67Gu0HRX3u/XOq7UU2Nx6nsjvS16Z9uwfpg==", "dev": true, "requires": { - "side-channel": "^1.0.4" + "side-channel": "^1.0.6" } }, "queue": { @@ -4855,9 +4870,9 @@ } }, "send": { - "version": "0.18.0", - "resolved": "https://registry.npmjs.org/send/-/send-0.18.0.tgz", - "integrity": "sha512-qqWzuOjSFOuqPjFe4NOsMLafToQQwBSOEpS+FwEt3A2V3vKubTquT3vmLTQpFgMXp8AlFWFuP1qKaJZOtPpVXg==", + "version": "0.19.0", + "resolved": "https://registry.npmjs.org/send/-/send-0.19.0.tgz", + "integrity": "sha512-dW41u5VfLXu8SJh5bwRmyYUbAoSB3c9uQh6L8h/KtsFREPWpbX1lrljJo186Jc4nmci/sGUZ9a0a0J2zgfq2hw==", "dev": true, "requires": { "debug": "2.6.9", @@ -4875,6 +4890,12 @@ "statuses": "2.0.1" }, "dependencies": { + "encodeurl": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/encodeurl/-/encodeurl-1.0.2.tgz", + "integrity": "sha512-TPJXq8JqFaVYm2CWmPvnP2Iyo4ZSM7/QKcSmuMLDObfpH5fi7RUGmd/rTDf+rut/saiDiQEeVTNgAmJEdAOx0w==", + "dev": true + }, "ms": { "version": "2.1.3", "resolved": "https://registry.npmjs.org/ms/-/ms-2.1.3.tgz", @@ -4884,15 +4905,15 @@ } }, "serve-static": { - "version": "1.15.0", - "resolved": "https://registry.npmjs.org/serve-static/-/serve-static-1.15.0.tgz", - "integrity": "sha512-XGuRDNjXUijsUL0vl6nSD7cwURuzEgglbOaFuZM9g3kwDXOWVTck0jLzjPzGD+TazWbboZYu52/9/XPdUgne9g==", + "version": "1.16.2", + "resolved": "https://registry.npmjs.org/serve-static/-/serve-static-1.16.2.tgz", + "integrity": "sha512-VqpjJZKadQB/PEbEwvFdO43Ax5dFBZ2UECszz8bQ7pi7wt//PWe1P6MN7eCnjsatYtBT6EuiClbjSWP2WrIoTw==", "dev": true, "requires": { - "encodeurl": "~1.0.2", + "encodeurl": "~2.0.0", "escape-html": "~1.0.3", "parseurl": "~1.3.3", - "send": "0.18.0" + "send": "0.19.0" } }, "set-function-length": { diff --git a/package.json b/package.json index 1c3bbaa4..2dcfe307 100644 --- a/package.json +++ b/package.json @@ -31,7 +31,7 @@ "@neo4j-documentation/remote-include": "^1.0.0" }, "devDependencies": { - "express": "^4.19.1", + "express": "^4.21.0", "nodemon": "^3.1.0" } } From e9586172191fc1490d9906ef9163d3400f6d36f1 Mon Sep 17 00:00:00 2001 From: Therese Magnusson Date: Tue, 17 Sep 2024 16:50:36 +0200 Subject: [PATCH 08/45] Add notifications for linked users (#142) Notifications introduced in https://github.com/neo-technology/neo4j/pull/25227 (merged, but behind feature flag). Feature flag removed in https://github.com/neo-technology/neo4j/pull/26923. --- modules/ROOT/pages/changelogs.adoc | 2 + .../notifications/all-notifications.adoc | 101 ++++++++++++++++++ 2 files changed, 103 insertions(+) diff --git a/modules/ROOT/pages/changelogs.adoc b/modules/ROOT/pages/changelogs.adoc index e28a8798..4c18af52 100644 --- a/modules/ROOT/pages/changelogs.adoc +++ b/modules/ROOT/pages/changelogs.adoc @@ -9,6 +9,8 @@ ----- Neo.ClientNotification.Statement.RedundantOptionalProcedure Neo.ClientNotification.Statement.RedundantOptionalSubquery +Neo.ClientNotification.Security.AuthProviderNotDefined +Neo.ClientNotification.Security.ExternalAuthNotEnabled ----- == Neo4j 5.23 diff --git a/modules/ROOT/pages/notifications/all-notifications.adoc b/modules/ROOT/pages/notifications/all-notifications.adoc index ac6fc60a..ef54a7de 100644 --- a/modules/ROOT/pages/notifications/all-notifications.adoc +++ b/modules/ROOT/pages/notifications/all-notifications.adoc @@ -2726,6 +2726,107 @@ Use `DATABASE *` without the parameter to revoke the privilege on all databases. ====== ===== +[#_neo_clientnotification_security_authprovidernotdefined] +=== AuthProviderNotDefined + +.Notification details +[cols="<1s,<4"] +|=== +|Code +m|Neo.ClientNotification.Security.AuthProviderNotDefined +|Title +a|The auth provider is not defined. +|Description +a|The auth provider `` is not defined in the configuration. +Verify that the spelling is correct or define `` in the configuration. +|Severity +m|INFORMATION +|Category +m|SECURITY +|=== + +.Create a user with an auth provider that is not defined in the configuration +==== +Command:: ++ +[source, cypher] +---- +CREATE USER foo SET AUTH 'unknownProvider' { SET ID 'idString' } +---- + +Description of the returned code:: +The auth provider `unknownProvider` is not defined in the configuration. +Verify that the spelling is correct or define `unknownProvider` in the configuration. + +Suggestions for improvement:: +Make sure that the given provider is correct, or replace it if not. +If it is correct, make sure to add it as a known auth provider in one or both of `dbms.security.authentication_providers` and `dbms.security.authorization_providers`. +==== + +.Alter a user to add an auth provider that is not defined in the configuration +==== +Command:: ++ +[source, cypher] +---- +ALTER USER foo SET AUTH 'unknownProvider' { SET ID 'idString' } +---- + +Description of the returned code:: +The auth provider `unknownProvider` is not defined in the configuration. +Verify that the spelling is correct or define `unknownProvider` in the configuration. + +Suggestions for improvement:: +Make sure that the given provider is correct, or replace it if not. +If it is correct, make sure to add it as a known auth provider in one or both of `dbms.security.authentication_providers` and `dbms.security.authorization_providers`. +==== + +[#_neo_clientnotification_security_externalauthnotenabled] +=== ExternalAuthNotEnabled + +.Notification details +[cols="<1s,<4"] +|=== +|Code +m|Neo.ClientNotification.Security.ExternalAuthNotEnabled +|Title +a|External auth for user is not enabled. +|Description +a|Use setting `dbms.security.require_local_user` to enable external auth. +|Severity +m|WARNING +|Category +m|SECURITY +|=== + +.Create a user with an external auth provider when linked users are not enabled +==== +Command:: ++ +[source, cypher] +---- +CREATE USER foo SET AUTH 'exampleProvider' { SET ID 'idString' } +---- + +Suggestions for improvement:: +Enable linked users through the `dbms.security.require_local_user` setting. +Until enabled, the new external auth will be ignored, and current external auth behaviors will continue to apply. +==== + +.Alter a user to add an external auth provider when linked users are not enabled +==== +Command:: ++ +[source, cypher] +---- +ALTER USER foo SET AUTH 'exampleProvider' { SET ID 'idString' } +---- + +Suggestions for improvement:: +Enable linked users through the `dbms.security.require_local_user` setting. +Until enabled, the new external auth will be ignored, and current external auth behaviors will continue to apply. +==== + [#_topology_notifications] == `TOPOLOGY` category From 10726d5aaf5d39ab584f0bffbe670bd09eec31e7 Mon Sep 17 00:00:00 2001 From: Pontus Melke Date: Wed, 18 Sep 2024 17:52:59 +0200 Subject: [PATCH 09/45] Add notification when aggregation skips a null value (#170) Notification added here https://github.com/neo-technology/neo4j/pull/26847 --------- Co-authored-by: Reneta Popova --- modules/ROOT/pages/changelogs.adoc | 1 + .../notifications/all-notifications.adoc | 60 ++++++++++++++++++- 2 files changed, 58 insertions(+), 3 deletions(-) diff --git a/modules/ROOT/pages/changelogs.adoc b/modules/ROOT/pages/changelogs.adoc index 4c18af52..dc20db84 100644 --- a/modules/ROOT/pages/changelogs.adoc +++ b/modules/ROOT/pages/changelogs.adoc @@ -11,6 +11,7 @@ Neo.ClientNotification.Statement.RedundantOptionalProcedure Neo.ClientNotification.Statement.RedundantOptionalSubquery Neo.ClientNotification.Security.AuthProviderNotDefined Neo.ClientNotification.Security.ExternalAuthNotEnabled +Neo.ClientNotification.Statement.AggregationSkippedNull ----- == Neo4j 5.23 diff --git a/modules/ROOT/pages/notifications/all-notifications.adoc b/modules/ROOT/pages/notifications/all-notifications.adoc index ef54a7de..49d3aa76 100644 --- a/modules/ROOT/pages/notifications/all-notifications.adoc +++ b/modules/ROOT/pages/notifications/all-notifications.adoc @@ -1154,6 +1154,61 @@ If you plan to create that property key in the future, no change is needed. ====== ===== +[#_neo_clientnotification_statement_AggregationSkippedNull] +=== Aggregation skipped null + +.Notification details +[cols="<1s,<4"] +|=== +|Neo4j code +m|Neo.ClientNotification.Statement.AggregationSkippedNull +|Title +a|The query contains an aggregation function that skips null values. +|Description +|The query contains an aggregation function that skips null values. +|Category +m|UNRECOGNIZED +|GQLSTATUS code +m|01G11 +|Status description +a|warn: null value eliminated in set function. +|Classification +m|UNRECOGNIZED +|SeverityLevel +m|WARNING +|=== + +.Aggregation skipping a NULL value +[.tabbed-example] +===== +[.include-with-neo4j-code] +====== +Query:: + +[source,cypher] +---- +UNWIND [1, NULL, 2] AS i RETURN count(i) AS sum +---- +Description of the returned code:: +The query contains an aggregation function that skips null values. +====== +[.include-with-GQLSTATUS-code] +====== +Query:: ++ +[source,cypher] +---- +UNWIND [1, NULL, 2] AS i RETURN count(i) AS sum +---- + +Returned GQLSTATUS code:: +01G11 + +Returned status description:: +warn: null value eliminated in set function. +====== +===== + [#_unsupported_notifications] == `UNSUPPORTED` category @@ -4049,9 +4104,9 @@ Query:: MATCH ()-[r*]->()<-[r*]-() RETURN count(*) AS count ---- Description of the returned code:: -A variable-length relationship variable is bound more than once, which leads to no results because relationships must not occur more than once in each result. (Relationship `r` was repeated) - +A variable-length relationship variable is bound more than once, which leads to no results because relationships must not occur more than once in each result. (Relationship r was repeated) ====== + [.include-with-GQLSTATUS-code] ====== Query:: @@ -4069,4 +4124,3 @@ warn: repeated relationship reference. `r` is repeated in `()-[r*]->()<-[r*]-()`, which leads to no results. ====== ===== - From 19e6d3a255fe12d6ba874a6cb056e998d6b71659 Mon Sep 17 00:00:00 2001 From: NataliaIvakina <82437520+NataliaIvakina@users.noreply.github.com> Date: Thu, 26 Sep 2024 15:01:38 +0200 Subject: [PATCH 10/45] Update the v.number to 5.25 (#181) --- antora.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/antora.yml b/antora.yml index 38cee101..9721d811 100644 --- a/antora.yml +++ b/antora.yml @@ -7,6 +7,6 @@ nav: asciidoc: attributes: page-origin-private: false - neo4j-version: '5.24' - neo4j-version-exact: '5.24.0' - neo4j-buildnumber: '5.24' \ No newline at end of file + neo4j-version: '5.25' + neo4j-version-exact: '5.25.0' + neo4j-buildnumber: '5.25' \ No newline at end of file From 5daffd37f233448176cccddaf85b531f59a8a9f5 Mon Sep 17 00:00:00 2001 From: Reneta Popova Date: Tue, 15 Oct 2024 11:46:38 +0100 Subject: [PATCH 11/45] Document 01N71 and 00N72 for Linked users (#189) --- .../notifications/all-notifications.adoc | 152 ++++++++++++++++-- 1 file changed, 136 insertions(+), 16 deletions(-) diff --git a/modules/ROOT/pages/notifications/all-notifications.adoc b/modules/ROOT/pages/notifications/all-notifications.adoc index 49d3aa76..9043f11b 100644 --- a/modules/ROOT/pages/notifications/all-notifications.adoc +++ b/modules/ROOT/pages/notifications/all-notifications.adoc @@ -2787,21 +2787,33 @@ Use `DATABASE *` without the parameter to revoke the privilege on all databases. .Notification details [cols="<1s,<4"] |=== -|Code +|Neo4j code m|Neo.ClientNotification.Security.AuthProviderNotDefined |Title a|The auth provider is not defined. |Description -a|The auth provider `` is not defined in the configuration. -Verify that the spelling is correct or define `` in the configuration. -|Severity -m|INFORMATION +a|The auth provider `$provider` is not defined in the configuration. +Verify that the spelling is correct or define `$provider` in the configuration. |Category m|SECURITY +|GQLSTATUS code +m|00N72 +|Status description +a|note: successful completion - undefined auth provider. +The auth provider { $auth } is not defined in the configuration. +Verify that the spelling is correct or define { $auth } in the configuration. +|Classification +m|SECURITY +|SeverityLevel +m|INFORMATION |=== + .Create a user with an auth provider that is not defined in the configuration -==== +[.tabbed-example] +===== +[.include-with-neo4j-code] +====== Command:: + [source, cypher] @@ -2816,10 +2828,35 @@ Verify that the spelling is correct or define `unknownProvider` in the configura Suggestions for improvement:: Make sure that the given provider is correct, or replace it if not. If it is correct, make sure to add it as a known auth provider in one or both of `dbms.security.authentication_providers` and `dbms.security.authorization_providers`. -==== +====== +[.include-with-GQLSTATUS-code] +====== +Command:: ++ +[source, cypher] +---- +CREATE USER foo SET AUTH 'unknownProvider' { SET ID 'idString' } +---- + +Returned GQLSTATUS code:: +00N72 + +Returned status description:: +note: successful completion - undefined auth provider. +The auth provider `unknownProvider` is not defined in the configuration. +Verify that the spelling is correct or define `unknownProvider` in the configuration. + +Suggestions for improvement:: +Make sure that the given provider is correct, or replace it if not. +If it is correct, make sure to add it as a known auth provider in one or both of `dbms.security.authentication_providers` and `dbms.security.authorization_providers`. +====== +===== .Alter a user to add an auth provider that is not defined in the configuration -==== +[.tabbed-example] +===== +[.include-with-neo4j-code] +====== Command:: + [source, cypher] @@ -2834,7 +2871,31 @@ Verify that the spelling is correct or define `unknownProvider` in the configura Suggestions for improvement:: Make sure that the given provider is correct, or replace it if not. If it is correct, make sure to add it as a known auth provider in one or both of `dbms.security.authentication_providers` and `dbms.security.authorization_providers`. -==== +====== + +[.include-with-GQLSTATUS-code] +====== +Command:: ++ +[source, cypher] +---- +ALTER USER foo SET AUTH 'unknownProvider' { SET ID 'idString' } +---- + +Returned GQLSTATUS code:: +00N72 + +Returned status description:: +note: successful completion - undefined auth provider. +The auth provider `unknownProvider` is not defined in the configuration. +Verify that the spelling is correct or define `unknownProvider` in the configuration. + +Suggestions for improvement:: +Make sure that the given provider is correct, or replace it if not. +If it is correct, make sure to add it as a known auth provider in one or both of `dbms.security.authentication_providers` and `dbms.security.authorization_providers`. +====== +===== + [#_neo_clientnotification_security_externalauthnotenabled] === ExternalAuthNotEnabled @@ -2842,20 +2903,30 @@ If it is correct, make sure to add it as a known auth provider in one or both of .Notification details [cols="<1s,<4"] |=== -|Code +|Neo4j code m|Neo.ClientNotification.Security.ExternalAuthNotEnabled |Title a|External auth for user is not enabled. |Description a|Use setting `dbms.security.require_local_user` to enable external auth. -|Severity -m|WARNING |Category m|SECURITY +|GQLSTATUS code +m|01N71 +|Status description +|warn: external auth disabled. +Use the setting 'dbms.security.require_local_user' to enable external auth. +|Classification +m|SECURITY +|SeverityLevel +m|WARNING |=== .Create a user with an external auth provider when linked users are not enabled -==== +[.tabbed-example] +===== +[.include-with-neo4j-code] +====== Command:: + [source, cypher] @@ -2866,10 +2937,35 @@ CREATE USER foo SET AUTH 'exampleProvider' { SET ID 'idString' } Suggestions for improvement:: Enable linked users through the `dbms.security.require_local_user` setting. Until enabled, the new external auth will be ignored, and current external auth behaviors will continue to apply. -==== +====== +[.include-with-GQLSTATUS-code] +====== +Command:: ++ +[source, cypher] +---- +CREATE USER foo SET AUTH 'exampleProvider' { SET ID 'idString' } +---- + +Returned GQLSTATUS code:: +01N71 + +Returned status description:: +warn: external auth disabled. +Use the setting 'dbms.security.require_local_user' to enable external auth. + +Suggestions for improvement:: +Enable linked users through the `dbms.security.require_local_user` setting. +Until enabled, the new external auth will be ignored, and current external auth behaviors will continue to apply. + +====== +===== .Alter a user to add an external auth provider when linked users are not enabled -==== +[.tabbed-example] +===== +[.include-with-neo4j-code] +====== Command:: + [source, cypher] @@ -2880,7 +2976,31 @@ ALTER USER foo SET AUTH 'exampleProvider' { SET ID 'idString' } Suggestions for improvement:: Enable linked users through the `dbms.security.require_local_user` setting. Until enabled, the new external auth will be ignored, and current external auth behaviors will continue to apply. -==== +====== + +[.include-with-GQLSTATUS-code] +====== +Command:: ++ +[source, cypher] +---- +ALTER USER foo SET AUTH 'exampleProvider' { SET ID 'idString' } +---- + +Returned GQLSTATUS code:: +01N71 + +Returned status description:: +warn: external auth disabled. +Use the setting 'dbms.security.require_local_user' to enable external auth. + +Suggestions for improvement:: +Enable linked users through the `dbms.security.require_local_user` setting. +Until enabled, the new external auth will be ignored, and current external auth behaviors will continue to apply. + +====== +===== + [#_topology_notifications] == `TOPOLOGY` category From 884cffcfba07327b463087f664fa3d1f078c7aab Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Tue, 22 Oct 2024 09:52:46 +0100 Subject: [PATCH 12/45] Bump express from 4.21.0 to 5.0.1 in the dev-dependencies group (#188) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Bumps the dev-dependencies group with 1 update: [express](https://github.com/expressjs/express). Updates `express` from 4.21.0 to 5.0.1
Release notes

Sourced from express's releases.

5.0.1

What's Changed

Full Changelog: https://github.com/expressjs/express/compare/v5.0.0...5.0.1

5.0.0

Express v5.0.0

🎉 Express v5 is finally here! 🎉

After years of development, the long-awaited Express v5 has been officially released. This version focuses on simplifying the codebase, improving security, and dropping support for older Node.js versions to enable better performance and maintainability.

For detailed information, please check out the official Express v5 release blog post.

Most relevant details

Major Changes in v5

  • Node.js version support: Dropped support for Node.js versions before v18.
  • Routing changes: Updated to path-to-regexp@8.x, removing sub-expression regex patterns for security reasons (ReDoS mitigation).
  • Promise support: Middleware can now return rejected promises, caught by the router as errors.
  • body-parser changes: Several improvements including the ability to customize urlencoded body depth and defaulting extended to false.
  • Deprecated API methods removed: Removed old, deprecated API method signatures from Express v3/v4.

For a complete list of breaking changes and API deprecations, see the migration guide.

Security Updates

This release includes important security fixes, including improvements to prevent ReDoS attacks and mitigation for CVE-2024-45590. Full details can be found in the security release notes.

Migration

Be sure to check out our migration guide for instructions on how to update your applications from Express v4 to v5.

Security Guidance

For best practices, we recommend reviewing the Threat Model which outlines Express' approach to securing your applications, including tips for user input validation and other critical aspects.

What's Changed

... (truncated)

Changelog

Sourced from express's changelog.

5.0.1 / 2024-10-08

5.0.0 / 2024-09-10

  • remove:
    • path-is-absolute dependency - use path.isAbsolute instead
  • breaking:
    • res.status() accepts only integers, and input must be greater than 99 and less than 1000
      • will throw a RangeError: Invalid status code: ${code}. Status code must be greater than 99 and less than 1000. for inputs outside this range
      • will throw a TypeError: Invalid status code: ${code}. Status code must be an integer. for non integer inputs
    • deps: send@1.0.0
    • res.redirect('back') and res.location('back') is no longer a supported magic string, explicitly use req.get('Referrer') || '/'.
  • change:
    • res.clearCookie will ignore user provided maxAge and expires options
  • deps: cookie-signature@^1.2.1
  • deps: debug@4.3.6
  • deps: merge-descriptors@^2.0.0
  • deps: serve-static@^2.1.0
  • deps: qs@6.13.0
  • deps: accepts@^2.0.0
  • deps: mime-types@^3.0.0
    • application/javascript => text/javascript
  • deps: type-is@^2.0.0
  • deps: content-disposition@^1.0.0
  • deps: finalhandler@^2.0.0
  • deps: fresh@^2.0.0
  • deps: body-parser@^2.0.1
  • deps: send@^1.1.0

5.0.0-beta.3 / 2024-03-25

This incorporates all changes after 4.19.1 up to 4.19.2.

5.0.0-beta.2 / 2024-03-20

This incorporates all changes after 4.17.2 up to 4.19.1.

5.0.0-beta.1 / 2022-02-14

This is the first Express 5.0 beta release, based off 4.17.2 and includes changes from 5.0.0-alpha.8.

  • change:
    • Default "query parser" setting to 'simple'

... (truncated)

Commits

[![Dependabot compatibility score](https://dependabot-badges.githubapp.com/badges/compatibility_score?dependency-name=express&package-manager=npm_and_yarn&previous-version=4.21.0&new-version=5.0.1)](https://docs.github.com/en/github/managing-security-vulnerabilities/about-dependabot-security-updates#about-compatibility-scores) Dependabot will resolve any conflicts with this PR as long as you don't alter it yourself. You can also trigger a rebase manually by commenting `@dependabot rebase`. [//]: # (dependabot-automerge-start) [//]: # (dependabot-automerge-end) ---
Dependabot commands and options
You can trigger Dependabot actions by commenting on this PR: - `@dependabot rebase` will rebase this PR - `@dependabot recreate` will recreate this PR, overwriting any edits that have been made to it - `@dependabot merge` will merge this PR after your CI passes on it - `@dependabot squash and merge` will squash and merge this PR after your CI passes on it - `@dependabot cancel merge` will cancel a previously requested merge and block automerging - `@dependabot reopen` will reopen this PR if it is closed - `@dependabot close` will close this PR and stop Dependabot recreating it. You can achieve the same result by closing it manually - `@dependabot show ignore conditions` will show all of the ignore conditions of the specified dependency - `@dependabot ignore major version` will close this group update PR and stop Dependabot creating any more for the specific dependency's major version (unless you unignore this specific dependency's major version or upgrade to it yourself) - `@dependabot ignore minor version` will close this group update PR and stop Dependabot creating any more for the specific dependency's minor version (unless you unignore this specific dependency's minor version or upgrade to it yourself) - `@dependabot ignore ` will close this group update PR and stop Dependabot creating any more for the specific dependency (unless you unignore this specific dependency or upgrade to it yourself) - `@dependabot unignore ` will remove all of the ignore conditions of the specified dependency - `@dependabot unignore ` will remove the ignore condition of the specified dependency and ignore conditions
Signed-off-by: dependabot[bot] Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> --- package-lock.json | 823 ++++++++++++++++++++++++++++++---------------- package.json | 2 +- 2 files changed, 541 insertions(+), 284 deletions(-) diff --git a/package-lock.json b/package-lock.json index 2258f44c..e07689a4 100644 --- a/package-lock.json +++ b/package-lock.json @@ -17,7 +17,7 @@ "@neo4j-documentation/remote-include": "^1.0.0" }, "devDependencies": { - "express": "^4.21.0", + "express": "^5.0.1", "nodemon": "^3.1.0" } }, @@ -351,13 +351,34 @@ } }, "node_modules/accepts": { - "version": "1.3.8", - "resolved": "https://registry.npmjs.org/accepts/-/accepts-1.3.8.tgz", - "integrity": "sha512-PYAthTa2m2VKxuvSD3DPC/Gy+U+sOA1LAuT8mkmRuvw+NACSaeXEQ+NHcVF7rONl6qcaxV3Uuemwawk+7+SJLw==", + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/accepts/-/accepts-2.0.0.tgz", + "integrity": "sha512-5cvg6CtKwfgdmVqY1WIiXKc3Q1bkRqGLi+2W/6ao+6Y7gu/RCwRuAhGEzh5B4KlszSuTLgZYuqFqo5bImjNKng==", + "dev": true, + "dependencies": { + "mime-types": "^3.0.0", + "negotiator": "^1.0.0" + }, + "engines": { + "node": ">= 0.6" + } + }, + "node_modules/accepts/node_modules/mime-db": { + "version": "1.53.0", + "resolved": "https://registry.npmjs.org/mime-db/-/mime-db-1.53.0.tgz", + "integrity": "sha512-oHlN/w+3MQ3rba9rqFr6V/ypF10LSkdwUysQL7GkXoTgIWeV+tcXGA852TBxH+gsh8UWoyhR1hKcoMJTuWflpg==", + "dev": true, + "engines": { + "node": ">= 0.6" + } + }, + "node_modules/accepts/node_modules/mime-types": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/mime-types/-/mime-types-3.0.0.tgz", + "integrity": "sha512-XqoSHeCGjVClAmoGFG3lVFqQFRIrTVw2OH3axRqAcfaw+gHWIfnASS92AV+Rl/mk0MupgZTRHQOjxY6YVnzK5w==", "dev": true, "dependencies": { - "mime-types": "~2.1.34", - "negotiator": "0.6.3" + "mime-db": "^1.53.0" }, "engines": { "node": ">= 0.6" @@ -393,9 +414,9 @@ "integrity": "sha512-8+9WqebbFzpX9OR+Wa6O29asIogeRMzcGtAINdpMHHyAg10f05aSFVBbcEqGf/PXw1EjAZ+q2/bEBg3DvurK3Q==" }, "node_modules/array-flatten": { - "version": "1.1.1", - "resolved": "https://registry.npmjs.org/array-flatten/-/array-flatten-1.1.1.tgz", - "integrity": "sha512-PCVAQswWemu6UdxsDFFX/+gVeYqKAod3D3UVm91jHwynguOwAvYPhx8nNlM++NqRcK6CxxpUafjmhIdKiHibqg==", + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/array-flatten/-/array-flatten-3.0.0.tgz", + "integrity": "sha512-zPMVc3ZYlGLNk4mpK1NzP2wg0ml9t7fUgDsayR5Y5rSzxQilzR9FGu/EH2jQOcKSAeAfWeylyW8juy3OkWRvNA==", "dev": true }, "node_modules/asciidoctor-opal-runtime": { @@ -457,27 +478,62 @@ } }, "node_modules/body-parser": { - "version": "1.20.3", - "resolved": "https://registry.npmjs.org/body-parser/-/body-parser-1.20.3.tgz", - "integrity": "sha512-7rAxByjUMqQ3/bHJy7D6OGXvx/MMc4IqBn/X0fcM1QUcAItpZrBEYhWGem+tzXH90c+G01ypMcYJBO9Y30203g==", + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/body-parser/-/body-parser-2.0.1.tgz", + "integrity": "sha512-PagxbjvuPH6tv0f/kdVbFGcb79D236SLcDTs6DrQ7GizJ88S1UWP4nMXFEo/I4fdhGRGabvFfFjVGm3M7U8JwA==", "dev": true, "dependencies": { "bytes": "3.1.2", "content-type": "~1.0.5", - "debug": "2.6.9", - "depd": "2.0.0", + "debug": "3.1.0", "destroy": "1.2.0", "http-errors": "2.0.0", - "iconv-lite": "0.4.24", + "iconv-lite": "0.5.2", "on-finished": "2.4.1", "qs": "6.13.0", - "raw-body": "2.5.2", + "raw-body": "^3.0.0", "type-is": "~1.6.18", "unpipe": "1.0.0" }, "engines": { - "node": ">= 0.8", - "npm": "1.2.8000 || >= 1.4.16" + "node": ">= 0.10" + } + }, + "node_modules/body-parser/node_modules/debug": { + "version": "3.1.0", + "resolved": "https://registry.npmjs.org/debug/-/debug-3.1.0.tgz", + "integrity": "sha512-OX8XqP7/1a9cqkxYw2yXss15f26NKWBpDXQd0/uK/KPqdQhxbPa994hnzjcE2VqQpDslf55723cKPUOGSmMY3g==", + "dev": true, + "dependencies": { + "ms": "2.0.0" + } + }, + "node_modules/body-parser/node_modules/media-typer": { + "version": "0.3.0", + "resolved": "https://registry.npmjs.org/media-typer/-/media-typer-0.3.0.tgz", + "integrity": "sha512-dq+qelQ9akHpcOl/gUVRTxVIOkAJ1wR3QAvb4RsVjS8oVoFjDGTc679wJYmUmknUF5HwMLOgb5O+a3KxfWapPQ==", + "dev": true, + "engines": { + "node": ">= 0.6" + } + }, + "node_modules/body-parser/node_modules/ms": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/ms/-/ms-2.0.0.tgz", + "integrity": "sha512-Tpp60P6IUJDTuOq/5Z8cdskzJujfwqfOTkrwIwj7IRISpnkJnT6SyJ4PCPnGMoFjC9ddhal5KVIYtAt97ix05A==", + "dev": true + }, + "node_modules/body-parser/node_modules/type-is": { + "version": "1.6.18", + "resolved": "https://registry.npmjs.org/type-is/-/type-is-1.6.18.tgz", + "integrity": "sha512-TkRKr9sUTxEH8MdfuCSP7VizJyzRNMjj2J2do2Jr3Kym598JVdEksuzPQCnlFPW4ky9Q+iA+ma9BGm06XQBy8g==", + "dev": true, + "dependencies": { + "media-typer": "0.3.0", + "mime-types": "~2.1.24" + }, + "engines": { + "node": ">= 0.6" } }, "node_modules/brace-expansion": { @@ -701,9 +757,9 @@ "integrity": "sha512-/Srv4dswyQNBfohGpz9o6Yb3Gz3SrUDqBH5rTuhGR7ahtlbYKnVxw2bCFMRljaA7EXHaXZ8wsHdodFvbkhKmqg==" }, "node_modules/content-disposition": { - "version": "0.5.4", - "resolved": "https://registry.npmjs.org/content-disposition/-/content-disposition-0.5.4.tgz", - "integrity": "sha512-FveZTNuGw04cxlAiWbzi6zTAL/lhehaWbTtgluJh4/E95DqMwTmha3KZN1aAWA8cFIhHzMZUvLevkw5Rqk+tSQ==", + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/content-disposition/-/content-disposition-1.0.0.tgz", + "integrity": "sha512-Au9nRL8VNUut/XSzbQA38+M78dzP4D+eqg3gfJHMIHHYa3bg067xj1KxMUWj+VULbiZMowKngFFbKczUrNJ1mg==", "dev": true, "dependencies": { "safe-buffer": "5.2.1" @@ -739,19 +795,22 @@ } }, "node_modules/cookie": { - "version": "0.6.0", - "resolved": "https://registry.npmjs.org/cookie/-/cookie-0.6.0.tgz", - "integrity": "sha512-U71cyTamuh1CRNCfpGY6to28lxvNwPG4Guz/EVjgf3Jmzv0vlDp1atT9eS5dDjMYHucpHbWns6Lwf3BKz6svdw==", + "version": "0.7.1", + "resolved": "https://registry.npmjs.org/cookie/-/cookie-0.7.1.tgz", + "integrity": "sha512-6DnInpx7SJ2AK3+CTUE/ZM0vWTUboZCegxhC2xiIydHR9jNuTAASBrfEpHhiGOZw/nX51bHt6YQl8jsGo4y/0w==", "dev": true, "engines": { "node": ">= 0.6" } }, "node_modules/cookie-signature": { - "version": "1.0.6", - "resolved": "https://registry.npmjs.org/cookie-signature/-/cookie-signature-1.0.6.tgz", - "integrity": "sha512-QADzlaHc8icV8I7vbaJXJwod9HWYp8uCqf1xa4OfNu1T7JVxQIrUgOWtHdNDtPiywmFbiS12VjotIXLrKM3orQ==", - "dev": true + "version": "1.2.1", + "resolved": "https://registry.npmjs.org/cookie-signature/-/cookie-signature-1.2.1.tgz", + "integrity": "sha512-78KWk9T26NhzXtuL26cIJ8/qNHANyJ/ZYrmEXFzUmhZdjpBv+DlWlOANRTGBt48YcyslsLrj0bMLFTmXvLRCOw==", + "dev": true, + "engines": { + "node": ">=6.6.0" + } }, "node_modules/core-util-is": { "version": "1.0.3", @@ -778,12 +837,20 @@ } }, "node_modules/debug": { - "version": "2.6.9", - "resolved": "https://registry.npmjs.org/debug/-/debug-2.6.9.tgz", - "integrity": "sha512-bC7ElrdJaJnPbAP+1EotYvqZsb3ecl5wi6Bfi6BJTUcNowp6cvspg0jXznRTKDjm/E7AdgFBVeAPVMNcKGsHMA==", + "version": "4.3.6", + "resolved": "https://registry.npmjs.org/debug/-/debug-4.3.6.tgz", + "integrity": "sha512-O/09Bd4Z1fBrU4VzkhFqVgpPzaGbw6Sm9FEkBT1A/YBXQFGuuSxa1dN2nxgxS34JmKXqYx8CZAwEVoJFImUXIg==", "dev": true, "dependencies": { - "ms": "2.0.0" + "ms": "2.1.2" + }, + "engines": { + "node": ">=6.0" + }, + "peerDependenciesMeta": { + "supports-color": { + "optional": true + } } }, "node_modules/decompress-response": { @@ -941,45 +1008,67 @@ } }, "node_modules/express": { - "version": "4.21.0", - "resolved": "https://registry.npmjs.org/express/-/express-4.21.0.tgz", - "integrity": "sha512-VqcNGcj/Id5ZT1LZ/cfihi3ttTn+NJmkli2eZADigjq29qTlWi/hAQ43t/VLPq8+UX06FCEx3ByOYet6ZFblng==", + "version": "5.0.1", + "resolved": "https://registry.npmjs.org/express/-/express-5.0.1.tgz", + "integrity": "sha512-ORF7g6qGnD+YtUG9yx4DFoqCShNMmUKiXuT5oWMHiOvt/4WFbHC6yCwQMTSBMno7AqntNCAzzcnnjowRkTL9eQ==", "dev": true, "dependencies": { - "accepts": "~1.3.8", - "array-flatten": "1.1.1", - "body-parser": "1.20.3", - "content-disposition": "0.5.4", + "accepts": "^2.0.0", + "body-parser": "^2.0.1", + "content-disposition": "^1.0.0", "content-type": "~1.0.4", - "cookie": "0.6.0", - "cookie-signature": "1.0.6", - "debug": "2.6.9", + "cookie": "0.7.1", + "cookie-signature": "^1.2.1", + "debug": "4.3.6", "depd": "2.0.0", "encodeurl": "~2.0.0", "escape-html": "~1.0.3", "etag": "~1.8.1", - "finalhandler": "1.3.1", - "fresh": "0.5.2", + "finalhandler": "^2.0.0", + "fresh": "2.0.0", "http-errors": "2.0.0", - "merge-descriptors": "1.0.3", + "merge-descriptors": "^2.0.0", "methods": "~1.1.2", + "mime-types": "^3.0.0", "on-finished": "2.4.1", + "once": "1.4.0", "parseurl": "~1.3.3", - "path-to-regexp": "0.1.10", "proxy-addr": "~2.0.7", "qs": "6.13.0", "range-parser": "~1.2.1", + "router": "^2.0.0", "safe-buffer": "5.2.1", - "send": "0.19.0", - "serve-static": "1.16.2", + "send": "^1.1.0", + "serve-static": "^2.1.0", "setprototypeof": "1.2.0", "statuses": "2.0.1", - "type-is": "~1.6.18", + "type-is": "^2.0.0", "utils-merge": "1.0.1", "vary": "~1.1.2" }, "engines": { - "node": ">= 0.10.0" + "node": ">= 18" + } + }, + "node_modules/express/node_modules/mime-db": { + "version": "1.53.0", + "resolved": "https://registry.npmjs.org/mime-db/-/mime-db-1.53.0.tgz", + "integrity": "sha512-oHlN/w+3MQ3rba9rqFr6V/ypF10LSkdwUysQL7GkXoTgIWeV+tcXGA852TBxH+gsh8UWoyhR1hKcoMJTuWflpg==", + "dev": true, + "engines": { + "node": ">= 0.6" + } + }, + "node_modules/express/node_modules/mime-types": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/mime-types/-/mime-types-3.0.0.tgz", + "integrity": "sha512-XqoSHeCGjVClAmoGFG3lVFqQFRIrTVw2OH3axRqAcfaw+gHWIfnASS92AV+Rl/mk0MupgZTRHQOjxY6YVnzK5w==", + "dev": true, + "dependencies": { + "mime-db": "^1.53.0" + }, + "engines": { + "node": ">= 0.6" } }, "node_modules/extend": { @@ -1025,13 +1114,13 @@ } }, "node_modules/finalhandler": { - "version": "1.3.1", - "resolved": "https://registry.npmjs.org/finalhandler/-/finalhandler-1.3.1.tgz", - "integrity": "sha512-6BN9trH7bp3qvnrRyzsBz+g3lZxTNZTbVO2EV1CS0WIcDbawYVdYvGflME/9QP0h0pYlCDBCTjYa9nZzMDpyxQ==", + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/finalhandler/-/finalhandler-2.0.0.tgz", + "integrity": "sha512-MX6Zo2adDViYh+GcxxB1dpO43eypOGUOL12rLCOTMQv/DfIbpSJUy4oQIIZhVZkH9e+bZWKMon0XHFEju16tkQ==", "dev": true, "dependencies": { "debug": "2.6.9", - "encodeurl": "~2.0.0", + "encodeurl": "~1.0.2", "escape-html": "~1.0.3", "on-finished": "2.4.1", "parseurl": "~1.3.3", @@ -1042,6 +1131,30 @@ "node": ">= 0.8" } }, + "node_modules/finalhandler/node_modules/debug": { + "version": "2.6.9", + "resolved": "https://registry.npmjs.org/debug/-/debug-2.6.9.tgz", + "integrity": "sha512-bC7ElrdJaJnPbAP+1EotYvqZsb3ecl5wi6Bfi6BJTUcNowp6cvspg0jXznRTKDjm/E7AdgFBVeAPVMNcKGsHMA==", + "dev": true, + "dependencies": { + "ms": "2.0.0" + } + }, + "node_modules/finalhandler/node_modules/encodeurl": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/encodeurl/-/encodeurl-1.0.2.tgz", + "integrity": "sha512-TPJXq8JqFaVYm2CWmPvnP2Iyo4ZSM7/QKcSmuMLDObfpH5fi7RUGmd/rTDf+rut/saiDiQEeVTNgAmJEdAOx0w==", + "dev": true, + "engines": { + "node": ">= 0.8" + } + }, + "node_modules/finalhandler/node_modules/ms": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/ms/-/ms-2.0.0.tgz", + "integrity": "sha512-Tpp60P6IUJDTuOq/5Z8cdskzJujfwqfOTkrwIwj7IRISpnkJnT6SyJ4PCPnGMoFjC9ddhal5KVIYtAt97ix05A==", + "dev": true + }, "node_modules/flush-write-stream": { "version": "1.1.1", "resolved": "https://registry.npmjs.org/flush-write-stream/-/flush-write-stream-1.1.1.tgz", @@ -1088,12 +1201,12 @@ } }, "node_modules/fresh": { - "version": "0.5.2", - "resolved": "https://registry.npmjs.org/fresh/-/fresh-0.5.2.tgz", - "integrity": "sha512-zJ2mQYM18rEFOudeV4GShTGIQ7RbzA7ozbU9I/XBpm7kqgMywgmylMwXHxZJmkVoYkna9d2pVXVXPdYTP9ej8Q==", + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/fresh/-/fresh-2.0.0.tgz", + "integrity": "sha512-Rx/WycZ60HOaqLKAi6cHRKKI7zxWbJ31MhntmtwMoaTeF7XFH9hhBp8vITaMidfljRQ6eYWCKkaTK+ykVJHP2A==", "dev": true, "engines": { - "node": ">= 0.6" + "node": ">= 0.8" } }, "node_modules/fs-mkdirp-stream": { @@ -1379,9 +1492,9 @@ } }, "node_modules/iconv-lite": { - "version": "0.4.24", - "resolved": "https://registry.npmjs.org/iconv-lite/-/iconv-lite-0.4.24.tgz", - "integrity": "sha512-v3MXnZAcvnywkTUEZomIActle7RXXeedOR31wwl7VlyoXO4Qi9arvSenNQWne1TcRwhCL1HwLI21bEqdpj8/rA==", + "version": "0.5.2", + "resolved": "https://registry.npmjs.org/iconv-lite/-/iconv-lite-0.5.2.tgz", + "integrity": "sha512-kERHXvpSaB4aU3eANwidg79K8FlrN77m8G9V+0vOR3HYaRifrlwMEpT7ZBJqLSEIHnEgJTHcWK82wwLwwKwtag==", "dev": true, "dependencies": { "safer-buffer": ">= 2.1.2 < 3" @@ -1502,6 +1615,12 @@ "node": ">=0.10.0" } }, + "node_modules/is-promise": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/is-promise/-/is-promise-4.0.0.tgz", + "integrity": "sha512-hvpoI6korhJMnej285dSg6nu1+e6uxs7zG3BYAm5byqDsgJNWwxzM6z6iZiAgQR4TJ30JmBTOwqZUw3WlyH3AQ==", + "dev": true + }, "node_modules/is-relative": { "version": "1.0.0", "resolved": "https://registry.npmjs.org/is-relative/-/is-relative-1.0.0.tgz", @@ -1676,19 +1795,22 @@ } }, "node_modules/media-typer": { - "version": "0.3.0", - "resolved": "https://registry.npmjs.org/media-typer/-/media-typer-0.3.0.tgz", - "integrity": "sha512-dq+qelQ9akHpcOl/gUVRTxVIOkAJ1wR3QAvb4RsVjS8oVoFjDGTc679wJYmUmknUF5HwMLOgb5O+a3KxfWapPQ==", + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/media-typer/-/media-typer-1.1.0.tgz", + "integrity": "sha512-aisnrDP4GNe06UcKFnV5bfMNPBUw4jsLGaWwWfnH3v02GnBuXX2MCVn5RbrWo0j3pczUilYblq7fQ7Nw2t5XKw==", "dev": true, "engines": { - "node": ">= 0.6" + "node": ">= 0.8" } }, "node_modules/merge-descriptors": { - "version": "1.0.3", - "resolved": "https://registry.npmjs.org/merge-descriptors/-/merge-descriptors-1.0.3.tgz", - "integrity": "sha512-gaNvAS7TZ897/rVaZ0nMtAyxNyi/pdbjbAwUpFQpN70GqnVfOiXpeUUMKRBmzXaSQ8DdTX4/0ms62r2K+hE6mQ==", + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/merge-descriptors/-/merge-descriptors-2.0.0.tgz", + "integrity": "sha512-Snk314V5ayFLhp3fkUREub6WtjBfPdCPY1Ln8/8munuLuiYhsABgBVWsozAG+MWMbVEvcdcpbi9R7ww22l9Q3g==", "dev": true, + "engines": { + "node": ">=18" + }, "funding": { "url": "https://github.com/sponsors/sindresorhus" } @@ -1702,18 +1824,6 @@ "node": ">= 0.6" } }, - "node_modules/mime": { - "version": "1.6.0", - "resolved": "https://registry.npmjs.org/mime/-/mime-1.6.0.tgz", - "integrity": "sha512-x0Vn8spI+wuJ1O6S7gnbaQg8Pxh4NNHb7KSINmEWKiPE4RKOplvijn+NkmYmmRgP68mc70j2EbeTFRsrswaQeg==", - "dev": true, - "bin": { - "mime": "cli.js" - }, - "engines": { - "node": ">=4" - } - }, "node_modules/mime-db": { "version": "1.52.0", "resolved": "https://registry.npmjs.org/mime-db/-/mime-db-1.52.0.tgz", @@ -1772,9 +1882,9 @@ } }, "node_modules/ms": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/ms/-/ms-2.0.0.tgz", - "integrity": "sha512-Tpp60P6IUJDTuOq/5Z8cdskzJujfwqfOTkrwIwj7IRISpnkJnT6SyJ4PCPnGMoFjC9ddhal5KVIYtAt97ix05A==", + "version": "2.1.2", + "resolved": "https://registry.npmjs.org/ms/-/ms-2.1.2.tgz", + "integrity": "sha512-sGkPx+VjMtmA6MX27oA4FBFELFCZZ4S4XqeGOXCv68tT+jb3vk/RyaKWP0PTKyWtmLSM0b+adUTEvbs1PEaH2w==", "dev": true }, "node_modules/multi-progress": { @@ -1786,9 +1896,9 @@ } }, "node_modules/negotiator": { - "version": "0.6.3", - "resolved": "https://registry.npmjs.org/negotiator/-/negotiator-0.6.3.tgz", - "integrity": "sha512-+EUsqGPLsM+j/zdChZjsnX51g4XrHFOIXwfnCVPGlQk/k5giakcKsuxCObBRu6DSm9opw/O6slWbJdghQM4bBg==", + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/negotiator/-/negotiator-1.0.0.tgz", + "integrity": "sha512-8Ofs/AUQh8MaEcrlq5xOX0CQ9ypTF5dl78mjlMNfOK08fzpgTHQRQPBxcPlEtIw0yRpws+Zo/3r+5WRby7u3Gg==", "dev": true, "engines": { "node": ">= 0.6" @@ -1827,29 +1937,6 @@ "url": "https://opencollective.com/nodemon" } }, - "node_modules/nodemon/node_modules/debug": { - "version": "4.3.4", - "resolved": "https://registry.npmjs.org/debug/-/debug-4.3.4.tgz", - "integrity": "sha512-PRWFHuSU3eDtQJPvnNY7Jcket1j0t5OuOsFzPPzsekD52Zl8qUfFIPEiswXqIvHWGVHOgX+7G/vCNNhehwxfkQ==", - "dev": true, - "dependencies": { - "ms": "2.1.2" - }, - "engines": { - "node": ">=6.0" - }, - "peerDependenciesMeta": { - "supports-color": { - "optional": true - } - } - }, - "node_modules/nodemon/node_modules/ms": { - "version": "2.1.2", - "resolved": "https://registry.npmjs.org/ms/-/ms-2.1.2.tgz", - "integrity": "sha512-sGkPx+VjMtmA6MX27oA4FBFELFCZZ4S4XqeGOXCv68tT+jb3vk/RyaKWP0PTKyWtmLSM0b+adUTEvbs1PEaH2w==", - "dev": true - }, "node_modules/nopt": { "version": "1.0.10", "resolved": "https://registry.npmjs.org/nopt/-/nopt-1.0.10.tgz", @@ -2013,10 +2100,13 @@ } }, "node_modules/path-to-regexp": { - "version": "0.1.10", - "resolved": "https://registry.npmjs.org/path-to-regexp/-/path-to-regexp-0.1.10.tgz", - "integrity": "sha512-7lf7qcQidTku0Gu3YDPc8DJ1q7OOucfa/BSsIwjuh56VU7katFvuM8hULfkwB3Fns/rsVF7PwPKVw1sl5KQS9w==", - "dev": true + "version": "8.2.0", + "resolved": "https://registry.npmjs.org/path-to-regexp/-/path-to-regexp-8.2.0.tgz", + "integrity": "sha512-TdrF7fW9Rphjq4RjrW0Kp2AW0Ahwu9sRGTkS6bvDi0SCwZlEZYmcfDbEsTz8RVk0EHIS/Vd1bv3JhG+1xZuAyQ==", + "dev": true, + "engines": { + "node": ">=16" + } }, "node_modules/pend": { "version": "1.2.0", @@ -2233,20 +2323,32 @@ } }, "node_modules/raw-body": { - "version": "2.5.2", - "resolved": "https://registry.npmjs.org/raw-body/-/raw-body-2.5.2.tgz", - "integrity": "sha512-8zGqypfENjCIqGhgXToC8aB2r7YrBX+AQAfIPs/Mlk+BtPTztOvTS01NRW/3Eh60J+a48lt8qsCzirQ6loCVfA==", + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/raw-body/-/raw-body-3.0.0.tgz", + "integrity": "sha512-RmkhL8CAyCRPXCE28MMH0z2PNWQBNk2Q09ZdxM9IOOXwxwZbN+qbWaatPkdkWIKL2ZVDImrN/pK5HTRz2PcS4g==", "dev": true, "dependencies": { "bytes": "3.1.2", "http-errors": "2.0.0", - "iconv-lite": "0.4.24", + "iconv-lite": "0.6.3", "unpipe": "1.0.0" }, "engines": { "node": ">= 0.8" } }, + "node_modules/raw-body/node_modules/iconv-lite": { + "version": "0.6.3", + "resolved": "https://registry.npmjs.org/iconv-lite/-/iconv-lite-0.6.3.tgz", + "integrity": "sha512-4fCk79wshMdzMp2rH06qWrJE4iolqLhCUH+OiuIgU++RB0+94NlDL81atO7GX55uUKueo0txHNtvEyI6D7WdMw==", + "dev": true, + "dependencies": { + "safer-buffer": ">= 2.1.2 < 3.0.0" + }, + "engines": { + "node": ">=0.10.0" + } + }, "node_modules/readable-stream": { "version": "3.6.2", "resolved": "https://registry.npmjs.org/readable-stream/-/readable-stream-3.6.2.tgz", @@ -2337,6 +2439,24 @@ "node": ">= 0.10" } }, + "node_modules/router": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/router/-/router-2.0.0.tgz", + "integrity": "sha512-dIM5zVoG8xhC6rnSN8uoAgFARwTE7BQs8YwHEvK0VCmfxQXMaOuA1uiR1IPwsW7JyK5iTt7Od/TC9StasS2NPQ==", + "dev": true, + "dependencies": { + "array-flatten": "3.0.0", + "is-promise": "4.0.0", + "methods": "~1.1.2", + "parseurl": "~1.3.3", + "path-to-regexp": "^8.0.0", + "setprototypeof": "1.2.0", + "utils-merge": "1.0.1" + }, + "engines": { + "node": ">= 0.10" + } + }, "node_modules/safe-buffer": { "version": "5.2.1", "resolved": "https://registry.npmjs.org/safe-buffer/-/safe-buffer-5.2.1.tgz", @@ -2391,36 +2511,35 @@ } }, "node_modules/send": { - "version": "0.19.0", - "resolved": "https://registry.npmjs.org/send/-/send-0.19.0.tgz", - "integrity": "sha512-dW41u5VfLXu8SJh5bwRmyYUbAoSB3c9uQh6L8h/KtsFREPWpbX1lrljJo186Jc4nmci/sGUZ9a0a0J2zgfq2hw==", + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/send/-/send-1.1.0.tgz", + "integrity": "sha512-v67WcEouB5GxbTWL/4NeToqcZiAWEq90N888fczVArY8A79J0L4FD7vj5hm3eUMua5EpoQ59wa/oovY6TLvRUA==", "dev": true, "dependencies": { - "debug": "2.6.9", - "depd": "2.0.0", - "destroy": "1.2.0", - "encodeurl": "~1.0.2", - "escape-html": "~1.0.3", - "etag": "~1.8.1", - "fresh": "0.5.2", - "http-errors": "2.0.0", - "mime": "1.6.0", - "ms": "2.1.3", - "on-finished": "2.4.1", - "range-parser": "~1.2.1", - "statuses": "2.0.1" + "debug": "^4.3.5", + "destroy": "^1.2.0", + "encodeurl": "^2.0.0", + "escape-html": "^1.0.3", + "etag": "^1.8.1", + "fresh": "^0.5.2", + "http-errors": "^2.0.0", + "mime-types": "^2.1.35", + "ms": "^2.1.3", + "on-finished": "^2.4.1", + "range-parser": "^1.2.1", + "statuses": "^2.0.1" }, "engines": { - "node": ">= 0.8.0" + "node": ">= 18" } }, - "node_modules/send/node_modules/encodeurl": { - "version": "1.0.2", - "resolved": "https://registry.npmjs.org/encodeurl/-/encodeurl-1.0.2.tgz", - "integrity": "sha512-TPJXq8JqFaVYm2CWmPvnP2Iyo4ZSM7/QKcSmuMLDObfpH5fi7RUGmd/rTDf+rut/saiDiQEeVTNgAmJEdAOx0w==", + "node_modules/send/node_modules/fresh": { + "version": "0.5.2", + "resolved": "https://registry.npmjs.org/fresh/-/fresh-0.5.2.tgz", + "integrity": "sha512-zJ2mQYM18rEFOudeV4GShTGIQ7RbzA7ozbU9I/XBpm7kqgMywgmylMwXHxZJmkVoYkna9d2pVXVXPdYTP9ej8Q==", "dev": true, "engines": { - "node": ">= 0.8" + "node": ">= 0.6" } }, "node_modules/send/node_modules/ms": { @@ -2430,18 +2549,18 @@ "dev": true }, "node_modules/serve-static": { - "version": "1.16.2", - "resolved": "https://registry.npmjs.org/serve-static/-/serve-static-1.16.2.tgz", - "integrity": "sha512-VqpjJZKadQB/PEbEwvFdO43Ax5dFBZ2UECszz8bQ7pi7wt//PWe1P6MN7eCnjsatYtBT6EuiClbjSWP2WrIoTw==", + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/serve-static/-/serve-static-2.1.0.tgz", + "integrity": "sha512-A3We5UfEjG8Z7VkDv6uItWw6HY2bBSBJT1KtVESn6EOoOr2jAxNhxWCLY3jDE2WcuHXByWju74ck3ZgLwL8xmA==", "dev": true, "dependencies": { - "encodeurl": "~2.0.0", - "escape-html": "~1.0.3", - "parseurl": "~1.3.3", - "send": "0.19.0" + "encodeurl": "^2.0.0", + "escape-html": "^1.0.3", + "parseurl": "^1.3.3", + "send": "^1.0.0" }, "engines": { - "node": ">= 0.8.0" + "node": ">= 18" } }, "node_modules/set-function-length": { @@ -2747,13 +2866,35 @@ } }, "node_modules/type-is": { - "version": "1.6.18", - "resolved": "https://registry.npmjs.org/type-is/-/type-is-1.6.18.tgz", - "integrity": "sha512-TkRKr9sUTxEH8MdfuCSP7VizJyzRNMjj2J2do2Jr3Kym598JVdEksuzPQCnlFPW4ky9Q+iA+ma9BGm06XQBy8g==", + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/type-is/-/type-is-2.0.0.tgz", + "integrity": "sha512-gd0sGezQYCbWSbkZr75mln4YBidWUN60+devscpLF5mtRDUpiaTvKpBNrdaCvel1NdR2k6vclXybU5fBd2i+nw==", "dev": true, "dependencies": { - "media-typer": "0.3.0", - "mime-types": "~2.1.24" + "content-type": "^1.0.5", + "media-typer": "^1.1.0", + "mime-types": "^3.0.0" + }, + "engines": { + "node": ">= 0.6" + } + }, + "node_modules/type-is/node_modules/mime-db": { + "version": "1.53.0", + "resolved": "https://registry.npmjs.org/mime-db/-/mime-db-1.53.0.tgz", + "integrity": "sha512-oHlN/w+3MQ3rba9rqFr6V/ypF10LSkdwUysQL7GkXoTgIWeV+tcXGA852TBxH+gsh8UWoyhR1hKcoMJTuWflpg==", + "dev": true, + "engines": { + "node": ">= 0.6" + } + }, + "node_modules/type-is/node_modules/mime-types": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/mime-types/-/mime-types-3.0.0.tgz", + "integrity": "sha512-XqoSHeCGjVClAmoGFG3lVFqQFRIrTVw2OH3axRqAcfaw+gHWIfnASS92AV+Rl/mk0MupgZTRHQOjxY6YVnzK5w==", + "dev": true, + "dependencies": { + "mime-db": "^1.53.0" }, "engines": { "node": ">= 0.6" @@ -3331,13 +3472,30 @@ } }, "accepts": { - "version": "1.3.8", - "resolved": "https://registry.npmjs.org/accepts/-/accepts-1.3.8.tgz", - "integrity": "sha512-PYAthTa2m2VKxuvSD3DPC/Gy+U+sOA1LAuT8mkmRuvw+NACSaeXEQ+NHcVF7rONl6qcaxV3Uuemwawk+7+SJLw==", + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/accepts/-/accepts-2.0.0.tgz", + "integrity": "sha512-5cvg6CtKwfgdmVqY1WIiXKc3Q1bkRqGLi+2W/6ao+6Y7gu/RCwRuAhGEzh5B4KlszSuTLgZYuqFqo5bImjNKng==", "dev": true, "requires": { - "mime-types": "~2.1.34", - "negotiator": "0.6.3" + "mime-types": "^3.0.0", + "negotiator": "^1.0.0" + }, + "dependencies": { + "mime-db": { + "version": "1.53.0", + "resolved": "https://registry.npmjs.org/mime-db/-/mime-db-1.53.0.tgz", + "integrity": "sha512-oHlN/w+3MQ3rba9rqFr6V/ypF10LSkdwUysQL7GkXoTgIWeV+tcXGA852TBxH+gsh8UWoyhR1hKcoMJTuWflpg==", + "dev": true + }, + "mime-types": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/mime-types/-/mime-types-3.0.0.tgz", + "integrity": "sha512-XqoSHeCGjVClAmoGFG3lVFqQFRIrTVw2OH3axRqAcfaw+gHWIfnASS92AV+Rl/mk0MupgZTRHQOjxY6YVnzK5w==", + "dev": true, + "requires": { + "mime-db": "^1.53.0" + } + } } }, "anymatch": { @@ -3364,9 +3522,9 @@ "integrity": "sha512-8+9WqebbFzpX9OR+Wa6O29asIogeRMzcGtAINdpMHHyAg10f05aSFVBbcEqGf/PXw1EjAZ+q2/bEBg3DvurK3Q==" }, "array-flatten": { - "version": "1.1.1", - "resolved": "https://registry.npmjs.org/array-flatten/-/array-flatten-1.1.1.tgz", - "integrity": "sha512-PCVAQswWemu6UdxsDFFX/+gVeYqKAod3D3UVm91jHwynguOwAvYPhx8nNlM++NqRcK6CxxpUafjmhIdKiHibqg==", + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/array-flatten/-/array-flatten-3.0.0.tgz", + "integrity": "sha512-zPMVc3ZYlGLNk4mpK1NzP2wg0ml9t7fUgDsayR5Y5rSzxQilzR9FGu/EH2jQOcKSAeAfWeylyW8juy3OkWRvNA==", "dev": true }, "asciidoctor-opal-runtime": { @@ -3405,23 +3563,55 @@ "dev": true }, "body-parser": { - "version": "1.20.3", - "resolved": "https://registry.npmjs.org/body-parser/-/body-parser-1.20.3.tgz", - "integrity": "sha512-7rAxByjUMqQ3/bHJy7D6OGXvx/MMc4IqBn/X0fcM1QUcAItpZrBEYhWGem+tzXH90c+G01ypMcYJBO9Y30203g==", + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/body-parser/-/body-parser-2.0.1.tgz", + "integrity": "sha512-PagxbjvuPH6tv0f/kdVbFGcb79D236SLcDTs6DrQ7GizJ88S1UWP4nMXFEo/I4fdhGRGabvFfFjVGm3M7U8JwA==", "dev": true, "requires": { "bytes": "3.1.2", "content-type": "~1.0.5", - "debug": "2.6.9", - "depd": "2.0.0", + "debug": "3.1.0", "destroy": "1.2.0", "http-errors": "2.0.0", - "iconv-lite": "0.4.24", + "iconv-lite": "0.5.2", "on-finished": "2.4.1", "qs": "6.13.0", - "raw-body": "2.5.2", + "raw-body": "^3.0.0", "type-is": "~1.6.18", "unpipe": "1.0.0" + }, + "dependencies": { + "debug": { + "version": "3.1.0", + "resolved": "https://registry.npmjs.org/debug/-/debug-3.1.0.tgz", + "integrity": "sha512-OX8XqP7/1a9cqkxYw2yXss15f26NKWBpDXQd0/uK/KPqdQhxbPa994hnzjcE2VqQpDslf55723cKPUOGSmMY3g==", + "dev": true, + "requires": { + "ms": "2.0.0" + } + }, + "media-typer": { + "version": "0.3.0", + "resolved": "https://registry.npmjs.org/media-typer/-/media-typer-0.3.0.tgz", + "integrity": "sha512-dq+qelQ9akHpcOl/gUVRTxVIOkAJ1wR3QAvb4RsVjS8oVoFjDGTc679wJYmUmknUF5HwMLOgb5O+a3KxfWapPQ==", + "dev": true + }, + "ms": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/ms/-/ms-2.0.0.tgz", + "integrity": "sha512-Tpp60P6IUJDTuOq/5Z8cdskzJujfwqfOTkrwIwj7IRISpnkJnT6SyJ4PCPnGMoFjC9ddhal5KVIYtAt97ix05A==", + "dev": true + }, + "type-is": { + "version": "1.6.18", + "resolved": "https://registry.npmjs.org/type-is/-/type-is-1.6.18.tgz", + "integrity": "sha512-TkRKr9sUTxEH8MdfuCSP7VizJyzRNMjj2J2do2Jr3Kym598JVdEksuzPQCnlFPW4ky9Q+iA+ma9BGm06XQBy8g==", + "dev": true, + "requires": { + "media-typer": "0.3.0", + "mime-types": "~2.1.24" + } + } } }, "brace-expansion": { @@ -3588,9 +3778,9 @@ "integrity": "sha512-/Srv4dswyQNBfohGpz9o6Yb3Gz3SrUDqBH5rTuhGR7ahtlbYKnVxw2bCFMRljaA7EXHaXZ8wsHdodFvbkhKmqg==" }, "content-disposition": { - "version": "0.5.4", - "resolved": "https://registry.npmjs.org/content-disposition/-/content-disposition-0.5.4.tgz", - "integrity": "sha512-FveZTNuGw04cxlAiWbzi6zTAL/lhehaWbTtgluJh4/E95DqMwTmha3KZN1aAWA8cFIhHzMZUvLevkw5Rqk+tSQ==", + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/content-disposition/-/content-disposition-1.0.0.tgz", + "integrity": "sha512-Au9nRL8VNUut/XSzbQA38+M78dzP4D+eqg3gfJHMIHHYa3bg067xj1KxMUWj+VULbiZMowKngFFbKczUrNJ1mg==", "dev": true, "requires": { "safe-buffer": "5.2.1" @@ -3617,15 +3807,15 @@ } }, "cookie": { - "version": "0.6.0", - "resolved": "https://registry.npmjs.org/cookie/-/cookie-0.6.0.tgz", - "integrity": "sha512-U71cyTamuh1CRNCfpGY6to28lxvNwPG4Guz/EVjgf3Jmzv0vlDp1atT9eS5dDjMYHucpHbWns6Lwf3BKz6svdw==", + "version": "0.7.1", + "resolved": "https://registry.npmjs.org/cookie/-/cookie-0.7.1.tgz", + "integrity": "sha512-6DnInpx7SJ2AK3+CTUE/ZM0vWTUboZCegxhC2xiIydHR9jNuTAASBrfEpHhiGOZw/nX51bHt6YQl8jsGo4y/0w==", "dev": true }, "cookie-signature": { - "version": "1.0.6", - "resolved": "https://registry.npmjs.org/cookie-signature/-/cookie-signature-1.0.6.tgz", - "integrity": "sha512-QADzlaHc8icV8I7vbaJXJwod9HWYp8uCqf1xa4OfNu1T7JVxQIrUgOWtHdNDtPiywmFbiS12VjotIXLrKM3orQ==", + "version": "1.2.1", + "resolved": "https://registry.npmjs.org/cookie-signature/-/cookie-signature-1.2.1.tgz", + "integrity": "sha512-78KWk9T26NhzXtuL26cIJ8/qNHANyJ/ZYrmEXFzUmhZdjpBv+DlWlOANRTGBt48YcyslsLrj0bMLFTmXvLRCOw==", "dev": true }, "core-util-is": { @@ -3644,12 +3834,12 @@ "integrity": "sha512-2P0p0pFGzHS5EMnhdxQi7aJN+iMheud0UhG4dlE1DLAlvL8JHjJJTX/CSm4JXwV0Ka5nGk3zC5mcb5bUQUxxMA==" }, "debug": { - "version": "2.6.9", - "resolved": "https://registry.npmjs.org/debug/-/debug-2.6.9.tgz", - "integrity": "sha512-bC7ElrdJaJnPbAP+1EotYvqZsb3ecl5wi6Bfi6BJTUcNowp6cvspg0jXznRTKDjm/E7AdgFBVeAPVMNcKGsHMA==", + "version": "4.3.6", + "resolved": "https://registry.npmjs.org/debug/-/debug-4.3.6.tgz", + "integrity": "sha512-O/09Bd4Z1fBrU4VzkhFqVgpPzaGbw6Sm9FEkBT1A/YBXQFGuuSxa1dN2nxgxS34JmKXqYx8CZAwEVoJFImUXIg==", "dev": true, "requires": { - "ms": "2.0.0" + "ms": "2.1.2" } }, "decompress-response": { @@ -3764,42 +3954,60 @@ "integrity": "sha512-mQw+2fkQbALzQ7V0MY0IqdnXNOeTtP4r0lN9z7AAawCXgqea7bDii20AYrIBrFd/Hx0M2Ocz6S111CaFkUcb0Q==" }, "express": { - "version": "4.21.0", - "resolved": "https://registry.npmjs.org/express/-/express-4.21.0.tgz", - "integrity": "sha512-VqcNGcj/Id5ZT1LZ/cfihi3ttTn+NJmkli2eZADigjq29qTlWi/hAQ43t/VLPq8+UX06FCEx3ByOYet6ZFblng==", + "version": "5.0.1", + "resolved": "https://registry.npmjs.org/express/-/express-5.0.1.tgz", + "integrity": "sha512-ORF7g6qGnD+YtUG9yx4DFoqCShNMmUKiXuT5oWMHiOvt/4WFbHC6yCwQMTSBMno7AqntNCAzzcnnjowRkTL9eQ==", "dev": true, "requires": { - "accepts": "~1.3.8", - "array-flatten": "1.1.1", - "body-parser": "1.20.3", - "content-disposition": "0.5.4", + "accepts": "^2.0.0", + "body-parser": "^2.0.1", + "content-disposition": "^1.0.0", "content-type": "~1.0.4", - "cookie": "0.6.0", - "cookie-signature": "1.0.6", - "debug": "2.6.9", + "cookie": "0.7.1", + "cookie-signature": "^1.2.1", + "debug": "4.3.6", "depd": "2.0.0", "encodeurl": "~2.0.0", "escape-html": "~1.0.3", "etag": "~1.8.1", - "finalhandler": "1.3.1", - "fresh": "0.5.2", + "finalhandler": "^2.0.0", + "fresh": "2.0.0", "http-errors": "2.0.0", - "merge-descriptors": "1.0.3", + "merge-descriptors": "^2.0.0", "methods": "~1.1.2", + "mime-types": "^3.0.0", "on-finished": "2.4.1", + "once": "1.4.0", "parseurl": "~1.3.3", - "path-to-regexp": "0.1.10", "proxy-addr": "~2.0.7", "qs": "6.13.0", "range-parser": "~1.2.1", + "router": "^2.0.0", "safe-buffer": "5.2.1", - "send": "0.19.0", - "serve-static": "1.16.2", + "send": "^1.1.0", + "serve-static": "^2.1.0", "setprototypeof": "1.2.0", "statuses": "2.0.1", - "type-is": "~1.6.18", + "type-is": "^2.0.0", "utils-merge": "1.0.1", "vary": "~1.1.2" + }, + "dependencies": { + "mime-db": { + "version": "1.53.0", + "resolved": "https://registry.npmjs.org/mime-db/-/mime-db-1.53.0.tgz", + "integrity": "sha512-oHlN/w+3MQ3rba9rqFr6V/ypF10LSkdwUysQL7GkXoTgIWeV+tcXGA852TBxH+gsh8UWoyhR1hKcoMJTuWflpg==", + "dev": true + }, + "mime-types": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/mime-types/-/mime-types-3.0.0.tgz", + "integrity": "sha512-XqoSHeCGjVClAmoGFG3lVFqQFRIrTVw2OH3axRqAcfaw+gHWIfnASS92AV+Rl/mk0MupgZTRHQOjxY6YVnzK5w==", + "dev": true, + "requires": { + "mime-db": "^1.53.0" + } + } } }, "extend": { @@ -3839,18 +4047,41 @@ } }, "finalhandler": { - "version": "1.3.1", - "resolved": "https://registry.npmjs.org/finalhandler/-/finalhandler-1.3.1.tgz", - "integrity": "sha512-6BN9trH7bp3qvnrRyzsBz+g3lZxTNZTbVO2EV1CS0WIcDbawYVdYvGflME/9QP0h0pYlCDBCTjYa9nZzMDpyxQ==", + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/finalhandler/-/finalhandler-2.0.0.tgz", + "integrity": "sha512-MX6Zo2adDViYh+GcxxB1dpO43eypOGUOL12rLCOTMQv/DfIbpSJUy4oQIIZhVZkH9e+bZWKMon0XHFEju16tkQ==", "dev": true, "requires": { "debug": "2.6.9", - "encodeurl": "~2.0.0", + "encodeurl": "~1.0.2", "escape-html": "~1.0.3", "on-finished": "2.4.1", "parseurl": "~1.3.3", "statuses": "2.0.1", "unpipe": "~1.0.0" + }, + "dependencies": { + "debug": { + "version": "2.6.9", + "resolved": "https://registry.npmjs.org/debug/-/debug-2.6.9.tgz", + "integrity": "sha512-bC7ElrdJaJnPbAP+1EotYvqZsb3ecl5wi6Bfi6BJTUcNowp6cvspg0jXznRTKDjm/E7AdgFBVeAPVMNcKGsHMA==", + "dev": true, + "requires": { + "ms": "2.0.0" + } + }, + "encodeurl": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/encodeurl/-/encodeurl-1.0.2.tgz", + "integrity": "sha512-TPJXq8JqFaVYm2CWmPvnP2Iyo4ZSM7/QKcSmuMLDObfpH5fi7RUGmd/rTDf+rut/saiDiQEeVTNgAmJEdAOx0w==", + "dev": true + }, + "ms": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/ms/-/ms-2.0.0.tgz", + "integrity": "sha512-Tpp60P6IUJDTuOq/5Z8cdskzJujfwqfOTkrwIwj7IRISpnkJnT6SyJ4PCPnGMoFjC9ddhal5KVIYtAt97ix05A==", + "dev": true + } } }, "flush-write-stream": { @@ -3898,9 +4129,9 @@ "dev": true }, "fresh": { - "version": "0.5.2", - "resolved": "https://registry.npmjs.org/fresh/-/fresh-0.5.2.tgz", - "integrity": "sha512-zJ2mQYM18rEFOudeV4GShTGIQ7RbzA7ozbU9I/XBpm7kqgMywgmylMwXHxZJmkVoYkna9d2pVXVXPdYTP9ej8Q==", + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/fresh/-/fresh-2.0.0.tgz", + "integrity": "sha512-Rx/WycZ60HOaqLKAi6cHRKKI7zxWbJ31MhntmtwMoaTeF7XFH9hhBp8vITaMidfljRQ6eYWCKkaTK+ykVJHP2A==", "dev": true }, "fs-mkdirp-stream": { @@ -4109,9 +4340,9 @@ } }, "iconv-lite": { - "version": "0.4.24", - "resolved": "https://registry.npmjs.org/iconv-lite/-/iconv-lite-0.4.24.tgz", - "integrity": "sha512-v3MXnZAcvnywkTUEZomIActle7RXXeedOR31wwl7VlyoXO4Qi9arvSenNQWne1TcRwhCL1HwLI21bEqdpj8/rA==", + "version": "0.5.2", + "resolved": "https://registry.npmjs.org/iconv-lite/-/iconv-lite-0.5.2.tgz", + "integrity": "sha512-kERHXvpSaB4aU3eANwidg79K8FlrN77m8G9V+0vOR3HYaRifrlwMEpT7ZBJqLSEIHnEgJTHcWK82wwLwwKwtag==", "dev": true, "requires": { "safer-buffer": ">= 2.1.2 < 3" @@ -4194,6 +4425,12 @@ "resolved": "https://registry.npmjs.org/is-negated-glob/-/is-negated-glob-1.0.0.tgz", "integrity": "sha512-czXVVn/QEmgvej1f50BZ648vUI+em0xqMq2Sn+QncCLN4zj1UAxlT+kw/6ggQTOaZPd1HqKQGEqbpQVtJucWug==" }, + "is-promise": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/is-promise/-/is-promise-4.0.0.tgz", + "integrity": "sha512-hvpoI6korhJMnej285dSg6nu1+e6uxs7zG3BYAm5byqDsgJNWwxzM6z6iZiAgQR4TJ30JmBTOwqZUw3WlyH3AQ==", + "dev": true + }, "is-relative": { "version": "1.0.0", "resolved": "https://registry.npmjs.org/is-relative/-/is-relative-1.0.0.tgz", @@ -4331,15 +4568,15 @@ } }, "media-typer": { - "version": "0.3.0", - "resolved": "https://registry.npmjs.org/media-typer/-/media-typer-0.3.0.tgz", - "integrity": "sha512-dq+qelQ9akHpcOl/gUVRTxVIOkAJ1wR3QAvb4RsVjS8oVoFjDGTc679wJYmUmknUF5HwMLOgb5O+a3KxfWapPQ==", + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/media-typer/-/media-typer-1.1.0.tgz", + "integrity": "sha512-aisnrDP4GNe06UcKFnV5bfMNPBUw4jsLGaWwWfnH3v02GnBuXX2MCVn5RbrWo0j3pczUilYblq7fQ7Nw2t5XKw==", "dev": true }, "merge-descriptors": { - "version": "1.0.3", - "resolved": "https://registry.npmjs.org/merge-descriptors/-/merge-descriptors-1.0.3.tgz", - "integrity": "sha512-gaNvAS7TZ897/rVaZ0nMtAyxNyi/pdbjbAwUpFQpN70GqnVfOiXpeUUMKRBmzXaSQ8DdTX4/0ms62r2K+hE6mQ==", + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/merge-descriptors/-/merge-descriptors-2.0.0.tgz", + "integrity": "sha512-Snk314V5ayFLhp3fkUREub6WtjBfPdCPY1Ln8/8munuLuiYhsABgBVWsozAG+MWMbVEvcdcpbi9R7ww22l9Q3g==", "dev": true }, "methods": { @@ -4348,12 +4585,6 @@ "integrity": "sha512-iclAHeNqNm68zFtnZ0e+1L2yUIdvzNoauKU4WBA3VvH/vPFieF7qfRlwUZU+DA9P9bPXIS90ulxoUoCH23sV2w==", "dev": true }, - "mime": { - "version": "1.6.0", - "resolved": "https://registry.npmjs.org/mime/-/mime-1.6.0.tgz", - "integrity": "sha512-x0Vn8spI+wuJ1O6S7gnbaQg8Pxh4NNHb7KSINmEWKiPE4RKOplvijn+NkmYmmRgP68mc70j2EbeTFRsrswaQeg==", - "dev": true - }, "mime-db": { "version": "1.52.0", "resolved": "https://registry.npmjs.org/mime-db/-/mime-db-1.52.0.tgz", @@ -4394,9 +4625,9 @@ } }, "ms": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/ms/-/ms-2.0.0.tgz", - "integrity": "sha512-Tpp60P6IUJDTuOq/5Z8cdskzJujfwqfOTkrwIwj7IRISpnkJnT6SyJ4PCPnGMoFjC9ddhal5KVIYtAt97ix05A==", + "version": "2.1.2", + "resolved": "https://registry.npmjs.org/ms/-/ms-2.1.2.tgz", + "integrity": "sha512-sGkPx+VjMtmA6MX27oA4FBFELFCZZ4S4XqeGOXCv68tT+jb3vk/RyaKWP0PTKyWtmLSM0b+adUTEvbs1PEaH2w==", "dev": true }, "multi-progress": { @@ -4406,9 +4637,9 @@ "requires": {} }, "negotiator": { - "version": "0.6.3", - "resolved": "https://registry.npmjs.org/negotiator/-/negotiator-0.6.3.tgz", - "integrity": "sha512-+EUsqGPLsM+j/zdChZjsnX51g4XrHFOIXwfnCVPGlQk/k5giakcKsuxCObBRu6DSm9opw/O6slWbJdghQM4bBg==", + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/negotiator/-/negotiator-1.0.0.tgz", + "integrity": "sha512-8Ofs/AUQh8MaEcrlq5xOX0CQ9ypTF5dl78mjlMNfOK08fzpgTHQRQPBxcPlEtIw0yRpws+Zo/3r+5WRby7u3Gg==", "dev": true }, "neo-async": { @@ -4432,23 +4663,6 @@ "supports-color": "^5.5.0", "touch": "^3.1.0", "undefsafe": "^2.0.5" - }, - "dependencies": { - "debug": { - "version": "4.3.4", - "resolved": "https://registry.npmjs.org/debug/-/debug-4.3.4.tgz", - "integrity": "sha512-PRWFHuSU3eDtQJPvnNY7Jcket1j0t5OuOsFzPPzsekD52Zl8qUfFIPEiswXqIvHWGVHOgX+7G/vCNNhehwxfkQ==", - "dev": true, - "requires": { - "ms": "2.1.2" - } - }, - "ms": { - "version": "2.1.2", - "resolved": "https://registry.npmjs.org/ms/-/ms-2.1.2.tgz", - "integrity": "sha512-sGkPx+VjMtmA6MX27oA4FBFELFCZZ4S4XqeGOXCv68tT+jb3vk/RyaKWP0PTKyWtmLSM0b+adUTEvbs1PEaH2w==", - "dev": true - } } }, "nopt": { @@ -4577,9 +4791,9 @@ "integrity": "sha512-AVbw3UJ2e9bq64vSaS9Am0fje1Pa8pbGqTTsmXfaIiMpnr5DlDhfJOuLj9Sf95ZPVDAUerDfEk88MPmPe7UCQg==" }, "path-to-regexp": { - "version": "0.1.10", - "resolved": "https://registry.npmjs.org/path-to-regexp/-/path-to-regexp-0.1.10.tgz", - "integrity": "sha512-7lf7qcQidTku0Gu3YDPc8DJ1q7OOucfa/BSsIwjuh56VU7katFvuM8hULfkwB3Fns/rsVF7PwPKVw1sl5KQS9w==", + "version": "8.2.0", + "resolved": "https://registry.npmjs.org/path-to-regexp/-/path-to-regexp-8.2.0.tgz", + "integrity": "sha512-TdrF7fW9Rphjq4RjrW0Kp2AW0Ahwu9sRGTkS6bvDi0SCwZlEZYmcfDbEsTz8RVk0EHIS/Vd1bv3JhG+1xZuAyQ==", "dev": true }, "pend": { @@ -4762,15 +4976,26 @@ "dev": true }, "raw-body": { - "version": "2.5.2", - "resolved": "https://registry.npmjs.org/raw-body/-/raw-body-2.5.2.tgz", - "integrity": "sha512-8zGqypfENjCIqGhgXToC8aB2r7YrBX+AQAfIPs/Mlk+BtPTztOvTS01NRW/3Eh60J+a48lt8qsCzirQ6loCVfA==", + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/raw-body/-/raw-body-3.0.0.tgz", + "integrity": "sha512-RmkhL8CAyCRPXCE28MMH0z2PNWQBNk2Q09ZdxM9IOOXwxwZbN+qbWaatPkdkWIKL2ZVDImrN/pK5HTRz2PcS4g==", "dev": true, "requires": { "bytes": "3.1.2", "http-errors": "2.0.0", - "iconv-lite": "0.4.24", + "iconv-lite": "0.6.3", "unpipe": "1.0.0" + }, + "dependencies": { + "iconv-lite": { + "version": "0.6.3", + "resolved": "https://registry.npmjs.org/iconv-lite/-/iconv-lite-0.6.3.tgz", + "integrity": "sha512-4fCk79wshMdzMp2rH06qWrJE4iolqLhCUH+OiuIgU++RB0+94NlDL81atO7GX55uUKueo0txHNtvEyI6D7WdMw==", + "dev": true, + "requires": { + "safer-buffer": ">= 2.1.2 < 3.0.0" + } + } } }, "readable-stream": { @@ -4839,6 +5064,21 @@ "value-or-function": "^3.0.0" } }, + "router": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/router/-/router-2.0.0.tgz", + "integrity": "sha512-dIM5zVoG8xhC6rnSN8uoAgFARwTE7BQs8YwHEvK0VCmfxQXMaOuA1uiR1IPwsW7JyK5iTt7Od/TC9StasS2NPQ==", + "dev": true, + "requires": { + "array-flatten": "3.0.0", + "is-promise": "4.0.0", + "methods": "~1.1.2", + "parseurl": "~1.3.3", + "path-to-regexp": "^8.0.0", + "setprototypeof": "1.2.0", + "utils-merge": "1.0.1" + } + }, "safe-buffer": { "version": "5.2.1", "resolved": "https://registry.npmjs.org/safe-buffer/-/safe-buffer-5.2.1.tgz", @@ -4870,30 +5110,29 @@ } }, "send": { - "version": "0.19.0", - "resolved": "https://registry.npmjs.org/send/-/send-0.19.0.tgz", - "integrity": "sha512-dW41u5VfLXu8SJh5bwRmyYUbAoSB3c9uQh6L8h/KtsFREPWpbX1lrljJo186Jc4nmci/sGUZ9a0a0J2zgfq2hw==", + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/send/-/send-1.1.0.tgz", + "integrity": "sha512-v67WcEouB5GxbTWL/4NeToqcZiAWEq90N888fczVArY8A79J0L4FD7vj5hm3eUMua5EpoQ59wa/oovY6TLvRUA==", "dev": true, "requires": { - "debug": "2.6.9", - "depd": "2.0.0", - "destroy": "1.2.0", - "encodeurl": "~1.0.2", - "escape-html": "~1.0.3", - "etag": "~1.8.1", - "fresh": "0.5.2", - "http-errors": "2.0.0", - "mime": "1.6.0", - "ms": "2.1.3", - "on-finished": "2.4.1", - "range-parser": "~1.2.1", - "statuses": "2.0.1" - }, - "dependencies": { - "encodeurl": { - "version": "1.0.2", - "resolved": "https://registry.npmjs.org/encodeurl/-/encodeurl-1.0.2.tgz", - "integrity": "sha512-TPJXq8JqFaVYm2CWmPvnP2Iyo4ZSM7/QKcSmuMLDObfpH5fi7RUGmd/rTDf+rut/saiDiQEeVTNgAmJEdAOx0w==", + "debug": "^4.3.5", + "destroy": "^1.2.0", + "encodeurl": "^2.0.0", + "escape-html": "^1.0.3", + "etag": "^1.8.1", + "fresh": "^0.5.2", + "http-errors": "^2.0.0", + "mime-types": "^2.1.35", + "ms": "^2.1.3", + "on-finished": "^2.4.1", + "range-parser": "^1.2.1", + "statuses": "^2.0.1" + }, + "dependencies": { + "fresh": { + "version": "0.5.2", + "resolved": "https://registry.npmjs.org/fresh/-/fresh-0.5.2.tgz", + "integrity": "sha512-zJ2mQYM18rEFOudeV4GShTGIQ7RbzA7ozbU9I/XBpm7kqgMywgmylMwXHxZJmkVoYkna9d2pVXVXPdYTP9ej8Q==", "dev": true }, "ms": { @@ -4905,15 +5144,15 @@ } }, "serve-static": { - "version": "1.16.2", - "resolved": "https://registry.npmjs.org/serve-static/-/serve-static-1.16.2.tgz", - "integrity": "sha512-VqpjJZKadQB/PEbEwvFdO43Ax5dFBZ2UECszz8bQ7pi7wt//PWe1P6MN7eCnjsatYtBT6EuiClbjSWP2WrIoTw==", + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/serve-static/-/serve-static-2.1.0.tgz", + "integrity": "sha512-A3We5UfEjG8Z7VkDv6uItWw6HY2bBSBJT1KtVESn6EOoOr2jAxNhxWCLY3jDE2WcuHXByWju74ck3ZgLwL8xmA==", "dev": true, "requires": { - "encodeurl": "~2.0.0", - "escape-html": "~1.0.3", - "parseurl": "~1.3.3", - "send": "0.19.0" + "encodeurl": "^2.0.0", + "escape-html": "^1.0.3", + "parseurl": "^1.3.3", + "send": "^1.0.0" } }, "set-function-length": { @@ -5144,13 +5383,31 @@ } }, "type-is": { - "version": "1.6.18", - "resolved": "https://registry.npmjs.org/type-is/-/type-is-1.6.18.tgz", - "integrity": "sha512-TkRKr9sUTxEH8MdfuCSP7VizJyzRNMjj2J2do2Jr3Kym598JVdEksuzPQCnlFPW4ky9Q+iA+ma9BGm06XQBy8g==", + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/type-is/-/type-is-2.0.0.tgz", + "integrity": "sha512-gd0sGezQYCbWSbkZr75mln4YBidWUN60+devscpLF5mtRDUpiaTvKpBNrdaCvel1NdR2k6vclXybU5fBd2i+nw==", "dev": true, "requires": { - "media-typer": "0.3.0", - "mime-types": "~2.1.24" + "content-type": "^1.0.5", + "media-typer": "^1.1.0", + "mime-types": "^3.0.0" + }, + "dependencies": { + "mime-db": { + "version": "1.53.0", + "resolved": "https://registry.npmjs.org/mime-db/-/mime-db-1.53.0.tgz", + "integrity": "sha512-oHlN/w+3MQ3rba9rqFr6V/ypF10LSkdwUysQL7GkXoTgIWeV+tcXGA852TBxH+gsh8UWoyhR1hKcoMJTuWflpg==", + "dev": true + }, + "mime-types": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/mime-types/-/mime-types-3.0.0.tgz", + "integrity": "sha512-XqoSHeCGjVClAmoGFG3lVFqQFRIrTVw2OH3axRqAcfaw+gHWIfnASS92AV+Rl/mk0MupgZTRHQOjxY6YVnzK5w==", + "dev": true, + "requires": { + "mime-db": "^1.53.0" + } + } } }, "uglify-js": { diff --git a/package.json b/package.json index 2dcfe307..16f39e43 100644 --- a/package.json +++ b/package.json @@ -31,7 +31,7 @@ "@neo4j-documentation/remote-include": "^1.0.0" }, "devDependencies": { - "express": "^4.21.0", + "express": "^5.0.1", "nodemon": "^3.1.0" } } From e793a1f83b58793bf8e2aa95e4965ee937b2ef7d Mon Sep 17 00:00:00 2001 From: Reneta Popova Date: Tue, 22 Oct 2024 10:27:56 +0100 Subject: [PATCH 13/45] Fix the example of shortest path with an unbounded pattern (#193) [Trello card](https://trello.com/c/L4hfM5CH/529-the-status-notification-code-example-shows-query-with-error) --- .../pages/notifications/all-notifications.adoc | 16 ++++++++++++---- 1 file changed, 12 insertions(+), 4 deletions(-) diff --git a/modules/ROOT/pages/notifications/all-notifications.adoc b/modules/ROOT/pages/notifications/all-notifications.adoc index 9043f11b..19514198 100644 --- a/modules/ROOT/pages/notifications/all-notifications.adoc +++ b/modules/ROOT/pages/notifications/all-notifications.adoc @@ -151,7 +151,9 @@ Query:: + [source, cypher, role="noplay"] ---- -MATCH p=shortestPath((n)-[*]->(m)) RETURN p +MATCH p=shortestPath((n)-[*]->(m)) +WHERE n <> m +RETURN p ---- Description of the returned code:: @@ -164,7 +166,9 @@ Consider adding an upper limit. + [source, cypher, role="noplay"] ---- -MATCH p=shortestPath((n)-[*..8]->(m)) RETURN p +MATCH p=shortestPath((n)-[*..8]->(m)) +WHERE n <> m +RETURN p ---- ====== [.include-with-GQLSTATUS-code] @@ -174,7 +178,9 @@ Query:: + [source, cypher, role="noplay"] ---- -MATCH p=shortestPath((n)-[*]->(m)) RETURN p +MATCH p=shortestPath((n)-[*]->(m)) +WHERE n <> m +RETURN p ---- Returned GQLSTATUS code:: @@ -192,7 +198,9 @@ Consider adding an upper limit. + [source, cypher, role="noplay"] ---- -MATCH p=shortestPath((n)-[*..8]->(m)) RETURN p +MATCH p=shortestPath((n)-[*..8]->(m)) +WHERE n <> m +RETURN p ---- ====== ===== From 11ae1de8575abcd807d7487894d3e7eaebfb9dfd Mon Sep 17 00:00:00 2001 From: Reneta Popova Date: Tue, 22 Oct 2024 13:05:35 +0100 Subject: [PATCH 14/45] Notification param format (#192) I think we are not using backticks in a consistent way in the code. So, maybe we should reconsider their usage and leave them just for the docs. --- .../notifications/all-notifications.adoc | 128 +++++++++--------- 1 file changed, 64 insertions(+), 64 deletions(-) diff --git a/modules/ROOT/pages/notifications/all-notifications.adoc b/modules/ROOT/pages/notifications/all-notifications.adoc index 19514198..79586373 100644 --- a/modules/ROOT/pages/notifications/all-notifications.adoc +++ b/modules/ROOT/pages/notifications/all-notifications.adoc @@ -34,14 +34,14 @@ m|Neo.ClientNotification.Statement.CartesianProduct |Title a|This query builds a cartesian product between disconnected patterns. |Description -|If a part of a query contains multiple disconnected patterns, this will build a cartesian product between all those parts. This may produce a large amount of data and slow down query processing. While occasionally intended, it may often be possible to reformulate the query that avoids the use of this cross product, perhaps by adding a relationship between the different parts or by using OPTIONAL MATCH (%s) +|If a part of a query contains multiple disconnected patterns, this will build a cartesian product between all those parts. This may produce a large amount of data and slow down query processing. While occasionally intended, it may often be possible to reformulate the query that avoids the use of this cross product, perhaps by adding a relationship between the different parts or by using OPTIONAL MATCH (`%s`) |Category m|PERFORMANCE |GQLSTATUS code m|03N90 |Status description a|info: cartesian product. -The disconnected patterns `$pat` build a cartesian product. +The disconnected patterns `{ $pat }` build a cartesian product. A cartesian product may produce a large amount of data and slow down query processing. |Classification m|PERFORMANCE @@ -132,7 +132,7 @@ m|PERFORMANCE |GQLSTATUS code m|03N91 |Status description -a|info: unbounded variable length pattern. The provided pattern `$pat` is unbounded. +a|info: unbounded variable length pattern. The provided pattern `{ $pat }` is unbounded. Shortest path with an unbounded pattern may result in long execution times. Use an upper limit (e.g. `[*..5]`) on the number of node hops in your pattern. |Classification @@ -228,7 +228,7 @@ m|PERFORMANCE m|03N92 |Status description a|info: exhaustive shortest path. -The query runs with exhaustive shortest path due to the existential predicate(s) `$pred_list`. +The query runs with exhaustive shortest path due to the existential predicate(s) `{ $pred_list }`. It may be possible to use `WITH` to separate the `MATCH` from the existential predicate(s). |Classification m|PERFORMANCE @@ -321,7 +321,7 @@ m|03N93 |Status description a|info: no applicable index. `LOAD CSV` in combination with `MATCH` or `MERGE` on a label that does not have an index may result in long execution times. -Consider adding an index for label `$label`. +Consider adding an index for label `{ $label }`. |Classification m|PERFORMANCE |SeverityLevel @@ -491,14 +491,14 @@ m|Neo.ClientNotification.Statement.DynamicProperty |Title a|Queries using dynamic properties will use neither index seeks nor index scans for those properties |Description -|Using a dynamic property makes it impossible to use an index lookup for this query (%s) +|Using a dynamic property makes it impossible to use an index lookup for this query (`%s`) |Category m|PERFORMANCE |GQLSTATUS code m|03N95 |Status description a|info: dynamic property. -An index exists on label/type(s) `$label_list`. +An index exists on label/type(s) `{ $label_list }`. It is not possible to use indexes for dynamic properties. Consider using static properties. |Classification @@ -584,7 +584,7 @@ Using a dynamic property makes it impossible to use an index lookup for this que Suggestions for improvement:: Similar to dynamic node properties, use a constant value if possible, especially when there is an index on the relationship property. -For example, if `$prop` is equal to `since`, you can rewrite the query to: +For example, if `{ $prop }` is equal to `since`, you can rewrite the query to: + [source, cypher] ---- @@ -613,7 +613,7 @@ Consider using static properties. Suggestions for improvement:: Similar to dynamic node properties, use a constant value if possible, especially when there is an index on the relationship property. -For example, if `$prop` is equal to `since`, you can rewrite the query to: +For example, if `{ $prop }` is equal to `since`, you can rewrite the query to: + [source, cypher] ---- @@ -674,7 +674,7 @@ a|The database was unable to plan a hinted join. |Description |The hinted join was not planned. This could happen because no generated plan contained the join key, -please try using a different join key or restructure your query. (%s) +please try using a different join key or restructure your query. (`%s`) |Category m|HINT |GQLSTATUS code @@ -757,14 +757,14 @@ m|Neo.ClientNotification.Schema.HintedIndexNotFound |Title a|The request (directly or indirectly) referred to an index that does not exist. |Description -|The hinted index does not exist, please check the schema (%s) +|The hinted index does not exist, please check the schema (`%s`) |Category m|HINT |GQLSTATUS code m|01N31 |Status description a|warn: hinted index not found. -Unable to create a plan with `$index_descr` because the index does not exist. +Unable to create a plan with `{ $index_descr }` because the index does not exist. |Classification m|HINT |SeverityLevel @@ -888,14 +888,14 @@ m|Neo.ClientNotification.Database.HomeDatabaseNotFound a|The request referred to a home database that does not exist. |Description |The home database provided does not currently exist in the DBMS. -This command will not take effect until this database is created. (%s`) +This command will not take effect until this database is created. (`%s`) |Category m|UNRECOGNIZED |GQLSTATUS code m|00N50 |Status description a|note: successful completion - home database not found. -The database `$db` does not exist. +The database `{ $db }` does not exist. Verify that the spelling is correct or create the database for the command to take effect. |Classification m|UNRECOGNIZED @@ -958,14 +958,14 @@ m|Neo.ClientNotification.Statement.UnknownLabelWarning |Title a|The provided label is not in the database. |Description -|One of the labels in your query is not available in the database, make sure you didn't misspell it or that the label is available when you run this statement in your application (%s) +|One of the labels in your query is not available in the database, make sure you didn't misspell it or that the label is available when you run this statement in your application (`%s`) |Category m|UNRECOGNIZED |GQLSTATUS code m|01N50 |Status description a|warn: unknown label. -The label `$label` does not exist. +The label `{ $label }` does not exist. Verify that the spelling is correct. |Classification m|UNRECOGNIZED @@ -1030,14 +1030,14 @@ m|Neo.ClientNotification.Statement.UnknownRelationshipTypeWarning a|The provided relationship type is not in the database. |Description |One of the relationship types in your query is not available in the database, -make sure you didn't misspell it or that the label is available when you run this statement in your application (%s) +make sure you didn't misspell it or that the label is available when you run this statement in your application (`%s`) |Category m|UNRECOGNIZED |GQLSTATUS code m|01N51 |Status description a|warn: unknown relationship type. -The relationship type `$reltype` does not exist. +The relationship type `{ $reltype }` does not exist. Verify that the spelling is correct. |Classification m|UNRECOGNIZED @@ -1101,14 +1101,14 @@ m|Neo.ClientNotification.Statement.UnknownPropertyKeyWarning a|The provided property key is not in the database |Description |One of the property names in your query is not available in the database, -make sure you didn't misspell it or that the label is available when you run this statement in your application (%s) +make sure you didn't misspell it or that the label is available when you run this statement in your application (`%s`) |Category m|UNRECOGNIZED |GQLSTATUS code m|01N52 |Status description a|warn: unknown property key. -The property `$propkey` does not exist. +The property `{ $propkey }` does not exist. Verify that the spelling is correct. |Classification m|UNRECOGNIZED @@ -1234,15 +1234,15 @@ m|Neo.ClientNotification.Statement.RuntimeUnsupportedWarning a|This query is not supported by the chosen runtime. |Description |Selected runtime is unsupported for this query, please use a different runtime instead or fallback to default. -(%s) +(`%s`) |Category m|UNSUPPORTED |GQLSTATUS code m|01N40 |Status description a|warn: unsupported runtime. -The query cannot be executed with `$preparser_input1`, `$preparser_input2` is used. -Cause: `$msg`. +The query cannot be executed with `{ $preparser_input1 }`, `{ $preparser_input2 }` is used. +Cause: `{ $msg }`. |Classification m|UNSUPPORTED |SeverityLevel @@ -1319,7 +1319,7 @@ m|Neo.ClientNotification.Statement.RuntimeExperimental |Title a|This feature is experimental and should not be used in production systems. |Description -|You are using an experimental feature (%s) +|You are using an experimental feature (`%s`) |Category m|UNSUPPORTED |SeverityLevel @@ -1365,10 +1365,10 @@ m|Neo.ClientNotification.Statement.FeatureDeprecationWarning a|This feature is deprecated and will be removed in future versions. |Descriptions a| -- The procedure has a deprecated field. (%s) -- The function has a deprecated field. (%s) -- Creating an entity (%s) and referencing that entity in a property definition in the same CREATE is deprecated. -- Merging an entity (%s) and referencing that entity in a property definition in the same MERGE is deprecated. +- The procedure has a deprecated field. (`%s`) +- The function has a deprecated field. (`%s`) +- Creating an entity (`%s`) and referencing that entity in a property definition in the same CREATE is deprecated. +- Merging an entity (`%s`) and referencing that entity in a property definition in the same MERGE is deprecated. - The Unicode character `%s` is deprecated for unescaped identifiers and will be considered as a whitespace character in the future. To continue using it, escape the identifier by adding backticks around the identifier `%s`. - The character with the Unicode representation `%s` is deprecated for unescaped identifiers and will not be supported in the future. @@ -1376,7 +1376,7 @@ To continue using it, escape the identifier by adding backticks around the ident - All subqueries in a UNION [ALL] should have the same ordering for the return columns. Using differently ordered return items in a UNION [ALL] clause is deprecated and will be removed in a future version. - Databases and aliases with unescaped `.` are deprecated unless to indicate that they belong to a composite database. -Names containing `.` should be escaped. (%s) +Names containing `.` should be escaped. (`%s`) |Category m|DEPRECATION |GQLSTATUS code @@ -1548,14 +1548,14 @@ m|Neo.ClientNotification.Statement.FeatureDeprecationWarning a|This feature is deprecated and will be removed in future versions. |Descriptions a| -- The semantics of using colon in the separation of alternative relationship types will change in a future version. (%s) +- The semantics of using colon in the separation of alternative relationship types will change in a future version. (`%s`) - The use of nodes or relationships for setting properties is deprecated and will be removed in a future version. Please use properties() instead. - The use of shortestPath and allShortestPaths with fixed length relationships is deprecated and will be removed in a future version. Please use a path with a length of 1 [r*1..1] instead or a Match with a limit. -- The query used a deprecated function. (%s) -- The query used a deprecated procedure. (%s) -- The query used a deprecated runtime option. (%s) +- The query used a deprecated function. (`%s`) +- The query used a deprecated procedure. (`%s`) +- The query used a deprecated runtime option. (`%s`) - The `TextIndexProvider.DESCRIPTOR.name()` provider for text indexes is deprecated and will be removed in a future version. Please use `TrigramIndexProvider.DESCRIPTOR.name()` instead. |Category @@ -1564,8 +1564,8 @@ m|DEPRECATION m|01N01 |Status description a|warn: feature deprecated with replacement. -`$thing1` is deprecated. -It is replaced by `$thing2`. +`{ $thing1 }` is deprecated. +It is replaced by `{ $thing2 }`. |Classification m|DEPRECATION |SeverityLevel @@ -2044,7 +2044,7 @@ m|DEPRECATION m|01N02 |Status description a|warn: feature deprecated without replacement. -`$thing` is deprecated and will be removed without a replacement. +`{ $thing }` is deprecated and will be removed without a replacement. |Classification m|DEPRECATION |SeverityLevel @@ -2097,14 +2097,14 @@ m|Neo.ClientNotification.Statement.FeatureDeprecationWarning |Title a|This feature is deprecated and will be removed in future versions. |Description -a|The query used a deprecated field from a procedure. (%s) +a|The query used a deprecated field from a procedure. (`%s`) |Category m|DEPRECATION |GQLSTATUS code m|01N03 |Status description a|warn: procedure field deprecated. -`$field` for procedure `$proc` is deprecated. +`{ $field }` for procedure `{ $proc }` is deprecated. |Classification m|DEPRECATION |SeverityLevel @@ -2122,15 +2122,15 @@ m|Neo.ClientNotification.Request.DeprecatedFormat |Title a|The client made a request for a format which has been deprecated. |Description -|The requested format has been deprecated. (%s) +|The requested format has been deprecated. (`%s`) |Category m|DEPRECATION |GQLSTATUS code m|01N01 |Status description a|warn: feature deprecated with replacement. -`$thing1` is deprecated. -It is replaced by `$thing2`. +`{ $thing1 }` is deprecated. +It is replaced by `{ $thing2 }`. |Classification m|DEPRECATION |SeverityLevel @@ -2163,7 +2163,7 @@ m|SECURITY m|00N71 |Status description |note: successful completion - role or privilege not assigned. -`$cmd` has no effect. +`{ $cmd }` has no effect. The role or privilege is not assigned. |Classification m|SECURITY @@ -2283,7 +2283,7 @@ m|SECURITY m|00N70 |Status description |note: successful completion - role or privilege already assigned. -`$cmd` has no effect. +`{ $cmd }` has no effect. The role or privilege is already assigned. |Classification m|SECURITY @@ -2800,8 +2800,8 @@ m|Neo.ClientNotification.Security.AuthProviderNotDefined |Title a|The auth provider is not defined. |Description -a|The auth provider `$provider` is not defined in the configuration. -Verify that the spelling is correct or define `$provider` in the configuration. +a|The auth provider `{ $provider }` is not defined in the configuration. +Verify that the spelling is correct or define `{ $provider }` in the configuration. |Category m|SECURITY |GQLSTATUS code @@ -3036,7 +3036,7 @@ m|00N80 |Status description a|note: successful completion - server already enabled. `ENABLE SERVER` has no effect. -Server `$server` is already enabled. +Server `{ $server }` is already enabled. Verify that this is the intended server. |Classification m|TOPOLOGY @@ -3102,7 +3102,7 @@ m|00N81 |Status description a|note: successful completion - server already cordoned. `CORDON SERVER` has no effect. -Server `$server` is already cordoned. +Server `{ $server }` is already cordoned. Verify that this is the intended server. |Classification m|TOPOLOGY @@ -3251,7 +3251,7 @@ m|00N83 |Status description a|note: successful completion - cordoned servers existed during allocation. Cordoned servers existed when making an allocation decision. -Server(s) `$server_list` are cordoned. +Server(s) `{ $server_list }` are cordoned. This can impact allocation decisions. |Classification m|TOPOLOGY @@ -3392,8 +3392,8 @@ m|SCHEMA m|00NA0 |Status description a|note: successful completion - index or constraint already exists. -`$cmd` has no effect. -`$index_constr_pat` already exists. +`{ $cmd }` has no effect. +`{ $index_constr_pat }` already exists. |SeverityLevel m|INFORMATION |=== @@ -3623,8 +3623,8 @@ m|SCHEMA m|00NA1 |Status description a|note: successful completion - index or constraint does not exist. -`$cmd` has no effect. -`$index_constr_name` does not exist. +`{ $cmd }` has no effect. +`{ $index_constr_name }` does not exist. |SeverityLevel m|INFORMATION |=== @@ -3738,14 +3738,14 @@ m|Neo.ClientNotification.Statement.SubqueryVariableShadowing a|Variable in subquery is shadowing a variable with the same name from the outer scope. |Description |Variable in subquery is shadowing a variable with the same name from the outer scope. -If you want to use that variable instead, it must be imported into the subquery using importing WITH clause. (%s) +If you want to use that variable instead, it must be imported into the subquery using importing WITH clause. (`%s`) |Category m|GENERIC |GQLSTATUS code m|03N60 |Status description a|info: subquery variable shadowing. -The variable `$var` in the subquery uses the same name as a variable from the outer query. +The variable `{ $var }` in the subquery uses the same name as a variable from the outer query. Use `WITH $var` in the subquery to import the one from the outer scope unless you want it to be a new variable. |Classification m|GENERIC @@ -3995,14 +3995,14 @@ m|Neo.ClientNotification.Statement.ParameterNotProvided a|The statement refers to a parameter that was not provided in the request. |Description |Did not supply query with enough parameters. -The produced query plan will not be cached and is not executable without EXPLAIN. (%s) +The produced query plan will not be cached and is not executable without EXPLAIN. (`%s`) |Category m|GENERIC |GQLSTATUS code m|01N60 |Status description a|warn: parameter missing. -The query plan cannot be cached and is not executable without `EXPLAIN` due to the undefined parameter(s) `$param_list`. +The query plan cannot be cached and is not executable without `EXPLAIN` due to the undefined parameter(s) `{ $param_list }`. Provide the parameter(s). |Classification m|GENERIC @@ -4047,7 +4047,7 @@ Returned GQLSTATUS code:: Returned status description:: warn: parameter missing. -The query plan cannot be cached and is not executable without `EXPLAIN` due to the undefined parameter(s) `$param`. +The query plan cannot be cached and is not executable without `EXPLAIN` due to the undefined parameter(s) `{ $param }`. Provide the parameter(s). Suggestions for improvement:: @@ -4067,14 +4067,14 @@ m|Neo.ClientNotification.Procedure.ProcedureWarning |Title a|The query used a procedure that generated a warning. |Description -|The query used a procedure that generated a warning. (%s) +|The query used a procedure that generated a warning. (`%s`) |Category m|GENERIC |GQLSTATUS code m|01N62 |Status description a|warn: procedure execution warning. -The procedure `$proc` generates the warning `$msg`. +The procedure `{ $proc }` generates the warning `{ $msg }`. |Classification m|GENERIC |SeverityLevel @@ -4096,14 +4096,14 @@ m|Neo.ClientNotification.Statement.UnsatisfiableRelationshipTypeExpression |Title a|The query contains a relationship type expression that cannot be satisfied. |Description -|Relationship type expression cannot possibly be satisfied. (%s) +|Relationship type expression cannot possibly be satisfied. (`%s`) |Category m|GENERIC |GQLSTATUS code m|01N61 |Status description a|warn: unsatisfiable relationship type expression. -The expression `$label_expr` cannot be satisfied because relationships must have exactly one type. +The expression `{ $label_expr }` cannot be satisfied because relationships must have exactly one type. |Classification m|GENERIC |SeverityLevel @@ -4156,15 +4156,15 @@ m|Neo.ClientNotification.Statement.RepeatedRelationshipReference a|The query returns no results because a relationship variable is bound more than once. |Description a| -- A relationship is referenced more than once in the query, which leads to no results because relationships must not occur more than once in each result. (%s) -- A variable-length relationship variable is bound more than once, which leads to no results because relationships must not occur more than once in each result. (%s) +- A relationship is referenced more than once in the query, which leads to no results because relationships must not occur more than once in each result. (`%s`) +- A variable-length relationship variable is bound more than once, which leads to no results because relationships must not occur more than once in each result. (`%s`) |Category m|GENERIC |GQLSTATUS code m|01N63 |Status description a| -warn: repeated relationship reference. `$var` is repeated in `$pat`, which leads to no results. +warn: repeated relationship reference. `{ $var }` is repeated in `{ $pat }`, which leads to no results. |Classification m|GENERIC |SeverityLevel From 19d65c0104dfca83c9bfa45769dce70caf96cc39 Mon Sep 17 00:00:00 2001 From: Reneta Popova Date: Thu, 31 Oct 2024 12:17:36 +0000 Subject: [PATCH 15/45] remove a merge conflict leftover (#207) --- modules/ROOT/pages/notifications/index.adoc | 6 ------ 1 file changed, 6 deletions(-) diff --git a/modules/ROOT/pages/notifications/index.adoc b/modules/ROOT/pages/notifications/index.adoc index bb5ac24c..a70e0392 100644 --- a/modules/ROOT/pages/notifications/index.adoc +++ b/modules/ROOT/pages/notifications/index.adoc @@ -306,9 +306,3 @@ Finally, the list of poly-filled GQL-status objects is sorted according to the G // The following table illustrates the compatibility between the different server and driver versions for both the current Notification API and the GqlStatusObject API: // TODO - - - - - ->>>>>>> gql-notifications From cdf5fd33a1a2d2bcd48c2527ab797d76b7c85d95 Mon Sep 17 00:00:00 2001 From: Reneta Popova Date: Thu, 31 Oct 2024 14:17:54 +0000 Subject: [PATCH 16/45] Update preview version to 5.26 (#208) --- antora.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/antora.yml b/antora.yml index 9721d811..adc29f5f 100644 --- a/antora.yml +++ b/antora.yml @@ -7,6 +7,6 @@ nav: asciidoc: attributes: page-origin-private: false - neo4j-version: '5.25' - neo4j-version-exact: '5.25.0' - neo4j-buildnumber: '5.25' \ No newline at end of file + neo4j-version: '5.26' + neo4j-version-exact: '5.26.0' + neo4j-buildnumber: '5.26' \ No newline at end of file From 9d97cf163f0d862aaaf8cbb2f64d2d4a1bc8bcac Mon Sep 17 00:00:00 2001 From: Hannes Voigt <30618026+hvub@users.noreply.github.com> Date: Thu, 31 Oct 2024 15:18:18 +0100 Subject: [PATCH 17/45] cip-190 deprecations (#202) Deprecation message related to - https://github.com/neo-technology/neo4j/pull/27564 - https://github.com/neo4j/docs-cypher/pull/1084 - cf. [CIP-190](https://docs.google.com/document/d/1AONjI-SpSEla-bHPJ6ghXBfF9alN5mGiOHOTEyfBtRc/edit) --------- Co-authored-by: Reneta Popova --- .../notifications/all-notifications.adoc | 578 ++++++++++++++++++ 1 file changed, 578 insertions(+) diff --git a/modules/ROOT/pages/notifications/all-notifications.adoc b/modules/ROOT/pages/notifications/all-notifications.adoc index 79586373..f7c0a2f2 100644 --- a/modules/ROOT/pages/notifications/all-notifications.adoc +++ b/modules/ROOT/pages/notifications/all-notifications.adoc @@ -2021,6 +2021,584 @@ warn: feature deprecated without replacement. ====== ===== +.Using an unescaped variable named 'where' in a node pattern +[.tabbed-example] +===== +[.include-with-neo4j-code] +====== + +Query:: ++ +[source,cypher] +---- +MATCH (where {p: 5}) +RETURN where +---- + +Description of the returned code:: +'(where {p: 5})' is deprecated. It is replaced by '(++`where`++ {p: 5})'. + +Suggestions for improvement:: +To continue using variables with this name, use backticks to escape the variable name: ++ +[source,cypher] +---- +MATCH (`where` {p: 5}) +RETURN `where`.p +---- +====== + +[.include-with-GQLSTATUS-deprecated-with-replacement] +====== +Query:: ++ +[source,cypher] +---- +MATCH (where {p: 5}) +RETURN where +---- + +Returned GQLSTATUS code:: +01N01 + +Returned status description:: +warn: feature deprecated with replacement. +`(where {p: 5})` is deprecated. +It is replaced by `(++`where`++ {p: 5})`. + +Suggestions for improvement:: +To continue using variables with this name, use backticks to escape the variable name: ++ +[source,cypher] +---- +MATCH (`where` {p: 5}) +RETURN `where`.p +---- +====== +===== + +.Using an unescaped variable named 'where' in a relationship pattern +[.tabbed-example] +===== +[.include-with-neo4j-code] +====== +Query:: ++ +[source,cypher] +---- +MATCH ()-[where {p: 5}]->() +RETURN where +---- + +Description of the returned code:: +'-[where {p: 5}]-' is deprecated. It is replaced by '-[++`where`++ {p: 5}]-'. + +Suggestions for improvement:: +To continue using variables with this name, use backticks to escape the variable name: ++ +[source,cypher] +---- +MATCH ()-[`where` {p: 5}]->() +RETURN `where`.p +---- +====== + +[.include-with-GQLSTATUS-deprecated-with-replacement] +====== +Query:: ++ +[source,cypher] +---- +MATCH ()-[where {p: 5}]->() +RETURN where +---- + +Returned GQLSTATUS code:: +01N01 + +Returned status description:: +warn: feature deprecated with replacement. +`-[where {p: 5}]-` is deprecated. +It is replaced by `-[++`where`++ {p: 5}]-`. + +Suggestions for improvement:: +To continue using variables with this name, use backticks to escape the variable name: ++ +[source,cypher] +---- +MATCH ()-[`where` {p: 5}]->() +RETURN `where`.p +---- +====== +===== + +.Using an unparenthesized label expression predicate as the right-hand side operand of `+` +[.tabbed-example] +===== +[.include-with-neo4j-code] +====== +Query:: ++ +[source,cypher] +---- +MATCH (n)-[r]->(m) +WITH m, n.truthCodes AS listOfBooleans +RETURN listOfBooleans + m:A +---- + +Description of the returned code:: +'... + m:A' is deprecated. It is replaced by '... + (m:A)'. + +Suggestions for improvement:: +Parenthesize the label expression predicate on the right-hand side of `+`: ++ +[source,cypher] +---- +MATCH (n)-[r]->(m) +WITH m, n.truthCodes AS listOfBooleans +RETURN listOfBooleans + (m:A) +---- +====== + +[.include-with-GQLSTATUS-deprecated-with-replacement] +====== +Query:: ++ +[source,cypher] +---- +MATCH (n)-[r]->(m) +WITH m, n.truthCodes AS listOfBooleans +RETURN listOfBooleans + m:A +---- + +Returned GQLSTATUS code:: +01N01 + +Returned status description:: +warn: feature deprecated with replacement. +`... + m:A` is deprecated. +It is replaced by `... + (m:A)`. + +Suggestions for improvement:: +Parenthesize the label expression predicate on the right-hand side of `+`: ++ +[source,cypher] +---- +MATCH (n)-[r]->(m) +WITH m, n.truthCodes AS listOfBooleans +RETURN listOfBooleans + (m:A) +---- +====== +===== + +.Using an unparenthesized label expression predicate as the right-hand side operand of `+` +[.tabbed-example] +===== +[.include-with-neo4j-code] +====== +Query:: ++ +[source,cypher] +---- +MATCH (n)-[r]->(m) +WITH r, n.truthCodes AS listOfBooleans +RETURN listOfBooleans + r:C|D +---- + +Description of the returned code:: +'... + r:C|D' is deprecated. It is replaced by '... + (r:C|D)'. + +Suggestions for improvement:: +Parenthesize the label expression predicate on the right-hand side of `+`: ++ +[source,cypher] +---- +MATCH (n)-[r]->(m) +WITH r, n.truthCodes AS listOfBooleans +RETURN listOfBooleans + (r:C|D) +---- +====== + +[.include-with-GQLSTATUS-deprecated-with-replacement] +====== +Query:: ++ +[source,cypher] +---- +MATCH (n)-[r]->(m) +WITH r, n.truthCodes AS listOfBooleans +RETURN listOfBooleans + r:C|D +---- + +Returned GQLSTATUS code:: +01N01 + +Returned status description:: +warn: feature deprecated with replacement. +`... + r:C|D` is deprecated. +It is replaced by `... + (r:C|D)`. + +Suggestions for improvement:: +Parenthesize the label expression predicate on the right-hand side of `+`: ++ +[source,cypher] +---- +MATCH (n)-[r]->(m) +WITH r, n.truthCodes AS listOfBooleans +RETURN listOfBooleans + (r:C|D) +---- +====== +===== + +.Using an unescaped variable named `is` as a `WHEN` operand in a simple `CASE` expression +[.tabbed-example] +===== +[.include-with-neo4j-code] +====== +Query:: ++ +[source,cypher] +---- +MATCH (n) +WITH n, n.internationalStandard AS is +RETURN CASE n + WHEN is :: INTEGER THEN "ISO/IEC" + is + ELSE is +END AS standardsName +---- + +Description of the returned code:: +'WHEN is :: INTEGER' is deprecated. It is replaced by 'WHEN ++`is`++ :: INTEGER'. + +Suggestions for improvement:: +To continue using variables with this name in simple `CASE` expressions, use backticks to escape the variable name: ++ +[source,cypher] +---- +MATCH (n) +WITH n, n.internationalStandard AS `is` +RETURN CASE n + WHEN `is` :: INTEGER THEN "ISO/IEC" + `is` + ELSE `is` +END AS standardsName +---- +====== +[.include-with-GQLSTATUS-deprecated-with-replacement] +====== +Query:: ++ +[source,cypher] +---- +MATCH (n) +WITH n, n.internationalStandard AS is +RETURN CASE n + WHEN is :: INTEGER THEN "ISO/IEC" + is + ELSE is +END AS standardsName +---- + +Returned GQLSTATUS code:: +01N01 + +Returned status description:: +warn: feature deprecated with replacement. +`WHEN is pass:[::] INTEGER` is deprecated. +It is replaced by `WHEN ++`is`++ pass:[::] INTEGER`. + +Suggestions for improvement:: +To continue using variables with this name in simple `CASE` expressions, use backticks to escape the variable name: ++ +[source,cypher] +---- +MATCH (n) +WITH n, n.internationalStandard AS `is` +RETURN CASE n + WHEN `is` :: INTEGER THEN "ISO/IEC" + `is` + ELSE `is` +END AS standardsName +---- +====== +===== + +.Using an unescaped variable named `contains` in addition operations within a `WHEN` operand in a simple `CASE` expression +[.tabbed-example] +===== +[.include-with-neo4j-code] +====== +Query:: ++ +[source,cypher] +---- +MATCH p = (:A)-[:HAS]->(:B) +WITH p, size(relationships(p)) AS contains +RETURN CASE size(nodes(p)) + WHEN contains + 1 THEN "okay" + ELSE "not okay" +END AS check +---- + +Description of the returned code:: +'WHEN contains + 1 INTEGER' is deprecated. It is replaced by 'WHEN ++`contains`++ + 1 INTEGER'. + +Suggestions for improvement:: +To continue using variables with this name in simple `CASE` expressions, use backticks to escape the variable name: ++ +[source,cypher] +---- +MATCH p = (:A)-[:HAS]->(:B) +WITH p, size(relationships(p)) AS `contains` +RETURN CASE size(nodes(p)) + WHEN `contains` + 1 THEN "okay" + ELSE "not okay" +END AS check +---- +====== +[.include-with-GQLSTATUS-deprecated-with-replacement] +====== +Query:: ++ +[source,cypher] +---- +MATCH p = (:A)-[:HAS]->(:B) +WITH p, size(relationships(p)) AS contains +RETURN CASE size(nodes(p)) + WHEN contains + 1 THEN "okay" + ELSE "not okay" +END AS check +---- + +Returned GQLSTATUS code:: +01N01 + +Returned status description:: +warn: feature deprecated with replacement. +`WHEN contains + 1 INTEGER` is deprecated. +It is replaced by `WHEN ++`contains`++ + 1 INTEGER`. + +Suggestions for improvement:: +To continue using variables with this name in simple `CASE` expressions, use backticks to escape the variable name: ++ +[source,cypher] +---- +MATCH p = (:A)-[:HAS]->(:B) +WITH p, size(relationships(p)) AS `contains` +RETURN CASE size(nodes(p)) + WHEN `contains` + 1 THEN "okay" + ELSE "not okay" +END AS check +---- +====== +===== + +.Using an unescaped variable named `contains` in subtraction operations within a `WHEN` operand in a simple `CASE` expression +[.tabbed-example] +===== +[.include-with-neo4j-code] +====== +Query:: ++ +[source,cypher] +---- +MATCH p = (:A)-[:HAS]->(:B) +WITH p, size(nodes(p)) AS contains +RETURN CASE size(relationships(p)) + WHEN contains - 1 THEN "okay" + ELSE "not okay" +END AS check +---- + +Description of the returned code:: + +'WHEN contains - 1 INTEGER' is deprecated. It is replaced by 'WHEN ++`contains`++ - 1 INTEGER'. + +Suggestions for improvement:: +To continue using variables with this name in simple `CASE` expressions, use backticks to escape the variable name: ++ +[source,cypher] +---- +MATCH p = (:A)-[:HAS]->(:B) +WITH p, size(nodes(p)) AS `contains` +RETURN CASE size(relationships(p)) + WHEN `contains` - 1 THEN "okay" + ELSE "not okay" +END AS check +---- +====== +[.include-with-GQLSTATUS-deprecated-with-replacement] +====== +Query:: ++ +[source,cypher] +---- +MATCH p = (:A)-[:HAS]->(:B) +WITH p, size(nodes(p)) AS contains +RETURN CASE size(relationships(p)) + WHEN contains - 1 THEN "okay" + ELSE "not okay" +END AS check +---- + +Returned GQLSTATUS code:: +01N01 + +Returned status description:: +warn: feature deprecated with replacement. +`WHEN contains - 1 INTEGER` is deprecated. +It is replaced by `WHEN ++`contains`++ - 1 INTEGER`. + +Suggestions for improvement:: +To continue using variables with this name in simple `CASE` expressions, use backticks to escape the variable name: ++ +[source,cypher] +---- +MATCH p = (:A)-[:HAS]->(:B) +WITH p, size(nodes(p)) AS `contains` +RETURN CASE size(relationships(p)) + WHEN `contains` - 1 THEN "okay" + ELSE "not okay" +END AS check +---- +====== +===== + +.Using the `[]` operator on an unescaped variable named `in` within a `WHEN` operand in a simple `CASE` expression +[.tabbed-example] +===== +[.include-with-neo4j-code] +====== +Query:: ++ +[source,cypher] +---- +MATCH (c:Client)-[:MAKES]->(t:Transaction) +WITH t, c.ibanNumbers AS in +RETURN CASE t.ibanNumber + WHEN in[0] THEN "used main account" + ELSE "used different account" +END AS check +---- + +Description of the returned code:: + +'WHEN in[0] INTEGER' is deprecated. It is replaced by 'WHEN ++`in`++[0] INTEGER'. + +Suggestions for improvement:: +To continue using variables with this name in simple `CASE` expressions, use backticks to escape the variable name: ++ +[source,cypher] +---- +MATCH (c:Client)-[:MAKES]->(t:Transaction) +WITH t, c.ibanNumbers AS `in` +RETURN CASE t.ibanNumber + WHEN `in`[0] THEN "used main account" + ELSE "used different account" +END AS check +---- +====== +[.include-with-GQLSTATUS-deprecated-with-replacement] +====== +Query:: ++ +[source,cypher] +---- +MATCH (c:Client)-[:MAKES]->(t:Transaction) +WITH t, c.ibanNumbers AS in +RETURN CASE t.ibanNumber + WHEN in[0] THEN "used main account" + ELSE "used different account" +END AS check +---- + +Returned GQLSTATUS code:: +01N01 + +Returned status description:: +warn: feature deprecated with replacement. +`WHEN in[0] INTEGER` is deprecated. +It is replaced by `WHEN ++`in`++[0] INTEGER`. + +Suggestions for improvement:: +To continue using variables with this name in simple `CASE` expressions, use backticks to escape the variable name: ++ +[source,cypher] +---- +MATCH (c:Client)-[:MAKES]->(t:Transaction) +WITH t, c.ibanNumbers AS `in` +RETURN CASE t.ibanNumber + WHEN `in`[0] THEN "used main account" + ELSE "used different account" +END AS check +---- +====== +===== + +.Using the `[]` operator on an unescaped variable named `in` within a `WHEN` operand in a simple `CASE` expression +[.tabbed-example] +===== +[.include-with-neo4j-code] +====== +Query:: ++ +[source,cypher] +---- +MATCH (in:Client)-[:MAKES]->(t:Transaction) +RETURN CASE t.ibanNumber + WHEN in["mainAccount"] THEN "used main account" + ELSE "used different account" +END AS check +---- + +Description of the returned code:: + +'WHEN in["mainAccount"] INTEGER' is deprecated. It is replaced by 'WHEN ++`in`++["mainAccount"] INTEGER'. + +Suggestions for improvement:: +To continue using variables with this name in simple `CASE` expressions, use backticks to escape the variable name: ++ +[source,cypher] +---- +MATCH (in:Client)-[:MAKES]->(t:Transaction) +RETURN CASE t.ibanNumber + WHEN `in`["mainAccount"] THEN "used main account" + ELSE "used different account" +END AS check +---- +====== +[.include-with-GQLSTATUS-deprecated-with-replacement] +====== +Query:: ++ +[source,cypher] +---- +MATCH (in:Client)-[:MAKES]->(t:Transaction) +RETURN CASE t.ibanNumber + WHEN in["mainAccount"] THEN "used main account" + ELSE "used different account" +END AS check +---- + +Returned GQLSTATUS code:: +01N01 + +Returned status description:: +warn: feature deprecated with replacement. +`WHEN in["mainAccount"] INTEGER` is deprecated. +It is replaced by `WHEN ++`in`++["mainAccount"] INTEGER`. + +Suggestions for improvement:: +To continue using variables with this name in simple `CASE` expressions, use backticks to escape the variable name: ++ +[source,cypher] +---- +MATCH (in:Client)-[:MAKES]->(t:Transaction) +RETURN CASE t.ibanNumber + WHEN `in`["mainAccount"] THEN "used main account" + ELSE "used different account" +END AS check +---- +====== +===== + [#_deprecated-notifications-without-replacement] === Deprecated features without a future replacement From e03940bb90f5ffa070bb8545a5c819d2f001cd74 Mon Sep 17 00:00:00 2001 From: NataliaIvakina <82437520+NataliaIvakina@users.noreply.github.com> Date: Wed, 2 Oct 2024 14:17:19 +0200 Subject: [PATCH 18/45] Modify the github workflows files to add the preview (#184) --- .github/workflows/docs-pr-checks.yml | 1 + .github/workflows/docs-teardown.yml | 1 + 2 files changed, 2 insertions(+) diff --git a/.github/workflows/docs-pr-checks.yml b/.github/workflows/docs-pr-checks.yml index d1eba0ee..83f5eb07 100644 --- a/.github/workflows/docs-pr-checks.yml +++ b/.github/workflows/docs-pr-checks.yml @@ -7,6 +7,7 @@ on: - "dev" - "5.x" - "4.[0-9]" + - "gqlstatus-errors" jobs: diff --git a/.github/workflows/docs-teardown.yml b/.github/workflows/docs-teardown.yml index 6b9ed36f..47d24a3a 100644 --- a/.github/workflows/docs-teardown.yml +++ b/.github/workflows/docs-teardown.yml @@ -7,6 +7,7 @@ on: - "dev" - "5.x" - "4.[0-9]" + - "gqlstatus-errors" types: - closed From 773b7416367971c70e720a4bc8047be47821236d Mon Sep 17 00:00:00 2001 From: Reneta Popova Date: Tue, 15 Oct 2024 13:19:42 +0100 Subject: [PATCH 19/45] Add connection exception errors (#183) Co-authored-by: Louise Berglund --- modules/ROOT/content-nav.adoc | 1 + modules/ROOT/pages/errors/gql-errors.adoc | 100 +++++++++++++++++++ modules/ROOT/pages/errors/index.adoc | 103 +++++++++++++++++--- modules/ROOT/pages/index.adoc | 10 +- modules/ROOT/pages/notifications/index.adoc | 19 ++++ 5 files changed, 214 insertions(+), 19 deletions(-) create mode 100644 modules/ROOT/pages/errors/gql-errors.adoc diff --git a/modules/ROOT/content-nav.adoc b/modules/ROOT/content-nav.adoc index 37f18944..0f0c9656 100644 --- a/modules/ROOT/content-nav.adoc +++ b/modules/ROOT/content-nav.adoc @@ -1,6 +1,7 @@ * xref:index.adoc[] * xref:errors/index.adoc[] ** xref:errors/all-errors.adoc[] +** xref:errors/gql-errors.adoc[] * xref:notifications/index.adoc[] ** xref:notifications/all-notifications.adoc[] * xref:changelogs.adoc[] diff --git a/modules/ROOT/pages/errors/gql-errors.adoc b/modules/ROOT/pages/errors/gql-errors.adoc new file mode 100644 index 00000000..7b270fc4 --- /dev/null +++ b/modules/ROOT/pages/errors/gql-errors.adoc @@ -0,0 +1,100 @@ +:description: This section describes the GQLSTATUS errors that Neo4j can return, grouped by category, and an example of when they can occur. + +[[neo4j-gqlstatus-errors]] += List of all GQLSTATUS server error codes + +//The following page provides an overview of all server errors in Neo4j, along with some scenarios and their possible solutions. +The following page provides an overview of all GQLSTATUS server error codes in Neo4j. +All errors in Neo4j have severity level `ERROR`. + +* <<_connection-exceptions, Connection exceptions>> + + +[[_connection-exceptions]] +== Connection exceptions + +Connection exceptions occur when the client is unable to connect to the server for various reasons such as network issues, server-side routing being disabled, or the database being unavailable, etc. + +=== 08000 + +Status description:: error: connection exception + +=== 08007 + +Status description:: error: connection exception - transaction resolution unknown + +=== 08N00 + +Status description:: error: connection exception - unable to connect to database. Unable to connect to database { $db }. Unable to get bolt address of the leader. Check the status of the database. Retrying your request at a later time may succeed. + + +=== 08N01 + +Status description:: error: connection exception - unable to write to database. Unable to write to database { $db } on this server. Server-side routing is disabled. Either connect to the database leader directly or enable server-side routing by setting '{ $cfgSetting }=true'. + +//Possible solutions: +//Either connect to the database directly using the driver or interactively with the `:use { $db }` command), or enable server-side routing by setting `dbms.routing.enabled=true` in the configuration. + +=== 08N02 + +Status description:: error: connection exception - unable to connect to database. Unable to connect to database { $db }. Server-side routing is disabled. Either connect to { $db } directly, or enable server-side routing by setting '{ $cfgSetting }=true'. + +Example error description:: error: connection exception - unable to route to database. Unable to connect to database `my_db`. Server-side routing is disabled. Either connect to `my_db` directly, or enable server-side routing by setting 'dbms.routing.enabled=true'. + +//Possible solutions: +//Either connect to the database directly using the driver or interactively with the `:use { $db }` command), or enable server-side routing by setting `dbms.routing.enabled=true` in the configuration. + +=== 08N03 + +Status description:: error: connection exception - failed to write to graph. Failed to write to graph { $graph }. Check the defined access mode in both driver and database. + +=== 08N04 + +Status description:: error: unable to route use clause. Routing with { $clause } is not supported in embedded sessions. Connect to the database directly or try running the query using a Neo4j driver or the HTTP API. + +=== 08N05 + +Status description:: error: connection exception - unable to route administration command. Routing administration commands is not supported in embedded sessions. Connect to the system database directly or try running the query using a Neo4j driver or the HTTP API. + +=== 08N06 + +Status description:: error: connection exception - protocol error. General network protocol error. + +=== 08N07 + +Status description:: error: connection exception - not the leader. This member is not the leader. + +//Possible solutions: +//No write operations are allowed directly on this database. Connect to the leader directly or enable server-side routing by setting `dbms.routing.enabled=true` in the configuration. + +=== 08N08 + +Status description:: error: connection exception - database is read only. This database is read only on this server. + +=== 08N09 + +Status description:: error: connection exception - database unavailable. The database { $db } is currently unavailable. Check the database status. Retry your request at a later time. + +=== 08N10 + +Status description:: error: connection exception - invalid server state. The server is not in a state that can process a message of type: { $boltMsgType }. + +=== 08N11 + +Status description:: error: connection exception - request error. The request is invalid and could not be processed by the server. See cause for further details. + +=== 08N12 + +Status description:: error: connection exception - failed to parse bookmark. Failed to parse the supplied bookmark. Verify it is correct or check the debug log for more information. + +=== 08N13 + +Status description:: error: connection exception - database not up to requested bookmark. The database { $db } is not up to the requested bookmark { $transactionId1 }. The latest transaction ID is { $transactionId2 }. + +=== 08N14 + +Status description:: error: connection exception - alias chains are not permitted. Unable to provide a routing table for the database identifed by the alias { $alias1 } because the request comes from another alias { $alias2 } and alias chains are not permitted. + +=== 08N15 + +Status description:: error: connection exception - no such routing policy. Policy definition of the routing policy { $routingPolicy } could not be found. Verify that the spelling is correct. \ No newline at end of file diff --git a/modules/ROOT/pages/errors/index.adoc b/modules/ROOT/pages/errors/index.adoc index 4d6e4637..cc20f309 100644 --- a/modules/ROOT/pages/errors/index.adoc +++ b/modules/ROOT/pages/errors/index.adoc @@ -1,21 +1,92 @@ -:description: The Neo4j error codes for Neo4j version {neo4j-version}. - -[[error-codes]] +:description: The Neo4j error codes for Neo4j version. +[[neo4j-errors]] = Server errors -Error codes are Neo4j status codes returned by the server when the execution of a query fails. -They always have the severity level `ERROR`. -Errors are grouped based on the type of the error code: +// [role=label--version-5.25] +// [[gqlstatus-error-object]] +// == GQL-status error object + +// [[gqlstatus-standard-defined-codes]] +// === Standard-defined GQLSTATUS codes -Client errors:: - These errors are caused by the client and are usually related to the request itself. - Client errors have the prefix `Neo.ClientError`. +// .Standard-defined GQLSTATUS error codes +// [options="header", cols="<1s,<4"] +// [%collapsible] +// |=== +// |GQLSTATUS code | StatusDescription +// | 08000 | error: connection exception +// | 08007 | error: connection exception - transaction resolution unknown +// | 22000 | error: data exception +// | 22001 | error: data exception - string data, right truncation +// | 22003 | error: data exception - numeric value out of range. The numeric value `$value` is outside the required range. +// | 22004 | error: data exception - null value not allowed +// | 22007 | error: data exception - invalid date, time, or datetime format +// | 22008 | error: data exception - datetime field overflow +// | 22011 | error: data exception - substring error +// | 22012 | error: data exception - division by zero +// | 22015 | error: data exception - interval field overflow +// | 22018 | error: data exception - invalid character value for cast. The character value `$value` is an invalid argument for the specified cast. +// | 2201E | error: data exception - invalid argument for natural logarithm. The value `$value` is an invalid argument for the specified natural logarithm. +// | 2201F | error: data exception - invalid argument for power function. The value `$value` is an invalid argument for the specified power function. +// | 22027 | error: data exception - trim error +// | 2202F | error: data exception - array data, right truncation +// | 22G02 | error: data exception - negative limit value +// | 22G03 | error: data exception - invalid value type +// | 22G04 | error: data exception - values not comparable +// | 22G05 | error: data exception - invalid date, time, or datetime function field name +// | 22G06 | error: data exception - invalid datetime function value +// | 22G07 | error: data exception - invalid duration function field name +// | 22G0B | error: data exception - list data, right truncation +// | 22G0C | error: data exception - list element error +// | 22G0F | error: data exception - invalid number of paths or groups +// | 22G0H | error: data exception - invalid duration format. The duration format `$format` is invalid. +// | 22G0M | error: data exception - multiple assignments to a graph element property +// | 22G0N | error: data exception - number of node labels below supported minimum +// | 22G0P | error: data exception - number of node labels exceeds supported maximum +// | 22G0Q | error: data exception - number of edge labels below supported minimum +// | 22G0R | error: data exception - number of edge labels exceeds supported maximum +// | 22G0S | error: data exception - number of node properties exceeds supported maximum +// | 22G0T | error: data exception - number of edge properties exceeds supported maximum +// | 22G0U | error: data exception - record fields do not match +// | 22G0V | error: data exception - reference value, invalid base type +// | 22G0W | error: data exception - reference value, invalid constrained type +// | 22G0X | error: data exception - record data, field unassignable +// | 22G0Y | error: data exception - record data, field missing +// | 22G0Z | error: data exception - malformed path +// | 22G10 | error: data exception - path data, right truncation +// | 22G11 | error: data exception - reference value, referent deleted +// | 22G12 | error: data exception - invalid value type +// | 22G13 | error: data exception - invalid group variable value +// | 22G14 | error: data exception - incompatible temporal instant unit groups +// | 25000 | error: invalid transaction state +// | 25G01 | error: invalid transaction state - active GQL-transaction +// | 25G02 | error: invalid transaction state - catalog and data statement mixing not supported +// | 25G03 | error: invalid transaction state - read-only GQL-transaction +// | 25G04 | error: invalid transaction state - accessing multiple graphs not supported +// | 2D000 | error: invalid transaction termination +// | 40000 | error: transaction rollback +// | 40003 | error: transaction rollback - statement completion unknown +// | 42000 | error: syntax error or access rule violation +// | 42001 | error: syntax error or access rule violation - invalid syntax +// | 42002 | error: syntax error or access rule violation - invalid reference +// | 42004 | error: syntax error or access rule violation - use of visually confusable identifiers +// | 42006 | error: syntax error or access rule violation - number of edge labels below supported minimum +// | 42007 | error: syntax error or access rule violation - number of edge labels exceeds supported maximum +// | 42008 | error: syntax error or access rule violation - number of edge properties exceeds supported maximum +// | 42009 | error: syntax error or access rule violation - number of node labels below supported minimum +// | 42010 | error: syntax error or access rule violation - number of node labels exceeds supported maximum +// | 42011 | error: syntax error or access rule violation - number of node properties exceeds supported maximum +// | 42012 | error: syntax error or access rule violation - number of node type key labels below supported minimum +// | 42013 | error: syntax error or access rule violation - number of node type key labels exceeds supported maximum +// | 42014 | error: syntax error or access rule violation - number of edge type key labels below supported minimum +// | 42015 | error: syntax error or access rule violation - number of edge type key labels exceeds supported maximum +// | G1000 | error: dependent object error +// | G1001 | error: dependent object error - edges still exist +// | G1002 | error: dependent object error - endpoint node is deleted +// | G1003 | error: dependent object error - endpoint node not in current working graph +// | G2000 | error: graph type violation +// |=== -Transient errors:: - These errors are detected by the server and are usually related to some kind of database unavailability, such as limits reached, out-of-memory, timeouts, etc. - The error can be temporary and could therefore succeed if retrying the request. - Transient errors have the prefix `Neo.TransientError`. +// [[gqlstatus-neo4j-defined-codes]] +// === Neo4j-defined GQLSTATUS error codes -Database errors:: - These errors are caused by the database and are usually related to the database state. - Database errors have the prefix `Neo.DatabaseError`. \ No newline at end of file diff --git a/modules/ROOT/pages/index.adoc b/modules/ROOT/pages/index.adoc index 48b7d109..f24b4167 100644 --- a/modules/ROOT/pages/index.adoc +++ b/modules/ROOT/pages/index.adoc @@ -12,8 +12,12 @@ endif::[] This document details all status codes that a Neo4j DBMS may return to indicate the outcome of a request. +//== GQL status codes -== Format + +== Neo4j status codes + +=== Format Each Neo4j status code follows the same format: @@ -23,7 +27,7 @@ Neo.[Type].[SubType].[Name] ----- -== Types of Neo4j status codes +=== Types of Neo4j status codes The fact that a Neo4j status code is returned by the server does not always mean there is a fatal error. Neo4j status codes can also indicate transient problems that may go away if you retry the request. @@ -38,7 +42,7 @@ The type of the status code determines the effect on the transaction. | Effect on the transaction | xref:errors/all-errors.adoc#_client_errors[ClientError] -| The Client sent a bad request - changing the request might yield a successful outcome. +| The client sent a bad request - changing the request might yield a successful outcome. | Rollback | xref:errors/all-errors#_transient_errors[TransientError] diff --git a/modules/ROOT/pages/notifications/index.adoc b/modules/ROOT/pages/notifications/index.adoc index a70e0392..c0e3f4d7 100644 --- a/modules/ROOT/pages/notifications/index.adoc +++ b/modules/ROOT/pages/notifications/index.adoc @@ -93,6 +93,25 @@ Additional helper methods are exposed for some useful fields. !=== |=== +=== Standard-defined GQLSTATUS notification codes + +The GQL standard defines a set of GQLSTATUS codes that are used to represent successful completion, warnings, and informational messages. +The following table lists the standard-defined GQLSTATUS codes and their meanings: + +.Standard-defined GQLSTATUS notification codes +[options="header", cols="<1s,<4"] +|=== +|GQLSTATUS code | StatusDescription +| 00000 | note: successful completion +| 00001 | note: successful completion - omitted result +| 01000 | warn: warning +| 01004 | warn: string data, right truncation +| 01G03 | warn: graph does not exist +| 01G04 | warn: graph type does not exist +| 01G11 | warn: null value eliminated in set function +| 02000 | note: no data +| 03000 | info: informational +|=== [[general-codes-for-success]] === General codes for success From 0c61ec7aa3c3154bdd45338b14eac5e941982793 Mon Sep 17 00:00:00 2001 From: NataliaIvakina <82437520+NataliaIvakina@users.noreply.github.com> Date: Thu, 17 Oct 2024 13:18:36 +0200 Subject: [PATCH 20/45] Add data exception codes. Part 1. (#186) Co-authored-by: Louise Berglund --- modules/ROOT/pages/errors/gql-errors.adoc | 125 +++++++++++++++++++++- 1 file changed, 123 insertions(+), 2 deletions(-) diff --git a/modules/ROOT/pages/errors/gql-errors.adoc b/modules/ROOT/pages/errors/gql-errors.adoc index 7b270fc4..0c2c6bf1 100644 --- a/modules/ROOT/pages/errors/gql-errors.adoc +++ b/modules/ROOT/pages/errors/gql-errors.adoc @@ -8,7 +8,7 @@ The following page provides an overview of all GQLSTATUS server error codes in N All errors in Neo4j have severity level `ERROR`. * <<_connection-exceptions, Connection exceptions>> - +* <<_data-exceptions, Data exceptions>> [[_connection-exceptions]] == Connection exceptions @@ -97,4 +97,125 @@ Status description:: error: connection exception - alias chains are not permitte === 08N15 -Status description:: error: connection exception - no such routing policy. Policy definition of the routing policy { $routingPolicy } could not be found. Verify that the spelling is correct. \ No newline at end of file +Status description:: error: connection exception - no such routing policy. Policy definition of the routing policy { $routingPolicy } could not be found. Verify that the spelling is correct. + +[[_data-exceptions]] +== Data exceptions + +Database exceptions occur when a client request contains the wrong format, types, or other unsupported input. +Some examples are data and constraint creation, which conflicts with existing constraints, properties of non-storable type, and spatial and temporal values with invalid components. + +=== 22N00 + +Status description:: error: data exception - unsupported value. The provided value is unsupported and cannot be processed. + +=== 22N01 + +Status description:: error: data exception - invalid type. +Expected the value { $value } to be of type { $valueTypeList }, but was of type { $valueType }. + +=== 22N02 + +Status description:: error: data exception - specified negative numeric value. Expected { $option } to be a positive number but found { $value } instead. + +=== 22N03 + +Status description:: error: data exception - specified numeric value out of range. Expected { $component } to be of type { $valueType } and in the range { $lower } to { $upper } but found { $value }. + +=== 22N04 + +Status description:: error: data exception - invalid input value. Invalid input { $input } for { $context }. Expected one of { $inputList }. + +=== 22N05 + +Status description:: error: data exception - input failed validation. Invalid input { $input } for { $context }. + +=== 22N06 + +Status description:: error: data exception - empty input string. Invalid input. { $option } needs to be specified. + +=== 22N07 + +Status description:: error: data exception - invalid pre-parser option key. Invalid pre-parser option(s): { $optionList }. + +=== 22N08 + +Status description:: error: data exception - invalid pre-parser combination. Invalid pre-parser option, cannot combine { $option1 } with { $option2 }. + +=== 22N09 + +Status description:: error: data exception - conflicting pre-parser combination. Invalid pre-parser option, cannot specify multiple conflicting values for { $option }. + +=== 22N10 + +Status description:: error: data exception - invalid pre-parser option value. Invalid pre-parser option, specified { $input } is not valid for option { $option }. Valid options are: { $optionList }. + +=== 22N11 + +Status description:: error: data exception - invalid argument. Invalid argument: cannot process { $input }. + +=== 22N12 + +Status description:: error: data exception - invalid date, time, or datetime format. Invalid argument: cannot process { $input }. + +=== 22N13 + +Status description:: error: data exception - invalid time zone. Specified time zones must include a date component. + +=== 22N14 + +Status description:: error: data exception - invalid temporal value combination. Cannot select both { $temporal } and { $component }. + +=== 22N15 + +Status description:: error: data exception - invalid temporal component. Cannot read the specified { $component } component from { $temporal }. + +=== 22N16 + +Status description:: error: data exception - invalid import value. Importing entity values to a graph with a USE clause is not supported. Attempted to import { $expr } to { $graph }. + +// === 22N17 + +// Status description:: error: data exception - invalid date, time, or datetime function field name. Cannot read the specified { $component } component from { $temporal }. + +=== 22N18 + +Status description:: error: data exception - incomplete spatial value. A { $crs } POINT must contain { $mapKeyList }. + +=== 22N19 + +Status description:: error: data exception - invalid spatial value. A POINT must contain either 'x' and 'y', or 'latitude' and 'longitude'. + +=== 22N20 + +Status description:: error: data exception - invalid spatial value dimensions. Cannot create POINT with { $dim1 }D coordinate reference system (CRS) and { $value } coordinates. Use the equivalent { $dim2 }D coordinate reference system instead. + +=== 22N21 + +Status description:: error: data exception - unsupported coordinate reference system. Unsupported coordinate reference system (CRS): { $crs }. + +=== 22N22 + +Status description:: error: data exception - invalid spatial value combination. Cannot specify both coordinate reference system (CRS) and spatial reference identifier (SRID). + +=== 22N23 + +Status description:: error: data exception - invalid latitude value. Cannot create WGS84 POINT with invalid coordinate: { $coordinates }. The valid range for the latitude coordinate is [-90, 90]. + +=== 22N24 + +Status description:: error: data exception - invalid coordinate arguments. Cannot construct a { $valueType } from { $coordinates }. + +=== 22N25 + +Status description:: error: data exception - invalid temporal arguments. Cannot construct a { $valueType } from { $temporal }. + +=== 22N26 + +Status description:: error: data exception - unsupported rounding mode. Unknown rounding mode. Valid values are: CEILING, FLOOR, UP, DOWN, HALF_EVEN, HALF_UP, HALF_DOWN, UNNECESSARY. + +=== 22N27 + +Status description:: error: data exception - invalid entity type. Invalid input { $input } for { $variable }. Expected to be one of { $valueTypeList }. + + From 88b98162f24ba2c3bb69b41208866f6a9d532b22 Mon Sep 17 00:00:00 2001 From: Reneta Popova Date: Mon, 21 Oct 2024 09:04:24 +0100 Subject: [PATCH 21/45] Add 25, 2D, and 42 codes (#191) Co-authored-by: Louise Berglund --- modules/ROOT/pages/errors/gql-errors.adoc | 277 +++++++++++++++++++--- 1 file changed, 245 insertions(+), 32 deletions(-) diff --git a/modules/ROOT/pages/errors/gql-errors.adoc b/modules/ROOT/pages/errors/gql-errors.adoc index 0c2c6bf1..5624499d 100644 --- a/modules/ROOT/pages/errors/gql-errors.adoc +++ b/modules/ROOT/pages/errors/gql-errors.adoc @@ -7,10 +7,6 @@ The following page provides an overview of all GQLSTATUS server error codes in Neo4j. All errors in Neo4j have severity level `ERROR`. -* <<_connection-exceptions, Connection exceptions>> -* <<_data-exceptions, Data exceptions>> - -[[_connection-exceptions]] == Connection exceptions Connection exceptions occur when the client is unable to connect to the server for various reasons such as network issues, server-side routing being disabled, or the database being unavailable, etc. @@ -99,30 +95,29 @@ Status description:: error: connection exception - alias chains are not permitte Status description:: error: connection exception - no such routing policy. Policy definition of the routing policy { $routingPolicy } could not be found. Verify that the spelling is correct. -[[_data-exceptions]] == Data exceptions Database exceptions occur when a client request contains the wrong format, types, or other unsupported input. Some examples are data and constraint creation, which conflicts with existing constraints, properties of non-storable type, and spatial and temporal values with invalid components. -=== 22N00 +=== 22N00 Status description:: error: data exception - unsupported value. The provided value is unsupported and cannot be processed. -=== 22N01 +=== 22N01 Status description:: error: data exception - invalid type. Expected the value { $value } to be of type { $valueTypeList }, but was of type { $valueType }. -=== 22N02 +=== 22N02 Status description:: error: data exception - specified negative numeric value. Expected { $option } to be a positive number but found { $value } instead. -=== 22N03 +=== 22N03 Status description:: error: data exception - specified numeric value out of range. Expected { $component } to be of type { $valueType } and in the range { $lower } to { $upper } but found { $value }. -=== 22N04 +=== 22N04 Status description:: error: data exception - invalid input value. Invalid input { $input } for { $context }. Expected one of { $inputList }. @@ -130,92 +125,310 @@ Status description:: error: data exception - invalid input value. Invalid input Status description:: error: data exception - input failed validation. Invalid input { $input } for { $context }. -=== 22N06 +=== 22N06 Status description:: error: data exception - empty input string. Invalid input. { $option } needs to be specified. -=== 22N07 +=== 22N07 Status description:: error: data exception - invalid pre-parser option key. Invalid pre-parser option(s): { $optionList }. -=== 22N08 +=== 22N08 Status description:: error: data exception - invalid pre-parser combination. Invalid pre-parser option, cannot combine { $option1 } with { $option2 }. -=== 22N09 +=== 22N09 Status description:: error: data exception - conflicting pre-parser combination. Invalid pre-parser option, cannot specify multiple conflicting values for { $option }. -=== 22N10 +=== 22N10 Status description:: error: data exception - invalid pre-parser option value. Invalid pre-parser option, specified { $input } is not valid for option { $option }. Valid options are: { $optionList }. -=== 22N11 +=== 22N11 Status description:: error: data exception - invalid argument. Invalid argument: cannot process { $input }. -=== 22N12 +=== 22N12 Status description:: error: data exception - invalid date, time, or datetime format. Invalid argument: cannot process { $input }. -=== 22N13 +=== 22N13 Status description:: error: data exception - invalid time zone. Specified time zones must include a date component. -=== 22N14 +=== 22N14 Status description:: error: data exception - invalid temporal value combination. Cannot select both { $temporal } and { $component }. -=== 22N15 +=== 22N15 Status description:: error: data exception - invalid temporal component. Cannot read the specified { $component } component from { $temporal }. -=== 22N16 +=== 22N16 Status description:: error: data exception - invalid import value. Importing entity values to a graph with a USE clause is not supported. Attempted to import { $expr } to { $graph }. -// === 22N17 +// === 22N17 // Status description:: error: data exception - invalid date, time, or datetime function field name. Cannot read the specified { $component } component from { $temporal }. -=== 22N18 +=== 22N18 Status description:: error: data exception - incomplete spatial value. A { $crs } POINT must contain { $mapKeyList }. -=== 22N19 +=== 22N19 Status description:: error: data exception - invalid spatial value. A POINT must contain either 'x' and 'y', or 'latitude' and 'longitude'. -=== 22N20 +=== 22N20 Status description:: error: data exception - invalid spatial value dimensions. Cannot create POINT with { $dim1 }D coordinate reference system (CRS) and { $value } coordinates. Use the equivalent { $dim2 }D coordinate reference system instead. -=== 22N21 +=== 22N21 Status description:: error: data exception - unsupported coordinate reference system. Unsupported coordinate reference system (CRS): { $crs }. -=== 22N22 +=== 22N22 Status description:: error: data exception - invalid spatial value combination. Cannot specify both coordinate reference system (CRS) and spatial reference identifier (SRID). -=== 22N23 +=== 22N23 Status description:: error: data exception - invalid latitude value. Cannot create WGS84 POINT with invalid coordinate: { $coordinates }. The valid range for the latitude coordinate is [-90, 90]. -=== 22N24 +=== 22N24 Status description:: error: data exception - invalid coordinate arguments. Cannot construct a { $valueType } from { $coordinates }. -=== 22N25 +=== 22N25 Status description:: error: data exception - invalid temporal arguments. Cannot construct a { $valueType } from { $temporal }. -=== 22N26 +=== 22N26 Status description:: error: data exception - unsupported rounding mode. Unknown rounding mode. Valid values are: CEILING, FLOOR, UP, DOWN, HALF_EVEN, HALF_UP, HALF_DOWN, UNNECESSARY. -=== 22N27 +=== 22N27 Status description:: error: data exception - invalid entity type. Invalid input { $input } for { $variable }. Expected to be one of { $valueTypeList }. +== Invalid transaction state + +Invalid transaction state errors occur when the transaction is in an invalid state, such as when the transaction is terminated or closed, or when there is a conflict between the transaction state and applied updates. + +=== 25N01 + +Status description:: error: invalid transaction state - invalid combination of statement types.Failed to execute the query { $query } due to conflicting statement types (read query, write query, schema modification, or administration command). To execute queries in the same transaction, they must be either of the same type, or be a combination of schema modifications and read commands. + +=== 25N02 + +Status description:: error: invalid transaction state - unable to complete transaction. Unable to complete transaction. See debug log for details. + +=== 25N03 + +Status description:: error: invalid transaction state - concurrent access violation. Transaction is being used concurrently by another request. + +=== 25N04 + +Status description:: error: invalid transaction state - specified transaction does not exist. +Transaction { $transactionId } does not exist. + +=== 25N05 + +Status description:: error: invalid transaction state - transaction terminated or closed. The transaction has been terminated or closed. + +=== 25N06 + +Status description:: error: invalid transaction state - transaction start failed. Failed to start transaction. See debug log for details. + +=== 25N07 + +Status description:: error: invalid transaction state - constituent transaction start failed. Failed to start constituent transaction. See debug log for details. + +=== 25N08 + +Status description:: error: invalid transaction state - invalid transaction lease. The lease for the transaction is no longer valid. + +=== 25N09 + +Status description:: error: invalid transaction state - internal transaction failure. The transaction failed due to an internal error. + +=== 25N11 + +Status description:: error: invalid transaction state - conflicting transaction state. There was a conflict detected between the transaction state and applied updates. Please retry the transaction. + +=== 25N12 + +Status description:: error: invalid transaction state - index was dropped. Index { $idx } was dropped in this transaction and cannot be used. + +=== 25N13 + +Status description:: error: invalid transaction state - cannot access entity after removal. A { $entityType } was accessed after being deleted in this transaction. Verify the transaction statements. + +== Invalid transaction termination + +Invalid transaction termination errors occur when the transaction termination fails, such as when the transaction or constituent transaction fails to commit, or when the transaction termination fails to apply or append the transaction. + +=== 2DN01 + +Status description:: error: invalid transaction termination - commit failed. Failed to commit transaction. See debug log for details. + +=== 2DN02 + +Status description:: error: invalid transaction termination - constituent commit failed. Failed to commit constituent transaction. See debug log for details. + +=== 2DN03 + +Status description:: error: invalid transaction termination - transaction termination failed. Failed to terminate transaction. See debug log for details. + +=== 2DN04 + +Status description:: error: invalid transaction termination - constituent transaction termination failed. Failed to terminate constituent transaction. See debug log for details. + +=== 2DN05 + +Status description:: error: invalid transaction termination - failed to apply transaction. There was an error on applying the transaction. See logs for more information. + +=== 2DN06 + +Status description:: error: invalid transaction termination - failed to append transaction. There was an error on appending the transaction. See logs for more information. + +=== 2DN07 + +Status description:: error: invalid transaction termination - inner transactions still open. Unable to commit transaction because it still have non-closed inner transactions. + +[[transaction-rollback]] +== Transaction rollback + +Transaction rollback errors occur when there is a failure in a transaction or a constituent transaction rollback. + +=== 40N01 + +Status description:: error: transaction rollback - rollback failed. Failed to rollback transaction. See debug log for details. + +=== 40N02 + +Status description:: error: transaction rollback - constituent rollback failed. Failed to rollback constituent transaction. See debug log for details. + +[[syntax-error-access-rule-violation]] +== Syntax error or access rule violation + +Syntax error or access rule violation errors occur when a Cypher query contains invalid syntax or when a client request violates the access rules, such as when a query tries to access a database without enough privileges, etc. + +=== 42I50 + +Status description:: error: syntax error or access rule violation - token name too long. Invalid input { $input }... A { $tokenType } name cannot be longer than { $maxTokenLength }. + +=== 42N01 + +Status description:: error: syntax error or access rule violation - no such constituent graph exists in composite database. The constituent graph { $graph } was not found in the in composite database { $db }. Verify that the spelling is correct. + +=== 42N02 + +Status description:: error: syntax error or access rule violation - writing in read access mode. Writing in read access mode not allowed. + +=== 42N03 + +Status description:: error: syntax error or access rule violation - writing to multiple graphs. Writing to multiple graphs in the same transaction is not allowed. Use CALL IN TRANSACTION or create separate transactions in your application. + +=== 42N04 + +Status description:: error: syntax error or access rule violation - unsupported access of composite database. Failed to access database identified by { $db1 } while connected to session database { $db2 }. Connect to { $db3 } directly. + +=== 42N05 + +Status description:: error: syntax error or access rule violation - unsupported access of standard database. Failed to access database identified by { $db1 } while connected to composite session database { $db2 }. Connect to { $db3 } directly or create an alias in the composite database. + +=== 42N06 + +Status description:: error: syntax error or access rule violation - unsupported action on composite database. { $action } is not supported on composite databases. + +=== 42N07 + +Status description:: error: syntax error or access rule violation - variable shadowing. The variable { $variable } is shadowing a variable with the same name from the outer scope and needs to be renamed. + +=== 42N08 + +Status description:: error: syntax error or access rule violation - no such procedure or function. The procedure or function { $procFun } was not registered for this database instance. Verify that the spelling is correct. + +=== 42N09 + +Status description:: error: syntax error or access rule violation - no such user. A user with the name { $user } was not found. Verify that the spelling is correct. + +=== 42N10 + +Status description:: error: syntax error or access rule violation - no such role. A role with the name { $role } was not found. Verify that the spelling is correct. + +=== 42N11 + +Status description:: error: syntax error or access rule violation - database or alias already exists. A [composite] database or alias with the name { $db } already exists. + +=== 42N12 + +Status description:: error: syntax error or access rule violation - user already exists. A user with the name { $user } already exists. + +=== 42N13 + +Status description:: error: syntax error or access rule violation - role already exists. A role with the name { $role } already exists. + +=== 42N14 + +Status description:: error: syntax error or access rule violation - invalid use of command. { $clause } cannot be used together with { $cmd }. + +=== 42N15 + +Status description:: error: syntax error or access rule violation - invalid use of reserved keyword. { $syntax } is a reserved keyword and cannot be used in this place. + +=== 42N16 + +Status description:: error: syntax error or access rule violation - unsupported index or constraint. Only single property { $idxType } are supported. + +=== 42N17 + +Status description:: error: syntax error or access rule violation - unsupported request. { $input } is not allowed on the system database. + +=== 42N49 + +Status description:: error: syntax error or access rule violation - unsupported normal form. Unknown Normal Form: { $input }. + +=== 42N75 + +Status description:: error: syntax error or access rule violation - invalid use of graph function. A call to the graph function { $fun } is only allowed as the top-level argument of a USE clause. + +=== 42N83 + +Status description:: error: syntax error or access rule violation - impersonation disallowed while password change required. Cannot impersonate a user while password change required. + +=== 42N84 + +Status description:: error: syntax error or access rule violation - TERMINATE TRANSACTION misses YIELD clause. WHERE clause without YIELD clause. Use 'TERMINATE TRANSACTION ... YIELD ... WHERE ...'. + +=== 42N85 + +Status description:: error: syntax error or access rule violation - cannot specify both allowed and denied databases. Allowed and denied database options are mutually exclusive. + +=== 42N88 + +Status description:: error: syntax error or access rule violation - cannot grant privilege. Permission cannot be granted for 'REMOVE IMMUTABLE PRIVILEGE'. + +=== 42N89 + +Status description:: error: syntax error or access rule violation - invalid driver settings map. Failed evaluating the given driver settings. { $cause } + +=== 42N90 + +Status description:: error: syntax error or access rule violation - cannot alter immutable composite database. Composite databases cannot be altered (database: { $db }). + +=== 42NFD + +Status description:: error: syntax error or access rule violation - credentials expired. Permission denied. The credentials you provided were valid, but must be changed before you can use this instance. + +=== 42NFE + +Status description:: error: syntax error or access rule violation - auth info expired. Authentication and/or authorization info expired. + +=== 42NFF + +Status description:: error: syntax error or access rule violation - permission/access denied. Access denied, see the security logs for details. From b17b28a7d1089315672bebbba8cc38998cebc88d Mon Sep 17 00:00:00 2001 From: Reneta Popova Date: Wed, 23 Oct 2024 14:23:24 +0100 Subject: [PATCH 22/45] Add codes starting with 50 (#197) Co-authored-by: Louise Berglund --- modules/ROOT/pages/errors/gql-errors.adoc | 40 +++++++++++++++++++++++ 1 file changed, 40 insertions(+) diff --git a/modules/ROOT/pages/errors/gql-errors.adoc b/modules/ROOT/pages/errors/gql-errors.adoc index 5624499d..2194362c 100644 --- a/modules/ROOT/pages/errors/gql-errors.adoc +++ b/modules/ROOT/pages/errors/gql-errors.adoc @@ -432,3 +432,43 @@ Status description:: error: syntax error or access rule violation - auth info ex === 42NFF Status description:: error: syntax error or access rule violation - permission/access denied. Access denied, see the security logs for details. + + +== General processing exception + +General processing exceptions occur when there is a general processing error, such as an internal error, deadlock, execution failure, invalid server state transition, constraint creation or drop failure, etc. + +=== 50N00 + +Status description:: error: general processing exception - internal error. Internal exception raised `{ $msgTitle }`: `{ $msg }` + +=== 50N05 + +Status description:: error: general processing exception - deadlock detected. Deadlock detected while trying to acquire locks. See log for more details. + +=== 50N07 + +Status description:: error: general processing exception - execution failed. Execution failed. See cause and debug log for details. + +=== 50N09 + +Status description:: error: general processing exception - invalid server state transition. The server transitioned into a server state that is not valid in the current context: `{ $boltServerState }`. + +=== 50N11 + + +Status description:: error: general processing exception - constraint creation failed. Unable to create `{ $constrDescrOrName }`. + +=== 50N12 + +Status description:: error: general processing exception - constraint drop failed. Unable to drop `{ $constrDescrOrName }`. + +=== 50N42 + +Status description:: error: general processing exception - unexpected error. Unexpected error has occurred. See debug log for details. + +[NOTE] +==== +50N42 is the default GQLSTATUS code for exceptions without a GQL object. +For more information, see link:https://neo4j.com/docs/operations-manual/current/monitoring/logging/#_use_json_format_for_the_query_log[Operations Manual -> Use JSON format for the query log]. +==== \ No newline at end of file From e9f6b3f65ae7fe4d60f4235fdb6a26e27ebc7c4c Mon Sep 17 00:00:00 2001 From: Reneta Popova Date: Fri, 25 Oct 2024 09:59:50 +0100 Subject: [PATCH 23/45] Add codes starting with 51 (#198) Co-authored-by: Louise Berglund --- modules/ROOT/pages/errors/gql-errors.adoc | 262 +++++++++++++++++++++- 1 file changed, 261 insertions(+), 1 deletion(-) diff --git a/modules/ROOT/pages/errors/gql-errors.adoc b/modules/ROOT/pages/errors/gql-errors.adoc index 2194362c..83ae53a1 100644 --- a/modules/ROOT/pages/errors/gql-errors.adoc +++ b/modules/ROOT/pages/errors/gql-errors.adoc @@ -471,4 +471,264 @@ Status description:: error: general processing exception - unexpected error. Une ==== 50N42 is the default GQLSTATUS code for exceptions without a GQL object. For more information, see link:https://neo4j.com/docs/operations-manual/current/monitoring/logging/#_use_json_format_for_the_query_log[Operations Manual -> Use JSON format for the query log]. -==== \ No newline at end of file +==== +== System configuration or operation exception + +System configuration or operation exception errors occur when there is an error in the system configuration or operation, such as procedure registration failure, a missing class field annotation, an unsupported injectable component type, duplicate field names, invalid map key type, etc. + +=== 51N00 + +Status description:: error: system configuration or operation exception - procedure registration error. Failed to register procedure/function. + + +=== 51N01 + +Status description:: error: system configuration or operation exception - class field annotation should be public, non-final, and non-static. The field `{ $procField }` in the class `{ $procClass }` is annotated as a '@Context' field, but it is declared as static. '@Context' fields must be public, non-final and non-static. + +=== 51N02 + +Status description:: error: system configuration or operation exception - unsupported injectable component type. Unable to set up injection for procedure `{ $procClass }`. The field `{ $procField }` has type `{ $procFieldType }` which is not a supported injectable component. + + +=== 51N03 + +Status description:: error: system configuration or operation exception - unable to access field. Unable to set up injection for `{ $procClass }`, failed to access field `{ $procField }`. + + +=== 51N04 + +Status description:: error: system configuration or operation exception - missing class field annotation. The field `{ $procField }` on `{ $procClass }` must be annotated as a '@Context' field in order to store its state. + + +=== 51N05 + +Status description:: error: system configuration or operation exception - class field should be public and non-final. The field `{ $procField }` on `{ $procClass }` must be declared non-final and public. + + +=== 51N06 + +Status description:: error: system configuration or operation exception - missing argument name. The argument at position `{ $pos }` in `{ $procMethod }` requires a '@Name' annotation and a non-empty name. + + +=== 51N07 + +Status description:: error: system configuration or operation exception - invalid ordering of default arguments. The `{ $procFun }` contains a non-default argument after a default argument. Non-default arguments are not allowed to be positioned after default arguments. + + +=== 51N08 + +Status description:: error: system configuration or operation exception - exactly one @UserAggregationResult method and one @UserAggregationUpdate method required. The class `{ $procClass }` must contain exactly one '@UserAggregationResult' method and exactly one '@UserAggregationUpdate' method. + + +=== 51N09 + +Status description:: error: system configuration or operation exception - @UserAggregationUpdate method must be public and void. The '@UserAggregationUpdate' method `{ $procMethod }` of `{ $procClass }` must be public and have the return type 'void'. + + +=== 51N10 + +Status description:: error: system configuration or operation exception - aggregation method not public. The method `{ $procMethod }` of `{ $procClass }` must be public. + + +=== 51N11 + +Status description:: error: system configuration or operation exception - class not public. The class `{ $procClass }` must be public. + + +=== 51N12 + +Status description:: error: system configuration or operation exception - class not void. The procedure `{ $proc }` has zero output fields and must be defined as void. + + +=== 51N13 + +Status description:: error: system configuration or operation exception - procedure or function name already in use. Unable to register the procedure or function `{ $procFun }` because the name is already in use. + + +=== 51N14 + +Status description:: error: system configuration or operation exception - duplicate field name. +The procedure `{ $proc }` has a duplicate `{ $procFieldType }` field, `{ $procField }`. + +=== 51N15 + +Status description:: error: system configuration or operation exception - invalid map key type. Type mismatch for map key. Required 'STRING', but found `{ $valueType }`. + + +=== 51N16 + +Status description:: error: system configuration or operation exception - invalid default value type. Type mismatch for the default value. Required `{ $valueType }`, but found `{ $input }`. + + +=== 51N17 + +Status description:: error: system configuration or operation exception - invalid procedure or function name. Procedures and functions cannot be defined in the root namespace, or use a reserved namespace. Use the package name instead (e.g., org.example.com.`{ $procFun })`. + + +=== 51N22 + +Status description:: error: system configuration or operation exception - exhaustive shortest path search disabled. Finding the shortest path for the given pattern requires an exhaustive search. To enable exhaustive searches, set 'cypher.forbid_exhaustive_shortestpath' to false. + + +=== 51N23 + +Status description:: error: system configuration or operation exception - cyclic shortest path search disabled. Cannot find the shortest path when the start and end nodes are the same. To enable this behavior, set 'dbms.cypher.forbid_shortestpath_common_nodes' to false. + + +=== 51N24 + +Status description:: error: system configuration or operation exception - insufficient resources for plan search. Could not find a query plan within given time and space limits. + + +=== 51N27 + +Status description:: error: system configuration or operation exception - not supported in this edition. `{ $item }` is not supported in `{ $edition }`. + + +=== 51N29 + +Status description:: error: system configuration or operation exception - not supported by this server. The command `{ $cmd }` must be executed on the current 'LEADER' server. + + +=== 51N30 + +Status description:: error: system configuration or operation exception - not supported with this configuration. `{ $item }` is not supported in `{ $context }`. + + +=== 51N32 + +Status description:: error: system configuration or operation exception - server panic. Server is in panic. + + +=== 51N33 + +Status description:: error: system configuration or operation exception - replication error. This member failed to replicate transaction, try again. + + +=== 51N34 + +Status description:: error: system configuration or operation exception - write transaction failed due to leader change. Failed to write to the database due to a cluster leader change. Retrying your request at a later time may succeed. + + +=== 51N35 + +Status description:: error: system configuration or operation exception - database location changed. The location of `{ $db }` has changed while the transaction was running. + + +=== 51N39 + +Status description:: error: system configuration or operation exception - raft log corrupted. Expected set of files not found on disk. Please restore from backup. + + +=== 51N40 + +Status description:: error: system configuration or operation exception - unable to start database. Database `{ $db }` failed to start. Try restarting it. + + +=== 51N41 + +Status description:: error: system configuration or operation exception - admin operation failed. Server or database admin operation not possible. + + +=== 51N43 + +Status description:: error: system configuration or operation exception - cannot deallocate servers. Cannot deallocate server(s) `{ $serverList }`. + + +=== 51N44 + +Status description:: error: system configuration or operation exception - cannot drop server. Cannot drop server `{ $server }`. + + +=== 51N45 + +Status description:: error: system configuration or operation exception - cannot cordon server. Cannot cordon server `{ $server }`. + + +=== 51N46 + +Status description:: error: system configuration or operation exception - cannot alter server. Cannot alter server `{ $server }`. + + +=== 51N47 + +Status description:: error: system configuration or operation exception - cannot rename server. Cannot rename server `{ $server }`. + + +=== 51N48 + +Status description:: error: system configuration or operation exception - cannot enable server. Cannot enable server `{ $server }`. + + +=== 51N49 + +Status description:: error: system configuration or operation exception - cannot alter database. Cannot alter database `{ $db }`. + + +=== 51N50 + +Status description:: error: system configuration or operation exception - cannot recreate database. Cannot recreate database `{ $db }`. + + +=== 51N51 + +Status description:: error: system configuration or operation exception - cannot create database. Cannot create database `{ $db }`. + + +=== 51N52 + +Status description:: error: system configuration or operation exception - number of primaries out of range. Cannot alter database topology. Number of primaries `{ $count }` needs to be at least 1 and may not exceed `{ $upper }`. + + +=== 51N53 + +Status description:: error: system configuration or operation exception - number of secondaries out of range. Cannot alter database topology. Number of secondaries `{ $count }` needs to be at least 0 and may not exceed `{ $upper }`. + +=== 51N54 + +Status description:: error: system configuration or operation exception - cannot reallocate. Failed to calculate reallocation for databases. { $msg } + + +=== 51N55 + +Status description:: error: system configuration or operation exception - cannot create additional database. Failed to create the database `{ $db }`. The limit of databases is reached. Either increase the limit using the config setting `{ $cfgSetting }` or drop a database. + + +=== 51N57 + +Status description:: error: system configuration or operation exception - generic topology modification error. Unexpected error while picking allocations. { $msg } + + +=== 51N60 + +Status description:: error: system configuration or operation exception - unable to check enterprise license acceptance. The DBMS is unable to determine the enterprise license acceptance status. + + +=== 51N63 + +Status description:: error: system configuration or operation exception - index is still populating. Index is not ready yet. Wait until it finishes populating and retry the transaction. + + +=== 51N64 + +Status description:: error: system configuration or operation exception - index dropped while sampling. The index dropped while sampling. + + +=== 51N65 + +Status description:: error: system configuration or operation exception - vector index dimensionality mismatch. Vector index `{ $idx }` has a dimensionality of `{ $dim1 }`, but indexed vectors have `{ $dim2 }`. + + +=== 51N66 + +Status description:: error: system configuration or operation exception - resource exhaustion. Insufficient resources to complete the request. + + +=== 51N69 + +Status description:: error: system configuration or operation exception - system database is immutable. It is not possible to perform `{ $operation }` on the system database. + +=== 51N70 + +Status description:: error: system configuration or operation exception - bolt is not enabled. Cannot get routing table for `{ $db }` because Bolt is not enabled. Please update your configuration such that 'server.bolt.enabled' is set to true. + From 8deaece5ff9ed1012a529ea8063fd39406cb9251 Mon Sep 17 00:00:00 2001 From: Reneta Popova Date: Fri, 25 Oct 2024 10:10:07 +0100 Subject: [PATCH 24/45] Add codes starting with 52 (#199) Co-authored-by: Louise Berglund --- modules/ROOT/pages/errors/gql-errors.adoc | 79 +++++++++++++++++++++++ 1 file changed, 79 insertions(+) diff --git a/modules/ROOT/pages/errors/gql-errors.adoc b/modules/ROOT/pages/errors/gql-errors.adoc index 83ae53a1..320aa723 100644 --- a/modules/ROOT/pages/errors/gql-errors.adoc +++ b/modules/ROOT/pages/errors/gql-errors.adoc @@ -732,3 +732,82 @@ Status description:: error: system configuration or operation exception - system Status description:: error: system configuration or operation exception - bolt is not enabled. Cannot get routing table for `{ $db }` because Bolt is not enabled. Please update your configuration such that 'server.bolt.enabled' is set to true. +== Procedure exception + +Procedure exceptions occur when there is an error in executing a procedure, such as when the procedure execution fails due to a client error, when the procedure cannot be invoked on a primary, when the number of arguments to checkConnectivity is invalid, etc. + +=== 52N02 + +Status description:: error: procedure exception - procedure execution client error. Execution of the procedure `{ $proc }` failed due to a client error. + +=== 52N05 + +Status description:: error: procedure exception - cannot invoke procedure on a primary. Can't invoke procedure on this member because it is not a secondary for database `{ $db }`. + +=== 52N06 + +Status description:: error: procedure exception - invalid number of arguments to checkConnectivity. Unexpected number of arguments (expected 0-2 but received `{ $count }`). + +=== 52N07 + +Status description:: error: procedure exception - invalid port argument to checkConnectivity. Unrecognised port name `{ $port }` (valid values are: `{ $portList }`. + +=== 52N08 + +Status description:: error: procedure exception - invalid server id argument to checkConnectivity. Unable to parse server id `{ $server }`. + +=== 52N09 + +Status description:: error: procedure exception - procedure execution database error. Execution of the procedure `{ $proc }` failed due to a database error. + +=== 52N10 + +Status description:: error: procedure exception - invalid address key. An address key is included in the query string provided to the GetRoutingTableProcedure, but its value could not be parsed. + +=== 52N11 + +Status description:: error: procedure exception - generic topology procedure error. An unexpected error has occurred. Please refer to the server's debug log for more information. + +=== 52N12 + +Status description:: error: procedure exception - cannot change default database. The previous default database `{ $db }` is still running. + +=== 52N13 + +Status description:: error: procedure exception - new default database does not exist. New default database `{ $db }` does not exist. + +=== 52N14 + +Status description:: error: procedure exception - system cannot be default database. System database cannot be set as default. + +=== 52N16 + +Status description:: error: procedure exception - invalid procedure argument list. Invalid arguments to procedure. + +=== 52N17 + +Status description:: error: procedure exception - quarantine change failed. Setting/removing the quarantine marker failed. + +=== 52N23 + +Status description:: error: procedure exception - non-reloadable namespace. The following namespaces are not reloadable: `{ $namespaceList }` + +=== 52N25 + +Status description:: error: procedure exception - JMX error. JMX error while accessing `{ $param }`. See logs for more information. + +=== 52N29 + +Status description:: error: procedure exception - outdated change identifier. Given ChangeIdentifier describes a transaction that occurred before any enrichment records exist. + +=== 52N30 + +Status description:: error: procedure exception - future change identifier. Given ChangeIdentifier describes a transaction that hasn't yet occurred. + +=== 52N31 + +Status description:: error: procedure exception - wrong database. Change identifier `{ $param }` does not belong to this database. + +=== 52N32 + +Status description:: error: procedure exception - invalid sequence number. Change identifier `{ $param1 }` has an invalid sequence number `{ $param2 }`. \ No newline at end of file From 95113f44628c8f71382fb7a0f933f66c5afa190c Mon Sep 17 00:00:00 2001 From: Reneta Popova Date: Fri, 25 Oct 2024 13:20:45 +0100 Subject: [PATCH 25/45] Add codes starting with 42 (#196) Some of them are not marked as implemented in the spreadsheet, but I can see them in the code, --------- Co-authored-by: Louise Berglund --- modules/ROOT/pages/errors/gql-errors.adoc | 312 +++++++++++++++++----- 1 file changed, 249 insertions(+), 63 deletions(-) diff --git a/modules/ROOT/pages/errors/gql-errors.adoc b/modules/ROOT/pages/errors/gql-errors.adoc index 320aa723..d0adc0c3 100644 --- a/modules/ROOT/pages/errors/gql-errors.adoc +++ b/modules/ROOT/pages/errors/gql-errors.adoc @@ -21,32 +21,32 @@ Status description:: error: connection exception - transaction resolution unknow === 08N00 -Status description:: error: connection exception - unable to connect to database. Unable to connect to database { $db }. Unable to get bolt address of the leader. Check the status of the database. Retrying your request at a later time may succeed. +Status description:: error: connection exception - unable to connect to database. Unable to connect to database `{ $db }`. Unable to get bolt address of the leader. Check the status of the database. Retrying your request at a later time may succeed. === 08N01 -Status description:: error: connection exception - unable to write to database. Unable to write to database { $db } on this server. Server-side routing is disabled. Either connect to the database leader directly or enable server-side routing by setting '{ $cfgSetting }=true'. +Status description:: error: connection exception - unable to write to database. Unable to write to database `{ $db }` on this server. Server-side routing is disabled. Either connect to the database leader directly or enable server-side routing by setting '{ $cfgSetting }=true'. //Possible solutions: -//Either connect to the database directly using the driver or interactively with the `:use { $db }` command), or enable server-side routing by setting `dbms.routing.enabled=true` in the configuration. +//Either connect to the database directly using the driver or interactively with the `:use `{ $db }` command), or enable server-side routing by setting `dbms.routing.enabled=true` in the configuration. === 08N02 -Status description:: error: connection exception - unable to connect to database. Unable to connect to database { $db }. Server-side routing is disabled. Either connect to { $db } directly, or enable server-side routing by setting '{ $cfgSetting }=true'. +Status description:: error: connection exception - unable to connect to database. Unable to connect to database `{ $db }`. Server-side routing is disabled. Either connect to `{ $db }` directly, or enable server-side routing by setting '{ $cfgSetting }=true'. Example error description:: error: connection exception - unable to route to database. Unable to connect to database `my_db`. Server-side routing is disabled. Either connect to `my_db` directly, or enable server-side routing by setting 'dbms.routing.enabled=true'. //Possible solutions: -//Either connect to the database directly using the driver or interactively with the `:use { $db }` command), or enable server-side routing by setting `dbms.routing.enabled=true` in the configuration. +//Either connect to the database directly using the driver or interactively with the `:use `{ $db }` command), or enable server-side routing by setting `dbms.routing.enabled=true` in the configuration. === 08N03 -Status description:: error: connection exception - failed to write to graph. Failed to write to graph { $graph }. Check the defined access mode in both driver and database. +Status description:: error: connection exception - failed to write to graph. Failed to write to graph `{ $graph }`. Check the defined access mode in both driver and database. === 08N04 -Status description:: error: unable to route use clause. Routing with { $clause } is not supported in embedded sessions. Connect to the database directly or try running the query using a Neo4j driver or the HTTP API. +Status description:: error: unable to route use clause. Routing with `{ $clause }` is not supported in embedded sessions. Connect to the database directly or try running the query using a Neo4j driver or the HTTP API. === 08N05 @@ -69,11 +69,11 @@ Status description:: error: connection exception - database is read only. This d === 08N09 -Status description:: error: connection exception - database unavailable. The database { $db } is currently unavailable. Check the database status. Retry your request at a later time. +Status description:: error: connection exception - database unavailable. The database `{ $db }` is currently unavailable. Check the database status. Retry your request at a later time. === 08N10 -Status description:: error: connection exception - invalid server state. The server is not in a state that can process a message of type: { $boltMsgType }. +Status description:: error: connection exception - invalid server state. The server is not in a state that can process a message of type: `{ $boltMsgType }`. === 08N11 @@ -85,15 +85,15 @@ Status description:: error: connection exception - failed to parse bookmark. Fai === 08N13 -Status description:: error: connection exception - database not up to requested bookmark. The database { $db } is not up to the requested bookmark { $transactionId1 }. The latest transaction ID is { $transactionId2 }. +Status description:: error: connection exception - database not up to requested bookmark. The database `{ $db }` is not up to the requested bookmark `{ $transactionId1 }`. The latest transaction ID is `{ $transactionId2 }`. === 08N14 -Status description:: error: connection exception - alias chains are not permitted. Unable to provide a routing table for the database identifed by the alias { $alias1 } because the request comes from another alias { $alias2 } and alias chains are not permitted. +Status description:: error: connection exception - alias chains are not permitted. Unable to provide a routing table for the database identifed by the alias `{ $alias1 }` because the request comes from another alias `{ $alias2 }` and alias chains are not permitted. === 08N15 -Status description:: error: connection exception - no such routing policy. Policy definition of the routing policy { $routingPolicy } could not be found. Verify that the spelling is correct. +Status description:: error: connection exception - no such routing policy. Policy definition of the routing policy `{ $routingPolicy }` could not be found. Verify that the spelling is correct. == Data exceptions @@ -107,51 +107,51 @@ Status description:: error: data exception - unsupported value. The provided val === 22N01 Status description:: error: data exception - invalid type. -Expected the value { $value } to be of type { $valueTypeList }, but was of type { $valueType }. +Expected the value `{ $value }` to be of type `{ $valueTypeList }, but was of type `{ $valueType }`. === 22N02 -Status description:: error: data exception - specified negative numeric value. Expected { $option } to be a positive number but found { $value } instead. +Status description:: error: data exception - specified negative numeric value. Expected `{ $option }` to be a positive number but found `{ $value }` instead. === 22N03 -Status description:: error: data exception - specified numeric value out of range. Expected { $component } to be of type { $valueType } and in the range { $lower } to { $upper } but found { $value }. +Status description:: error: data exception - specified numeric value out of range. Expected `{ $component }` to be of type `{ $valueType }` and in the range `{ $lower }` to `{ $upper }` but found `{ $value }`. === 22N04 -Status description:: error: data exception - invalid input value. Invalid input { $input } for { $context }. Expected one of { $inputList }. +Status description:: error: data exception - invalid input value. Invalid input `{ $input }` for `{ $context }`. Expected one of `{ $inputList }`. === 22N05 -Status description:: error: data exception - input failed validation. Invalid input { $input } for { $context }. +Status description:: error: data exception - input failed validation. Invalid input `{ $input }` for `{ $context }`. === 22N06 -Status description:: error: data exception - empty input string. Invalid input. { $option } needs to be specified. +Status description:: error: data exception - empty input string. Invalid input. `{ $option }` needs to be specified. === 22N07 -Status description:: error: data exception - invalid pre-parser option key. Invalid pre-parser option(s): { $optionList }. +Status description:: error: data exception - invalid pre-parser option key. Invalid pre-parser option(s): `{ $optionList }`. === 22N08 -Status description:: error: data exception - invalid pre-parser combination. Invalid pre-parser option, cannot combine { $option1 } with { $option2 }. +Status description:: error: data exception - invalid pre-parser combination. Invalid pre-parser option, cannot combine `{ $option1 }` with `{ $option2 }`. === 22N09 -Status description:: error: data exception - conflicting pre-parser combination. Invalid pre-parser option, cannot specify multiple conflicting values for { $option }. +Status description:: error: data exception - conflicting pre-parser combination. Invalid pre-parser option, cannot specify multiple conflicting values for `{ $option }`. === 22N10 -Status description:: error: data exception - invalid pre-parser option value. Invalid pre-parser option, specified { $input } is not valid for option { $option }. Valid options are: { $optionList }. +Status description:: error: data exception - invalid pre-parser option value. Invalid pre-parser option, specified `{ $input }` is not valid for option `{ $option }`. Valid options are: `{ $optionList }`. === 22N11 -Status description:: error: data exception - invalid argument. Invalid argument: cannot process { $input }. +Status description:: error: data exception - invalid argument. Invalid argument: cannot process `{ $input }`. === 22N12 -Status description:: error: data exception - invalid date, time, or datetime format. Invalid argument: cannot process { $input }. +Status description:: error: data exception - invalid date, time, or datetime format. Invalid argument: cannot process `{ $input }`. === 22N13 @@ -159,35 +159,35 @@ Status description:: error: data exception - invalid time zone. Specified time z === 22N14 -Status description:: error: data exception - invalid temporal value combination. Cannot select both { $temporal } and { $component }. +Status description:: error: data exception - invalid temporal value combination. Cannot select both `{ $temporal }` and `{ $component }`. === 22N15 -Status description:: error: data exception - invalid temporal component. Cannot read the specified { $component } component from { $temporal }. +Status description:: error: data exception - invalid temporal component. Cannot read the specified `{ $component }` component from `{ $temporal }`. === 22N16 -Status description:: error: data exception - invalid import value. Importing entity values to a graph with a USE clause is not supported. Attempted to import { $expr } to { $graph }. +Status description:: error: data exception - invalid import value. Importing entity values to a graph with a USE clause is not supported. Attempted to import `{ $expr }` to `{ $graph }`. // === 22N17 -// Status description:: error: data exception - invalid date, time, or datetime function field name. Cannot read the specified { $component } component from { $temporal }. +// Status description:: error: data exception - invalid date, time, or datetime function field name. Cannot read the specified `{ $component }` component from `{ $temporal }`. === 22N18 -Status description:: error: data exception - incomplete spatial value. A { $crs } POINT must contain { $mapKeyList }. +Status description:: error: data exception - incomplete spatial value. A `{ $crs }` `POINT` must contain `{ $mapKeyList }`. === 22N19 -Status description:: error: data exception - invalid spatial value. A POINT must contain either 'x' and 'y', or 'latitude' and 'longitude'. +Status description:: error: data exception - invalid spatial value. A `POINT` must contain either 'x' and 'y', or 'latitude' and 'longitude'. === 22N20 -Status description:: error: data exception - invalid spatial value dimensions. Cannot create POINT with { $dim1 }D coordinate reference system (CRS) and { $value } coordinates. Use the equivalent { $dim2 }D coordinate reference system instead. +Status description:: error: data exception - invalid spatial value dimensions. Cannot create `POINT` with `{ $dim1 }D` coordinate reference system (CRS) and `{ $value }` coordinates. Use the equivalent `{ $dim2 }D` coordinate reference system instead. === 22N21 -Status description:: error: data exception - unsupported coordinate reference system. Unsupported coordinate reference system (CRS): { $crs }. +Status description:: error: data exception - unsupported coordinate reference system. Unsupported coordinate reference system (CRS): `{ $crs }`. === 22N22 @@ -195,23 +195,23 @@ Status description:: error: data exception - invalid spatial value combination. === 22N23 -Status description:: error: data exception - invalid latitude value. Cannot create WGS84 POINT with invalid coordinate: { $coordinates }. The valid range for the latitude coordinate is [-90, 90]. +Status description:: error: data exception - invalid latitude value. Cannot create WGS84 `POINT` with invalid coordinate: `{ $coordinates }`. The valid range for the latitude coordinate is `[-90, 90]`. === 22N24 -Status description:: error: data exception - invalid coordinate arguments. Cannot construct a { $valueType } from { $coordinates }. +Status description:: error: data exception - invalid coordinate arguments. Cannot construct a `{ $valueType }` from `{ $coordinates }`. === 22N25 -Status description:: error: data exception - invalid temporal arguments. Cannot construct a { $valueType } from { $temporal }. +Status description:: error: data exception - invalid temporal arguments. Cannot construct a `{ $valueType }` from `{ $temporal }`. === 22N26 -Status description:: error: data exception - unsupported rounding mode. Unknown rounding mode. Valid values are: CEILING, FLOOR, UP, DOWN, HALF_EVEN, HALF_UP, HALF_DOWN, UNNECESSARY. +Status description:: error: data exception - unsupported rounding mode. Unknown rounding mode. Valid values are: `CEILING`, `FLOOR`, `UP`, `DOWN`, `HALF_EVEN`, `HALF_UP`, `HALF_DOWN`, `UNNECESSARY`. === 22N27 -Status description:: error: data exception - invalid entity type. Invalid input { $input } for { $variable }. Expected to be one of { $valueTypeList }. +Status description:: error: data exception - invalid entity type. Invalid input `{ $input }` for `{ $variable }`. Expected to be one of `{ $valueTypeList }`. == Invalid transaction state @@ -220,7 +220,7 @@ Invalid transaction state errors occur when the transaction is in an invalid sta === 25N01 -Status description:: error: invalid transaction state - invalid combination of statement types.Failed to execute the query { $query } due to conflicting statement types (read query, write query, schema modification, or administration command). To execute queries in the same transaction, they must be either of the same type, or be a combination of schema modifications and read commands. +Status description:: error: invalid transaction state - invalid combination of statement types.Failed to execute the query `{ $query }` due to conflicting statement types (read query, write query, schema modification, or administration command). To execute queries in the same transaction, they must be either of the same type, or be a combination of schema modifications and read commands. === 25N02 @@ -233,7 +233,7 @@ Status description:: error: invalid transaction state - concurrent access violat === 25N04 Status description:: error: invalid transaction state - specified transaction does not exist. -Transaction { $transactionId } does not exist. +Transaction `{ $transactionId }` does not exist. === 25N05 @@ -261,11 +261,11 @@ Status description:: error: invalid transaction state - conflicting transaction === 25N12 -Status description:: error: invalid transaction state - index was dropped. Index { $idx } was dropped in this transaction and cannot be used. +Status description:: error: invalid transaction state - index was dropped. Index `{ $idx }` was dropped in this transaction and cannot be used. === 25N13 -Status description:: error: invalid transaction state - cannot access entity after removal. A { $entityType } was accessed after being deleted in this transaction. Verify the transaction statements. +Status description:: error: invalid transaction state - cannot access entity after removal. A `{ $entityType }` was accessed after being deleted in this transaction. Verify the transaction statements. == Invalid transaction termination @@ -304,6 +304,14 @@ Status description:: error: invalid transaction termination - inner transactions Transaction rollback errors occur when there is a failure in a transaction or a constituent transaction rollback. +=== 40000 + +Status description:: error: transaction rollback + +=== 40003 + +Status description:: error: transaction rollback - statement completion unknown + === 40N01 Status description:: error: transaction rollback - rollback failed. Failed to rollback transaction. See debug log for details. @@ -317,13 +325,127 @@ Status description:: error: transaction rollback - constituent rollback failed. Syntax error or access rule violation errors occur when a Cypher query contains invalid syntax or when a client request violates the access rules, such as when a query tries to access a database without enough privileges, etc. +=== 42000 + +Status description:: error: syntax error or access rule violation + +=== 42001 + +Status description:: error: syntax error or access rule violation - invalid syntax + +=== 42002 + +Status description:: error: syntax error or access rule violation - invalid reference + +=== 42004 + +Status description:: error: syntax error or access rule violation - use of visually confusable identifiers + +=== 42006 + +Status description:: error: syntax error or access rule violation - number of edge labels below supported minimum + +=== 42007 + +Status description:: error: syntax error or access rule violation - number of edge labels exceeds supported maximum + +=== 42008 + +Status description:: error: syntax error or access rule violation - number of edge properties exceeds supported maximum + +=== 42009 + +Status description:: error: syntax error or access rule violation - number of node labels below supported minimum + +=== 42010 + +Status description:: error: syntax error or access rule violation - number of node labels exceeds supported maximum + +=== 42011 + +Status description:: error: syntax error or access rule violation - number of node properties exceeds supported maximum + +=== 42012 + +Status description:: error: syntax error or access rule violation - number of node type key labels below supported minimum + +=== 42013 + +Status description:: error: syntax error or access rule violation - number of node type key labels exceeds supported maximum + +=== 42014 + +Status description:: error: syntax error or access rule violation - number of edge type key labels below supported minimum + +=== 42015 + +Status description:: error: syntax error or access rule violation - number of edge type key labels exceeds supported maximum + +=== 42I00 + +Status description:: error: syntax error or access rule violation - invalid case expression. 'CASE' expressions must have the same number of 'WHEN' and 'THEN' operands. + +=== 42I01 + +Status description:: error: syntax error or access rule violation - invalid `FOREACH`. Invalid use of `{ $clause }` inside 'FOREACH'. + +=== 42I02 + +Status description:: error: syntax error or access rule violation - invalid comment. Failed to parse comment. A comment starting with '/\*' must also have a closing '*/'. + +=== 42I06 + +Status description:: error: syntax error or access rule violation - invalid input. Invalid input `{ $input }`, expected: `{ $valueList }`. + +=== 42I18 + +Status description:: error: syntax error or access rule violation - invalid reference to implicitly grouped expressions. The aggregation column contains implicit grouping expressions referenced by the variables `{ $varList }`. Implicit grouping expressions are variables not explicitly declared as grouping keys. + + +=== 42I20 + +Status description:: error: syntax error or access rule violation - invalid symbol in expression. Label expressions and relationship type expressions cannot contain `{ $input }`. To express a label disjunction use `{ $labelExpr }` instead. + +=== 42I25 + +Status description:: error: syntax error or access rule violation - invalid use of `CALL IN TRANSACTIONS`. 'CALL { ... } IN TRANSACTIONS' is not supported after a write clause. + +=== 42I29 + +Status description:: error: syntax error or access rule violation - invalid use of `IS`. The `IS` keyword cannot be used together with multiple labels in `{ $input }`. Rewrite the expression as `{ $replacement }`. + +=== 42I31 + +Status description:: error: syntax error or access rule violation - invalid use of `MATCH`. 'MATCH ...' cannot directly follow an 'OPTIONAL MATCH ...'. Use a `WITH` clause between them. + + +=== 42I37 + +Status description:: error: syntax error or access rule violation - invalid use of `RETURN *`. 'RETURN *' is not allowed when there are no variables in scope. + +=== 42I38 + +Status description:: error: syntax error or access rule violation - invalid use of `RETURN`. 'RETURN ...' can only be used at the end of a query or subquery. + +=== 42I40 + +Status description:: error: syntax error or access rule violation - invalid use of `UNION` and `UNION ALL`. `UNION` and `UNION ALL` cannot be combined. + +=== 42I47 + +Status description:: error: syntax error or access rule violation - parser error. Parser Error: `{ $msg }`. + === 42I50 -Status description:: error: syntax error or access rule violation - token name too long. Invalid input { $input }... A { $tokenType } name cannot be longer than { $maxTokenLength }. +Status description:: error: syntax error or access rule violation - token name too long. Invalid input `{ $input }..`. A `{ $tokenType }` name cannot be longer than `{ $maxTokenLength }`. + +=== 42N00 + +Status description:: error: syntax error or access rule violation - no such database. The database `{ $db }` was not found. Verify that the spelling is correct. === 42N01 -Status description:: error: syntax error or access rule violation - no such constituent graph exists in composite database. The constituent graph { $graph } was not found in the in composite database { $db }. Verify that the spelling is correct. +Status description:: error: syntax error or access rule violation - no such constituent graph exists in composite database. The constituent graph `{ $graph }` was not found in the in composite database `{ $db }`. Verify that the spelling is correct. === 42N02 @@ -331,71 +453,118 @@ Status description:: error: syntax error or access rule violation - writing in r === 42N03 -Status description:: error: syntax error or access rule violation - writing to multiple graphs. Writing to multiple graphs in the same transaction is not allowed. Use CALL IN TRANSACTION or create separate transactions in your application. +Status description:: error: syntax error or access rule violation - writing to multiple graphs. Writing to multiple graphs in the same transaction is not allowed. Use `CALL IN TRANSACTION` or create separate transactions in your application. === 42N04 -Status description:: error: syntax error or access rule violation - unsupported access of composite database. Failed to access database identified by { $db1 } while connected to session database { $db2 }. Connect to { $db3 } directly. +Status description:: error: syntax error or access rule violation - unsupported access of composite database. Failed to access database identified by `{ $db1 }` while connected to session database `{ $db2 }`. Connect to `{ $db3 }` directly. === 42N05 -Status description:: error: syntax error or access rule violation - unsupported access of standard database. Failed to access database identified by { $db1 } while connected to composite session database { $db2 }. Connect to { $db3 } directly or create an alias in the composite database. +Status description:: error: syntax error or access rule violation - unsupported access of standard database. Failed to access database identified by `{ $db1 }` while connected to composite session database `{ $db2 }`. Connect to `{ $db3 }` directly or create an alias in the composite database. === 42N06 -Status description:: error: syntax error or access rule violation - unsupported action on composite database. { $action } is not supported on composite databases. +Status description:: error: syntax error or access rule violation - unsupported action on composite database. `{ $action }` is not supported on composite databases. === 42N07 -Status description:: error: syntax error or access rule violation - variable shadowing. The variable { $variable } is shadowing a variable with the same name from the outer scope and needs to be renamed. +Status description:: error: syntax error or access rule violation - variable shadowing. The variable `{ $variable }` is shadowing a variable with the same name from the outer scope and needs to be renamed. === 42N08 -Status description:: error: syntax error or access rule violation - no such procedure or function. The procedure or function { $procFun } was not registered for this database instance. Verify that the spelling is correct. +Status description:: error: syntax error or access rule violation - no such procedure or function. The procedure or function `{ $procFun }` was not registered for this database instance. Verify that the spelling is correct. === 42N09 -Status description:: error: syntax error or access rule violation - no such user. A user with the name { $user } was not found. Verify that the spelling is correct. +Status description:: error: syntax error or access rule violation - no such user. A user with the name `{ $user }` was not found. Verify that the spelling is correct. === 42N10 -Status description:: error: syntax error or access rule violation - no such role. A role with the name { $role } was not found. Verify that the spelling is correct. +Status description:: error: syntax error or access rule violation - no such role. A role with the name `{ $role }` was not found. Verify that the spelling is correct. === 42N11 -Status description:: error: syntax error or access rule violation - database or alias already exists. A [composite] database or alias with the name { $db } already exists. +Status description:: error: syntax error or access rule violation - database or alias already exists. A `[composite]` database or alias with the name `{ $db }` already exists. === 42N12 -Status description:: error: syntax error or access rule violation - user already exists. A user with the name { $user } already exists. +Status description:: error: syntax error or access rule violation - user already exists. A user with the name `{ $user }` already exists. === 42N13 -Status description:: error: syntax error or access rule violation - role already exists. A role with the name { $role } already exists. +Status description:: error: syntax error or access rule violation - role already exists. A role with the name `{ $role }` already exists. === 42N14 -Status description:: error: syntax error or access rule violation - invalid use of command. { $clause } cannot be used together with { $cmd }. +Status description:: error: syntax error or access rule violation - invalid use of command. `{ $clause }` cannot be used together with `{ $cmd }`. === 42N15 -Status description:: error: syntax error or access rule violation - invalid use of reserved keyword. { $syntax } is a reserved keyword and cannot be used in this place. +Status description:: error: syntax error or access rule violation - invalid use of reserved keyword. `{ $syntax }` is a reserved keyword and cannot be used in this place. === 42N16 -Status description:: error: syntax error or access rule violation - unsupported index or constraint. Only single property { $idxType } are supported. +Status description:: error: syntax error or access rule violation - unsupported index or constraint. Only single property `{ $idxType }` are supported. === 42N17 -Status description:: error: syntax error or access rule violation - unsupported request. { $input } is not allowed on the system database. +Status description:: error: syntax error or access rule violation - unsupported request. `{ $input }` is not allowed on the system database. + +=== 42N19 + +Status description:: error: syntax error or access rule violation - duplicate clause. Duplicate `{ $syntax }` clause. + +=== 42N20 + +Status description:: error: syntax error or access rule violation - empty list range operator. The list range operator '[ ]' cannot be empty. + + +=== 42N21 + +Status description:: error: syntax error or access rule violation - unaliased return item. Expression in `{ $clause }` must be aliased (use AS). + + +=== 42N22 + +Status description:: error: syntax error or access rule violation - single return column required. A `COLLECT` subquery must end with a single return column. + +=== 42N29 + +Status description:: error: syntax error or access rule violation - unbound variables in pattern expression. Pattern expressions are not allowed to introduce new variables: `{ $var }`. + +=== 42N39 + +Status description:: error: syntax error or access rule violation - incompatible return columns. All subqueries in a `UNION` clause must have the same return column names. + +=== 42N45 + +Status description:: error: syntax error or access rule violation - unexpected end of input. Unexpected end of input, expected 'CYPHER', 'EXPLAIN', 'PROFILE' or a query. === 42N49 -Status description:: error: syntax error or access rule violation - unsupported normal form. Unknown Normal Form: { $input }. +Status description:: error: syntax error or access rule violation - unsupported normal form. Unknown Normal Form: `{ $input }`. + +=== 42N57 + +Status description:: error: syntax error or access rule violation - invalid use of data-modifications in expressions. `{ $expr }` cannot contain any updating clauses. + +=== 42N70 + +Status description:: error: syntax error or access rule violation - function without required WHERE clause. The function `{ $fun }` requires a WHERE clause. === 42N75 -Status description:: error: syntax error or access rule violation - invalid use of graph function. A call to the graph function { $fun } is only allowed as the top-level argument of a USE clause. +Status description:: error: syntax error or access rule violation - invalid use of graph function. A call to the graph function `{ $fun }` is only allowed as the top-level argument of a `USE` clause. + +=== 42N76 + +Status description:: error: syntax error or access rule violation - unfulfillable hints. The hint(s) `{ $hintAndedList }` cannot be fulfilled. + +=== 42N78 + +Status description:: error: syntax error or access rule violation - variable already bound. Node `{ $var }` has already been bound and cannot be modified by the `{ $clause }` clause. + === 42N83 @@ -403,12 +572,16 @@ Status description:: error: syntax error or access rule violation - impersonatio === 42N84 -Status description:: error: syntax error or access rule violation - TERMINATE TRANSACTION misses YIELD clause. WHERE clause without YIELD clause. Use 'TERMINATE TRANSACTION ... YIELD ... WHERE ...'. +Status description:: error: syntax error or access rule violation - `TERMINATE TRANSACTION` misses `YIELD` clause. `WHERE` clause without `YIELD` clause. Use 'TERMINATE TRANSACTION ... YIELD ... WHERE ...'. === 42N85 Status description:: error: syntax error or access rule violation - cannot specify both allowed and denied databases. Allowed and denied database options are mutually exclusive. +=== 42N86 + +Status description:: error: syntax error or access rule violation - wildcard in parameter. `{ $syntax }` failed. Parameterized database and graph names do not support wildcards. + === 42N88 Status description:: error: syntax error or access rule violation - cannot grant privilege. Permission cannot be granted for 'REMOVE IMMUTABLE PRIVILEGE'. @@ -419,7 +592,20 @@ Status description:: error: syntax error or access rule violation - invalid driv === 42N90 -Status description:: error: syntax error or access rule violation - cannot alter immutable composite database. Composite databases cannot be altered (database: { $db }). +Status description:: error: syntax error or access rule violation - cannot alter immutable composite database. Composite databases cannot be altered (database: `{ $db }`). + +=== 42N97 + +Status description:: error: syntax error or access rule violation - missing mandatory auth clause. Clause `{ $clause }` is mandatory for auth provider `{ $auth }`. + + +=== 42N98 + +Status description:: error: syntax error or access rule violation - cannot modify own user. Cannot modify the user record of the current user. + +=== 42N99 + +Status description:: error: syntax error or access rule violation - cannot delete own user. Cannot delete the user record of the current user. === 42NFD @@ -810,4 +996,4 @@ Status description:: error: procedure exception - wrong database. Change identif === 52N32 -Status description:: error: procedure exception - invalid sequence number. Change identifier `{ $param1 }` has an invalid sequence number `{ $param2 }`. \ No newline at end of file +Status description:: error: procedure exception - invalid sequence number. Change identifier `{ $param1 }` has an invalid sequence number `{ $param2 }`. From 419441eade0c58a818319362a0ab825b6f28f970 Mon Sep 17 00:00:00 2001 From: NataliaIvakina <82437520+NataliaIvakina@users.noreply.github.com> Date: Mon, 28 Oct 2024 15:20:07 +0100 Subject: [PATCH 26/45] Add the rest of Neo4j defined GQLSTATUS codes for data exceptions (#200) Co-authored-by: Louise Berglund --- modules/ROOT/pages/errors/gql-errors.adoc | 351 ++++++++++++++++++++-- 1 file changed, 334 insertions(+), 17 deletions(-) diff --git a/modules/ROOT/pages/errors/gql-errors.adoc b/modules/ROOT/pages/errors/gql-errors.adoc index d0adc0c3..fe85e2be 100644 --- a/modules/ROOT/pages/errors/gql-errors.adoc +++ b/modules/ROOT/pages/errors/gql-errors.adoc @@ -107,7 +107,7 @@ Status description:: error: data exception - unsupported value. The provided val === 22N01 Status description:: error: data exception - invalid type. -Expected the value `{ $value }` to be of type `{ $valueTypeList }, but was of type `{ $valueType }`. +Expected the value `{ $value }` to be of type `{ $valueTypeList }`, but was of type `{ $valueType }`. === 22N02 @@ -129,6 +129,8 @@ Status description:: error: data exception - input failed validation. Invalid in Status description:: error: data exception - empty input string. Invalid input. `{ $option }` needs to be specified. +// Example error message:: 22N06: Invalid input. 'myOption' needs to be specified. + === 22N07 Status description:: error: data exception - invalid pre-parser option key. Invalid pre-parser option(s): `{ $optionList }`. @@ -145,13 +147,13 @@ Status description:: error: data exception - conflicting pre-parser combination. Status description:: error: data exception - invalid pre-parser option value. Invalid pre-parser option, specified `{ $input }` is not valid for option `{ $option }`. Valid options are: `{ $optionList }`. -=== 22N11 +// === 22N11 -Status description:: error: data exception - invalid argument. Invalid argument: cannot process `{ $input }`. +// Status description:: error: data exception - invalid argument. Invalid argument: cannot process `{ $input }`. -=== 22N12 +// === 22N12 -Status description:: error: data exception - invalid date, time, or datetime format. Invalid argument: cannot process `{ $input }`. +// Status description:: error: data exception - invalid date, time, or datetime format. Invalid argument: cannot process `{ $input }`. === 22N13 @@ -165,9 +167,9 @@ Status description:: error: data exception - invalid temporal value combination. Status description:: error: data exception - invalid temporal component. Cannot read the specified `{ $component }` component from `{ $temporal }`. -=== 22N16 +// === 22N16 -Status description:: error: data exception - invalid import value. Importing entity values to a graph with a USE clause is not supported. Attempted to import `{ $expr }` to `{ $graph }`. +// Status description:: error: data exception - invalid import value. Importing entity values to a graph with a USE clause is not supported. Attempted to import `{ $expr }` to `{ $graph }`. // === 22N17 @@ -175,7 +177,7 @@ Status description:: error: data exception - invalid import value. Importing ent === 22N18 -Status description:: error: data exception - incomplete spatial value. A `{ $crs }` `POINT` must contain `{ $mapKeyList }`. +Status description:: error: data exception - incomplete spatial value. A `{ $crs }` POINT must contain `{ $mapKeyList }`. === 22N19 @@ -183,11 +185,11 @@ Status description:: error: data exception - invalid spatial value. A `POINT` mu === 22N20 -Status description:: error: data exception - invalid spatial value dimensions. Cannot create `POINT` with `{ $dim1 }D` coordinate reference system (CRS) and `{ $value }` coordinates. Use the equivalent `{ $dim2 }D` coordinate reference system instead. +Status description:: error: data exception - invalid spatial value dimensions. Cannot create POINT with `{ $dim1 }D` coordinate reference system (CRS) and `{ $value }` coordinates. Use the equivalent `{ $dim2 }D` coordinate reference system instead. -=== 22N21 +// === 22N21 -Status description:: error: data exception - unsupported coordinate reference system. Unsupported coordinate reference system (CRS): `{ $crs }`. +// Status description:: error: data exception - unsupported coordinate reference system. Unsupported coordinate reference system (CRS): `{ $crs }`. === 22N22 @@ -195,15 +197,15 @@ Status description:: error: data exception - invalid spatial value combination. === 22N23 -Status description:: error: data exception - invalid latitude value. Cannot create WGS84 `POINT` with invalid coordinate: `{ $coordinates }`. The valid range for the latitude coordinate is `[-90, 90]`. +Status description:: error: data exception - invalid latitude value. Cannot create WGS84 POINT with invalid coordinate: `{ $coordinates }`. The valid range for the latitude coordinate is [-90, 90]. === 22N24 Status description:: error: data exception - invalid coordinate arguments. Cannot construct a `{ $valueType }` from `{ $coordinates }`. -=== 22N25 +// === 22N25 -Status description:: error: data exception - invalid temporal arguments. Cannot construct a `{ $valueType }` from `{ $temporal }`. +// Status description:: error: data exception - invalid temporal arguments. Cannot construct a `{ $valueType }` from `{ $temporal }`. === 22N26 @@ -213,6 +215,322 @@ Status description:: error: data exception - unsupported rounding mode. Unknown Status description:: error: data exception - invalid entity type. Invalid input `{ $input }` for `{ $variable }`. Expected to be one of `{ $valueTypeList }`. +// === 22N28 + +// Status description:: error: data exception - overflow error. The result of the operation `{ $operation }` has caused an overflow. + +// === 22N29 + +// Status description:: error: data exception - unsupported coordinate reference system. Unknown coordinate reference system (CRS). + +// === 22N30 + +// Status description:: error: data exception - missing temporal unit. At least one temporal unit must be specified. + +// === 22N31 + +// Status description:: error: data exception - invalid properties in merge pattern. 'MERGE' cannot be used with graph element property values that are null or NaN. + +=== 22N32 + +Status description:: error: data exception - non-deterministic sort expression. 'ORDER BY' expressions must be deterministic. + +=== 22N33 + +Status description:: error: data exception - invalid shortest path expression. Shortest path expressions must contain start and end nodes. Cannot find: `{ $variable }`. + +// === 22N34 + +// Status description:: error: data exception - invalid use of aggregate function. Cannot use the `{ $fun }` function inside an aggregate function. + +// === 22N35 + +// Status description:: error: data exception - invalid date format. Cannot parse `{ $input }` as a DATE. Calendar dates need to be specified using the format 'YYYY-MM', while ordinal dates need to be specified using the format 'YYYY-DDD'. + +// === 22N36 + +// Status description:: error: data exception - invalid temporal format. Cannot parse `{ $input }` as a `{ $valueType }`. + +// === 22N37 + +// Status description:: error: data exception - invalid coercion. Cannot coerce `{ $value }` to `{ $valueType }`. + +// === 22N38 + +// Status description:: error: data exception - invalid function argument type. Expected argument to the `{ $fun }` function to be one of `{ $valueTypeList }`, but provided argument `{ $value }` is of type `{ $valueType }`. + +// === 22N39 + +// Status description:: error: data exception - unsupported property value type. Value `{ $value }` cannot be stored in properties. + +// === 22N40 + +// Status description:: error: data exception - non-assignable temporal component. Cannot assign `{ $component }` of a `{ $valueType }`. + +=== 22N41 + +Status description:: error: data exception - merge node uniqueness constraint violation. The 'MERGE' clause did not find a matching node `{ $variable }` and cannot create a new node due to conflicts with existing uniqueness constraints. + +=== 22N42 + +Status description:: error: data exception - merge relationship uniqueness constraint violation. The 'MERGE' clause did not find a matching relationship `{ $variable }` and cannot create a new relationship due to conflicts with existing uniqueness constraints. + +=== 22N43 + +Status description:: error: data exception - unable to load external resource. Could not load external resource from `{ $url }`. + +=== 22N44 + +Status description:: error: data exception - parallel runtime disabled. Parallel runtime has been disabled, enable it or upgrade to a bigger Aura instance. + +=== 22N46 + +Status description:: error: data exception - unsupported use of parallel runtime. Parallel runtime does not support updating queries or a change in the state of transactions. Use another runtime. + +=== 22N47 + +Status description:: error: data exception - invalid parallel runtime configuration. No workers are configured for the parallel runtime. Set 'server.cypher.parallel.worker_limit' to a larger value. + +// === 22N48 + +// Status description:: error: data exception - unable to use specified runtime. Cannot use the specified runtime `{ $runtime }` due to `{ $cause }`. Use another runtime. + +=== 22N49 + +Status description:: error: data exception - CSV buffer size overflow. Cannot read a CSV field larger than the set buffer size. Ensure the field does not have an unterminated quote, or increase the buffer size via 'dbms.import.csv.buffer_size'. + +=== 22N51 + +Status description:: error: data exception - database or alias does not exist. A [composite] database or alias with the name `{ $db }` does not exist. Verify that the spelling is correct. + +=== 22N52 + +Status description:: error: data exception - invalid combination of PROFILE and EXPLAIN. 'PROFILE' and 'EXPLAIN' cannot be combined. + +=== 22N53 + +Status description:: error: data exception - invalid use of PROFILE. Cannot 'PROFILE' query before results are materialized. + +=== 22N54 + +Status description:: error: data exception - invalid map. Multiple conflicting entries specified for `{ $mapKey }`. + +// === 22N55 + +// Status description:: error: data exception - required key missing from map. Map requires key `{ $mapKey }` but was missing from field `{ $field }`. + +=== 22N56 + +Status description:: error: data exception - protocol message length limit overflow. Protocol message length limit exceeded (limit: `{ $boltMsgLenLimit }`). + +// === 22N57 + +// Status description:: error: data exception - invalid protocol type. Protocol type is invalid. Invalid number of struct components (received `{ $count1 }` but expected `{ $count2 }`). + +// === 22N58 + +// Status description:: error: data exception - invalid spatial component. Cannot read the specified `{ $component }` component from `{ $value }`. + +// === 22N59 + +// Status description:: error: data exception - token does not exist. The `{ $tokenType }` token with id `{ $tokenId }` does not exist. + +// === 22N62 + +// Status description:: error: data exception - relationship type does not exist. The relationship type `{ $relType }` does not exist. + +// === 22N63 + +// Status description:: error: data exception - property key does not exist. The property key `{ $propKey }` does not exist. + +// === 22N64 + +// Status description:: error: data exception - constraint does not exist. The constraint `{ $constrDescrOrName }` does not exist. + +// === 22N65 + +// Status description:: error: data exception - equivalent constraint already exists. An equivalent constraint already exists: `{ $constrDescrOrName }`. + +=== 22N66 + +Status description:: error: data exception - conflicting constraint already exists. A conflicting constraint already exists: `{ $constrDescrOrName }`. + +=== 22N67 + +Status description:: error: data exception - duplicated constraint name. A constraint with the same name already exists: `{ $constr }`. + +// === 22N68 + +// Status description:: error: data exception - dependent constraint managed individually. Dependent constraints cannot be managed individually and must be managed together with its graph type. + +=== 22N69 + +Status description:: error: data exception - index does not exist. The index specified by `{ $idxDescrOrName }` does not exist. + +// === 22N70 + +// Status description:: error: data exception - equivalent index already exists. An equivalent index already exists: `{ $idxDescrOrName }`. + +=== 22N71 + +Status description:: error: data exception - index with the same name already exists. An index with the same name already exists: `{ $idx }`. + +// === 22N72 + +// Status description:: error: data exception - index required by existing constraint. A requested operation can not be performed on the specified index because the index is part of a constraint. + +// === 22N73 + +// Status description:: error: data exception - constraint conflicts with existing index. Constraint conflicts with already existing index `{ $idx }`. + +// === 22N74 + +// Status description:: error: data exception - index conflicts with existing constraint. An index that belongs to the constraint `{ $constr }` contains a conflicting index. + +// === 22N75 + +// Status description:: error: data exception - constraint contains duplicated tokens. The constraint specified by `{ $constrDescrOrName }` includes a label, relationship type, a property key with name `{ $token }` more than once. + +// === 22N76 + +// Status description:: error: data exception - index contains duplicated tokens. The index specified by `{ $idxDescrOrName }` includes a label, relationship type, a property key with name `{ $token }` more than once. + +=== 22N77 + +Status description:: error: data exception - property presence verification failed. `{ $entityType }` (`{ $entityId }`) with `{ $tokenType }` `{ $token }` must have the following properties: `{ $propKeyList }`. + +=== 22N78 + +Status description:: error: data exception - property type verification failed. `{ $entityType }` (`{ $entityId }`) with `{ $tokenType }` `{ $token }` must have the property `$propKey` with value type `{ $valueType }`. + +// === 22N79 + +// Status description:: error: data exception - property uniqueness constraint violated. Property uniqueness constraint violated: `{ $reasons }`. + +// === 22N81 + +// Status description:: error: data exception - expression type unsupported here. Invalid input: `{ $exprType }` is not supported in `{ $context }`. + +// === 22N82 + +// Status description:: error: data exception - input contains invalid characters. Input `{ $input }` contains invalid characters for `{ $context }`. Allowed characters are `{ $characterRangeList }`. To use these characters, the input needs to be quoted using backticks. + +// === 22N83 + +// Status description:: error: data exception - input consists of too many components. Expected name to contain at most `{ $upper }` components separated by '.'. + +=== 22N84 + +Status description:: error: data exception - string too long. Expected the string to be no more than `{ $upper }` characters long. + +=== 22N85 + +Status description:: error: data exception - string too short. Expected the string to be at least `{ $lower }` characters long. + +=== 22N86 + +Status description:: error: data exception - numeric range 0 disallowed. Expected a nonzero number. + +// === 22N87 + +// Status description:: error: data exception - numeric range 0 or greater allowed. Expected a number that is zero or greater. + +// === 22N88 + +// Status description:: error: data exception - not a valid CIDR IP. `{ $input }` is not a valid CIDR IP. + +=== 22N89 + +Status description:: error: data exception - new password cannot be the same as the old password. Expected the new password to be different from the old password. + +=== 22N90 + +Status description:: error: data exception - property type unsupported in constraint. `{ $item }` is not supported in property type constraints. + +=== 22N91 + +Status description:: error: data exception - cannot convert alias local to remote or remote to local. Failed to alter the specified database alias `{ $alias }`. Altering remote alias to a local alias or vice versa is not supported. Drop and recreate the alias instead. + +// === 22N92 + +// Status description:: error: data exception - missing RETURN. This query requires a RETURN clause. + +// === 22N93 + +// Status description:: error: data exception - missing YIELD. A required YIELD clause is missing. + +// === 22N94 + +// Status description:: error: data exception - invalid YIELD *. 'YIELD *' is not supported in this context. Explicitly specify which columns to yield. + +=== 22N95 + +Status description:: error: data exception - parsing JSON exception. Invalid JSON input. Please check the format. + +=== 22N96 + +Status description:: error: data exception - mapping JSON exception. Unable to map the JSON input. Please verify the structure. + +=== 22N97 + +Status description:: error: data exception - unexpected struct tag. Unexpected struct tag: `{ $value }`. + +=== 22N98 + +Status description:: error: data exception - wrong first field during deserialization. Unable to deserialize request. Expected first field to be `{ $field }`, but was '{ $value }'. + +=== 22N99 + +Status description:: error: data exception - wrong token during deserialization. Unable to deserialize request. Expected `{ $token }`, found `{ $value }`. + +=== 22NA0 + +Status description:: error: data exception - invalid property based access control rule. Failed to administer property rule. + +// === 22NA1 + +// Status description:: error: data exception - invalid property based access control rule involving non-commutative expressions. The property `{ $propKey }` must appear on the left hand side of the `{ $operation }` operator. + +// === 22NA2 + +// Status description:: error: data exception - invalid property based access control rule involving multiple properties. The expression: `{ $expr }` is not supported. Property rules can only contain one property. + +// === 22NA3 + +// Status description:: error: data exception - invalid property based access control rule involving NaN. 'NaN' is not supported for property-based access control. + +=== 22NA4 + +Status description:: error: data exception - invalid property based access control rule involving comparison with NULL. The property value access rule pattern `{ $pred }` always evaluates to 'NULL'. + +=== 22NA5 + +Status description:: error: data exception - invalid property based access control rule involving IS NULL. The property value access rule pattern `{ $pred }` always evaluates to 'NULL'. Use `IS NULL' instead. + +=== 22NA6 + +Status description:: error: data exception - invalid property based access control rule involving IS NOT NULL. The property value access rule pattern `{ $pred }` always evaluates to 'NULL'. Use 'IS NOT NULL' instead. + +// === 22NA7 + +// Status description:: error: data exception - invalid property based access control rule involving nontrivial predicates. The expression: `{ $expr }` is not supported. Only single, literal-based predicate expressions are allowed for property-based access control. + +=== 22NA8 + +Status description:: error: data exception - parsing JSON failure. Underlying error: `{ $cause }`. + +// === 22NA9 + +// Status description:: error: data exception - unexpected map entry. Invalid input. Unexpected key `{ $key }`, expected keys are `{ $listAllowedKeys }`. + +// === 22NB0 + +// Status description:: error: data exception - invalid property based access control rule involving WHERE and IS NULL. The property value access rule pattern `{ $pred }` always evaluates to 'NULL'. Use `WHERE' syntax in combination with `IS NULL` instead. + +// === 22NFF + +// Status description:: error: data exception - referent does not exist. The referent of the specified reference does not exist. + == Invalid transaction state @@ -220,7 +538,7 @@ Invalid transaction state errors occur when the transaction is in an invalid sta === 25N01 -Status description:: error: invalid transaction state - invalid combination of statement types.Failed to execute the query `{ $query }` due to conflicting statement types (read query, write query, schema modification, or administration command). To execute queries in the same transaction, they must be either of the same type, or be a combination of schema modifications and read commands. +Status description:: error: invalid transaction state - invalid combination of statement types. Failed to execute the query `{ $query }` due to conflicting statement types (read query, write query, schema modification, or administration command). To execute queries in the same transaction, they must be either of the same type, or be a combination of schema modifications and read commands. === 25N02 @@ -565,7 +883,6 @@ Status description:: error: syntax error or access rule violation - unfulfillabl Status description:: error: syntax error or access rule violation - variable already bound. Node `{ $var }` has already been bound and cannot be modified by the `{ $clause }` clause. - === 42N83 Status description:: error: syntax error or access rule violation - impersonation disallowed while password change required. Cannot impersonate a user while password change required. @@ -588,7 +905,7 @@ Status description:: error: syntax error or access rule violation - cannot grant === 42N89 -Status description:: error: syntax error or access rule violation - invalid driver settings map. Failed evaluating the given driver settings. { $cause } +Status description:: error: syntax error or access rule violation - invalid driver settings map. Failed evaluating the given driver settings. `{ $cause }` === 42N90 From 01b7e93cbcf855fd58b796708552de18a03a3f9a Mon Sep 17 00:00:00 2001 From: NataliaIvakina <82437520+NataliaIvakina@users.noreply.github.com> Date: Wed, 30 Oct 2024 14:19:16 +0100 Subject: [PATCH 27/45] Add standard defined GQLSTATUS codes for data exceptions (#201) Co-authored-by: Louise Berglund --- modules/ROOT/pages/errors/gql-errors.adoc | 12 ++++++++++-- 1 file changed, 10 insertions(+), 2 deletions(-) diff --git a/modules/ROOT/pages/errors/gql-errors.adoc b/modules/ROOT/pages/errors/gql-errors.adoc index fe85e2be..e1b5ae52 100644 --- a/modules/ROOT/pages/errors/gql-errors.adoc +++ b/modules/ROOT/pages/errors/gql-errors.adoc @@ -100,6 +100,14 @@ Status description:: error: connection exception - no such routing policy. Polic Database exceptions occur when a client request contains the wrong format, types, or other unsupported input. Some examples are data and constraint creation, which conflicts with existing constraints, properties of non-storable type, and spatial and temporal values with invalid components. +=== 22000 + +Status description:: error: data exception + +=== 22003 + +Status description:: error: data exception - numeric value out of range. The numeric value `{ $value }` is outside the required range. + === 22N00 Status description:: error: data exception - unsupported value. The provided value is unsupported and cannot be processed. @@ -435,9 +443,9 @@ Status description:: error: data exception - numeric range 0 disallowed. Expecte // Status description:: error: data exception - numeric range 0 or greater allowed. Expected a number that is zero or greater. -// === 22N88 +=== 22N88 -// Status description:: error: data exception - not a valid CIDR IP. `{ $input }` is not a valid CIDR IP. +Status description:: error: data exception - not a valid CIDR IP. `{ $input }` is not a valid CIDR IP. === 22N89 From f87b6d4f3a982c6bb95e9588762139cf9eb56682 Mon Sep 17 00:00:00 2001 From: Reneta Popova Date: Wed, 30 Oct 2024 17:56:12 +0000 Subject: [PATCH 28/45] remove gql standard notifications (#204) --- modules/ROOT/pages/notifications/index.adoc | 20 -------------------- 1 file changed, 20 deletions(-) diff --git a/modules/ROOT/pages/notifications/index.adoc b/modules/ROOT/pages/notifications/index.adoc index c0e3f4d7..1fd25f28 100644 --- a/modules/ROOT/pages/notifications/index.adoc +++ b/modules/ROOT/pages/notifications/index.adoc @@ -93,26 +93,6 @@ Additional helper methods are exposed for some useful fields. !=== |=== -=== Standard-defined GQLSTATUS notification codes - -The GQL standard defines a set of GQLSTATUS codes that are used to represent successful completion, warnings, and informational messages. -The following table lists the standard-defined GQLSTATUS codes and their meanings: - -.Standard-defined GQLSTATUS notification codes -[options="header", cols="<1s,<4"] -|=== -|GQLSTATUS code | StatusDescription -| 00000 | note: successful completion -| 00001 | note: successful completion - omitted result -| 01000 | warn: warning -| 01004 | warn: string data, right truncation -| 01G03 | warn: graph does not exist -| 01G04 | warn: graph type does not exist -| 01G11 | warn: null value eliminated in set function -| 02000 | note: no data -| 03000 | info: informational -|=== - [[general-codes-for-success]] === General codes for success From b1063413139951363976278e41cb5f3f38eeadb1 Mon Sep 17 00:00:00 2001 From: Louise Berglund Date: Fri, 1 Nov 2024 13:15:43 +0100 Subject: [PATCH 29/45] Update messages for 22N04 and 22N27 (#210) It was decided to remove "on of" from these messages as it sounds weird when there is only one element in the list. --- modules/ROOT/pages/errors/gql-errors.adoc | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/modules/ROOT/pages/errors/gql-errors.adoc b/modules/ROOT/pages/errors/gql-errors.adoc index e1b5ae52..ef0ae6eb 100644 --- a/modules/ROOT/pages/errors/gql-errors.adoc +++ b/modules/ROOT/pages/errors/gql-errors.adoc @@ -127,7 +127,7 @@ Status description:: error: data exception - specified numeric value out of rang === 22N04 -Status description:: error: data exception - invalid input value. Invalid input `{ $input }` for `{ $context }`. Expected one of `{ $inputList }`. +Status description:: error: data exception - invalid input value. Invalid input `{ $input }` for `{ $context }`. Expected `{ $inputList }`. === 22N05 @@ -221,7 +221,7 @@ Status description:: error: data exception - unsupported rounding mode. Unknown === 22N27 -Status description:: error: data exception - invalid entity type. Invalid input `{ $input }` for `{ $variable }`. Expected to be one of `{ $valueTypeList }`. +Status description:: error: data exception - invalid entity type. Invalid input `{ $input }` for `{ $variable }`. Expected to be `{ $valueTypeList }`. // === 22N28 From 28f6462657bc65d089558c9161714f0697e8b111 Mon Sep 17 00:00:00 2001 From: Neil Dewhurst Date: Thu, 7 Nov 2024 10:31:11 +0000 Subject: [PATCH 30/45] Add package-lock.json to .gitignore (#215) --- .gitignore | 1 + 1 file changed, 1 insertion(+) diff --git a/.gitignore b/.gitignore index 423fe4a9..fe2705f5 100644 --- a/.gitignore +++ b/.gitignore @@ -35,6 +35,7 @@ target/ # docs project .env +package-lock.json node_modules/ worktrees/ */modules/api/ \ No newline at end of file From 64080f78a7fdef48e05dc62881979248624f484b Mon Sep 17 00:00:00 2001 From: Neil Dewhurst Date: Thu, 7 Nov 2024 11:13:48 +0000 Subject: [PATCH 31/45] Delete package-lock.json --- package-lock.json | 5675 --------------------------------------------- 1 file changed, 5675 deletions(-) delete mode 100644 package-lock.json diff --git a/package-lock.json b/package-lock.json deleted file mode 100644 index e07689a4..00000000 --- a/package-lock.json +++ /dev/null @@ -1,5675 +0,0 @@ -{ - "name": "status-codes", - "version": "1.0.0", - "lockfileVersion": 2, - "requires": true, - "packages": { - "": { - "name": "status-codes", - "version": "1.0.0", - "license": "ISC", - "dependencies": { - "@antora/cli": "^3.1.7", - "@antora/site-generator-default": "^3.1.7", - "@neo4j-antora/antora-modify-sitemaps": "^0.4.4", - "@neo4j-antora/antora-table-footnotes": "^0.3.2", - "@neo4j-documentation/macros": "^1.0.2", - "@neo4j-documentation/remote-include": "^1.0.0" - }, - "devDependencies": { - "express": "^5.0.1", - "nodemon": "^3.1.0" - } - }, - "node_modules/@antora/asciidoc-loader": { - "version": "3.1.7", - "resolved": "https://registry.npmjs.org/@antora/asciidoc-loader/-/asciidoc-loader-3.1.7.tgz", - "integrity": "sha512-sM/poPtAi8Cx0g2oLGHoEYjTdE9pvIYLgbHW07fGf6c9wQYMd2DMsevtbhNKWp+xqxj/QinToz4JOaNLoy1nfg==", - "dependencies": { - "@antora/logger": "3.1.7", - "@antora/user-require-helper": "~2.0", - "@asciidoctor/core": "~2.2" - }, - "engines": { - "node": ">=16.0.0" - } - }, - "node_modules/@antora/cli": { - "version": "3.1.7", - "resolved": "https://registry.npmjs.org/@antora/cli/-/cli-3.1.7.tgz", - "integrity": "sha512-yHo30VmiLLsZU4JW8VZR6fql9m5lIxocA2d0tduKQ+r4YSD1kt+bbwX3You3iMwW7oLoNo62zfU76F8CQBnm2g==", - "dependencies": { - "@antora/logger": "3.1.7", - "@antora/playbook-builder": "3.1.7", - "@antora/user-require-helper": "~2.0", - "commander": "~10.0" - }, - "bin": { - "antora": "bin/antora" - }, - "engines": { - "node": ">=16.0.0" - } - }, - "node_modules/@antora/content-aggregator": { - "version": "3.1.7", - "resolved": "https://registry.npmjs.org/@antora/content-aggregator/-/content-aggregator-3.1.7.tgz", - "integrity": "sha512-2gBbxaDxqY4QRw9Vut0IbKNqI9zAAohxjT0zcA5Am10kE3ywvzXaBa3tvb+A7vUl/vRcCC0LPM7pO37RVrbsGA==", - "dependencies": { - "@antora/expand-path-helper": "~2.0", - "@antora/logger": "3.1.7", - "@antora/user-require-helper": "~2.0", - "braces": "~3.0", - "cache-directory": "~2.0", - "glob-stream": "~7.0", - "hpagent": "~1.2", - "isomorphic-git": "~1.25", - "js-yaml": "~4.1", - "multi-progress": "~4.0", - "picomatch": "~2.3", - "progress": "~2.0", - "should-proxy": "~1.0", - "simple-get": "~4.0", - "vinyl": "~2.2" - }, - "engines": { - "node": ">=16.0.0" - } - }, - "node_modules/@antora/content-classifier": { - "version": "3.1.7", - "resolved": "https://registry.npmjs.org/@antora/content-classifier/-/content-classifier-3.1.7.tgz", - "integrity": "sha512-94XwJ35pkWJU6dJqQg5oreJRCkaXwU6yw9XSyB731o4i/0romkazKnu7deHugqdgvzqn92AlMRG6R0clhJLEsw==", - "dependencies": { - "@antora/asciidoc-loader": "3.1.7", - "@antora/logger": "3.1.7", - "mime-types": "~2.1", - "vinyl": "~2.2" - }, - "engines": { - "node": ">=16.0.0" - } - }, - "node_modules/@antora/document-converter": { - "version": "3.1.7", - "resolved": "https://registry.npmjs.org/@antora/document-converter/-/document-converter-3.1.7.tgz", - "integrity": "sha512-cRVJf7QyclxjWbA0gWz7hncZYThIREikkwaxaa26LsRCfBNlw7wxs7lWejvIvEl1LVshupbinJwKUPPQPOsHhw==", - "dependencies": { - "@antora/asciidoc-loader": "3.1.7" - }, - "engines": { - "node": ">=16.0.0" - } - }, - "node_modules/@antora/expand-path-helper": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/@antora/expand-path-helper/-/expand-path-helper-2.0.0.tgz", - "integrity": "sha512-CSMBGC+tI21VS2kGW3PV7T2kQTM5eT3f2GTPVLttwaNYbNxDve08en/huzszHJfxo11CcEs26Ostr0F2c1QqeA==", - "engines": { - "node": ">=10.17.0" - } - }, - "node_modules/@antora/file-publisher": { - "version": "3.1.7", - "resolved": "https://registry.npmjs.org/@antora/file-publisher/-/file-publisher-3.1.7.tgz", - "integrity": "sha512-UH2o0DJuv9BJvWgn+QSE3MhtHB3oN3lG5lJkV3fQi1jAV+qPIHoiTIYhbw02mj5KQ3Qbt7YWWAKZKuGl3rEdjg==", - "dependencies": { - "@antora/expand-path-helper": "~2.0", - "@antora/user-require-helper": "~2.0", - "@vscode/gulp-vinyl-zip": "~2.5", - "vinyl": "~2.2", - "vinyl-fs": "~3.0" - }, - "engines": { - "node": ">=16.0.0" - } - }, - "node_modules/@antora/logger": { - "version": "3.1.7", - "resolved": "https://registry.npmjs.org/@antora/logger/-/logger-3.1.7.tgz", - "integrity": "sha512-Z2tfNIi9G4BnAZq26Kp30974FxCVCtvH46FOi6ClnkJg6Uf2gTrVlJERmtsDTsHjWsf1qKbnj/4b99/AU31iQg==", - "dependencies": { - "@antora/expand-path-helper": "~2.0", - "pino": "~8.14", - "pino-pretty": "~10.0", - "sonic-boom": "~3.3" - }, - "engines": { - "node": ">=16.0.0" - } - }, - "node_modules/@antora/navigation-builder": { - "version": "3.1.7", - "resolved": "https://registry.npmjs.org/@antora/navigation-builder/-/navigation-builder-3.1.7.tgz", - "integrity": "sha512-QvMPb0qY1zfgyLCfuEhJOpO5qSVjaVe5X/bQjSii9vDGgpIEiC2yt/hgqER37E/3zsBGEZvCH5lSLk1c7x0+EQ==", - "dependencies": { - "@antora/asciidoc-loader": "3.1.7" - }, - "engines": { - "node": ">=16.0.0" - } - }, - "node_modules/@antora/page-composer": { - "version": "3.1.7", - "resolved": "https://registry.npmjs.org/@antora/page-composer/-/page-composer-3.1.7.tgz", - "integrity": "sha512-zJMzYznPT6Vd59nEXio/2rolkX070Nup6g4a8d4RCz0WoE8dmMidw6XFgjAHr0Lyh14/FHgBPlYXfhkDFR16Mw==", - "dependencies": { - "@antora/logger": "3.1.7", - "handlebars": "~4.7", - "require-from-string": "~2.0" - }, - "engines": { - "node": ">=16.0.0" - } - }, - "node_modules/@antora/playbook-builder": { - "version": "3.1.7", - "resolved": "https://registry.npmjs.org/@antora/playbook-builder/-/playbook-builder-3.1.7.tgz", - "integrity": "sha512-lU80S1BqUy9DvqziEzRwpYTaWhOshxgrGAjf/F5VjAIaHCGVx0rZgfoI2rgFFkbVaH94kauOngdtTXDPXC1fPQ==", - "dependencies": { - "@iarna/toml": "~2.2", - "convict": "~6.2", - "js-yaml": "~4.1", - "json5": "~2.2" - }, - "engines": { - "node": ">=16.0.0" - } - }, - "node_modules/@antora/redirect-producer": { - "version": "3.1.7", - "resolved": "https://registry.npmjs.org/@antora/redirect-producer/-/redirect-producer-3.1.7.tgz", - "integrity": "sha512-6zAHfcOb0v0829nAbn/3HMilbactjbjU7zBT9Iy6JHQfbqXT/g/mUT9N13Lj/wbq/nm0qKQJweB0Mi6BS2fbMw==", - "dependencies": { - "vinyl": "~2.2" - }, - "engines": { - "node": ">=16.0.0" - } - }, - "node_modules/@antora/site-generator": { - "version": "3.1.7", - "resolved": "https://registry.npmjs.org/@antora/site-generator/-/site-generator-3.1.7.tgz", - "integrity": "sha512-39KWip9bLdQ+4ssyqjI+O0COquKHxoeznxY2/3w5pNZEoeTg8cD7kOsnWfbocw0R3Rj+kJV5MnqICFNq0nuPeA==", - "dependencies": { - "@antora/asciidoc-loader": "3.1.7", - "@antora/content-aggregator": "3.1.7", - "@antora/content-classifier": "3.1.7", - "@antora/document-converter": "3.1.7", - "@antora/file-publisher": "3.1.7", - "@antora/logger": "3.1.7", - "@antora/navigation-builder": "3.1.7", - "@antora/page-composer": "3.1.7", - "@antora/playbook-builder": "3.1.7", - "@antora/redirect-producer": "3.1.7", - "@antora/site-mapper": "3.1.7", - "@antora/site-publisher": "3.1.7", - "@antora/ui-loader": "3.1.7", - "@antora/user-require-helper": "~2.0" - }, - "engines": { - "node": ">=16.0.0" - } - }, - "node_modules/@antora/site-generator-default": { - "version": "3.1.7", - "resolved": "https://registry.npmjs.org/@antora/site-generator-default/-/site-generator-default-3.1.7.tgz", - "integrity": "sha512-m9UbejttKzp8MKJTEc+aKXi5SNb864QO7lQiQzSR0fiWnIR8WIM73CPPwkVeOXdKqaJvQp5IF9rlXXTkkC19fw==", - "dependencies": { - "@antora/site-generator": "3.1.7" - }, - "engines": { - "node": ">=16.0.0" - } - }, - "node_modules/@antora/site-mapper": { - "version": "3.1.7", - "resolved": "https://registry.npmjs.org/@antora/site-mapper/-/site-mapper-3.1.7.tgz", - "integrity": "sha512-x++89btbwk8FxyU2+H/RHQMnsC9sdvQvXcwXwNt11eXN1qj7t8TPiQZTalg7gkf0/osY4l7JRpGBY5JJfOJVig==", - "dependencies": { - "@antora/content-classifier": "3.1.7", - "vinyl": "~2.2" - }, - "engines": { - "node": ">=16.0.0" - } - }, - "node_modules/@antora/site-publisher": { - "version": "3.1.7", - "resolved": "https://registry.npmjs.org/@antora/site-publisher/-/site-publisher-3.1.7.tgz", - "integrity": "sha512-zHaJc7UeBfFSIhBbQ5U5Ud4u671M84oqSJb3pPxlUiJDP7iVJlSl+0GNm0NAIoDizjPtVksUI88fzqCy5rfSUQ==", - "dependencies": { - "@antora/file-publisher": "3.1.7" - }, - "engines": { - "node": ">=16.0.0" - } - }, - "node_modules/@antora/ui-loader": { - "version": "3.1.7", - "resolved": "https://registry.npmjs.org/@antora/ui-loader/-/ui-loader-3.1.7.tgz", - "integrity": "sha512-79QuZB0c91dveoESa3RcE18ZZFJo0rDZX9aJKHVc20dInQBGCgfURPqB2OytkzaXD3lNtDJ41yjKNYZqsAQy1Q==", - "dependencies": { - "@antora/expand-path-helper": "~2.0", - "@vscode/gulp-vinyl-zip": "~2.5", - "braces": "~3.0", - "cache-directory": "~2.0", - "glob-stream": "~7.0", - "hpagent": "~1.2", - "js-yaml": "~4.1", - "picomatch": "~2.3", - "should-proxy": "~1.0", - "simple-get": "~4.0", - "vinyl": "~2.2" - }, - "engines": { - "node": ">=16.0.0" - } - }, - "node_modules/@antora/user-require-helper": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/@antora/user-require-helper/-/user-require-helper-2.0.0.tgz", - "integrity": "sha512-5fMfBZfw4zLoFdDAPMQX6Frik90uvfD8rXOA4UpXPOUikkX4uT1Rk6m0/4oi8oS3fcjiIl0k/7Nc+eTxW5TcQQ==", - "dependencies": { - "@antora/expand-path-helper": "~2.0" - }, - "engines": { - "node": ">=10.17.0" - } - }, - "node_modules/@asciidoctor/core": { - "version": "2.2.6", - "resolved": "https://registry.npmjs.org/@asciidoctor/core/-/core-2.2.6.tgz", - "integrity": "sha512-TmB2K5UfpDpSbCNBBntXzKHcAk2EA3/P68jmWvmJvglVUdkO9V6kTAuXVe12+h6C4GK0ndwuCrHHtEVcL5t6pQ==", - "dependencies": { - "asciidoctor-opal-runtime": "0.3.3", - "unxhr": "1.0.1" - }, - "engines": { - "node": ">=8.11", - "npm": ">=5.0.0", - "yarn": ">=1.1.0" - } - }, - "node_modules/@iarna/toml": { - "version": "2.2.5", - "resolved": "https://registry.npmjs.org/@iarna/toml/-/toml-2.2.5.tgz", - "integrity": "sha512-trnsAYxU3xnS1gPHPyU961coFyLkh4gAD/0zQ5mymY4yOZ+CYvsPqUbOFSw0aDM4y0tV7tiFxL/1XfXPNC6IPg==" - }, - "node_modules/@neo4j-antora/antora-modify-sitemaps": { - "version": "0.4.4", - "resolved": "https://registry.npmjs.org/@neo4j-antora/antora-modify-sitemaps/-/antora-modify-sitemaps-0.4.4.tgz", - "integrity": "sha512-IkXoilOJquZPB5G5ZhrgfSN6U3E2YToWakehtF55RA+CNQS0KboTAB2vUH01+Tkmkd8K6UElf41A6cGnnrvs0g==" - }, - "node_modules/@neo4j-antora/antora-table-footnotes": { - "version": "0.3.2", - "resolved": "https://registry.npmjs.org/@neo4j-antora/antora-table-footnotes/-/antora-table-footnotes-0.3.2.tgz", - "integrity": "sha512-DXEGVHMJumoKiY/ZCaGRTXl2OhPziPCHT+arj18TmpU50sUs+hyjOPuTkUXUvBwNZwm109Nm1PJPvKLVIJCZSg==" - }, - "node_modules/@neo4j-documentation/macros": { - "version": "1.0.2", - "resolved": "https://registry.npmjs.org/@neo4j-documentation/macros/-/macros-1.0.2.tgz", - "integrity": "sha512-83w4HPxt9lx1cR6w/Zi741Fu8/IE8pAGHf3BxIvBE8M+XzdT1f1Y6EpbLFrdZjqKwlcomdhks1/+zxlAbVa1xg==" - }, - "node_modules/@neo4j-documentation/remote-include": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/@neo4j-documentation/remote-include/-/remote-include-1.0.0.tgz", - "integrity": "sha512-SprNp9XsWiMBC0T44vs3JUwEYhoyJlg+du5kP0f9RGewXrSeEgsr5tY7nQDa4Bou9iG0sBl0+2u4XZjiVMkiuw==" - }, - "node_modules/@vscode/gulp-vinyl-zip": { - "version": "2.5.0", - "resolved": "https://registry.npmjs.org/@vscode/gulp-vinyl-zip/-/gulp-vinyl-zip-2.5.0.tgz", - "integrity": "sha512-PP/xkOoLBSY3V04HmzRxF+NOxkRJ/m2D0YwWpfx1FCFv5G8+sZUGPvxX+LRgdJ5vQcR1RHck5x1IkHi75Qjdbw==", - "dependencies": { - "queue": "^4.2.1", - "through": "^2.3.8", - "through2": "^2.0.3", - "vinyl": "^2.0.2", - "vinyl-fs": "^3.0.3", - "yauzl": "^2.2.1", - "yazl": "^2.2.1" - }, - "engines": { - "node": ">= 10" - } - }, - "node_modules/abbrev": { - "version": "1.1.1", - "resolved": "https://registry.npmjs.org/abbrev/-/abbrev-1.1.1.tgz", - "integrity": "sha512-nne9/IiQ/hzIhY6pdDnbBtz7DjPTKrY00P/zvPSm5pOFkl6xuGrGnXn/VtTNNfNtAfZ9/1RtehkszU9qcTii0Q==", - "dev": true - }, - "node_modules/abort-controller": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/abort-controller/-/abort-controller-3.0.0.tgz", - "integrity": "sha512-h8lQ8tacZYnR3vNQTgibj+tODHI5/+l06Au2Pcriv/Gmet0eaj4TwWH41sO9wnHDiQsEj19q0drzdWdeAHtweg==", - "dependencies": { - "event-target-shim": "^5.0.0" - }, - "engines": { - "node": ">=6.5" - } - }, - "node_modules/accepts": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/accepts/-/accepts-2.0.0.tgz", - "integrity": "sha512-5cvg6CtKwfgdmVqY1WIiXKc3Q1bkRqGLi+2W/6ao+6Y7gu/RCwRuAhGEzh5B4KlszSuTLgZYuqFqo5bImjNKng==", - "dev": true, - "dependencies": { - "mime-types": "^3.0.0", - "negotiator": "^1.0.0" - }, - "engines": { - "node": ">= 0.6" - } - }, - "node_modules/accepts/node_modules/mime-db": { - "version": "1.53.0", - "resolved": "https://registry.npmjs.org/mime-db/-/mime-db-1.53.0.tgz", - "integrity": "sha512-oHlN/w+3MQ3rba9rqFr6V/ypF10LSkdwUysQL7GkXoTgIWeV+tcXGA852TBxH+gsh8UWoyhR1hKcoMJTuWflpg==", - "dev": true, - "engines": { - "node": ">= 0.6" - } - }, - "node_modules/accepts/node_modules/mime-types": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/mime-types/-/mime-types-3.0.0.tgz", - "integrity": "sha512-XqoSHeCGjVClAmoGFG3lVFqQFRIrTVw2OH3axRqAcfaw+gHWIfnASS92AV+Rl/mk0MupgZTRHQOjxY6YVnzK5w==", - "dev": true, - "dependencies": { - "mime-db": "^1.53.0" - }, - "engines": { - "node": ">= 0.6" - } - }, - "node_modules/anymatch": { - "version": "3.1.3", - "resolved": "https://registry.npmjs.org/anymatch/-/anymatch-3.1.3.tgz", - "integrity": "sha512-KMReFUr0B4t+D+OBkjR3KYqvocp2XaSzO55UcB6mgQMd3KbcE+mWTyvVV7D/zsdEbNnV6acZUutkiHQXvTr1Rw==", - "dev": true, - "dependencies": { - "normalize-path": "^3.0.0", - "picomatch": "^2.0.4" - }, - "engines": { - "node": ">= 8" - } - }, - "node_modules/append-buffer": { - "version": "1.0.2", - "resolved": "https://registry.npmjs.org/append-buffer/-/append-buffer-1.0.2.tgz", - "integrity": "sha512-WLbYiXzD3y/ATLZFufV/rZvWdZOs+Z/+5v1rBZ463Jn398pa6kcde27cvozYnBoxXblGZTFfoPpsaEw0orU5BA==", - "dependencies": { - "buffer-equal": "^1.0.0" - }, - "engines": { - "node": ">=0.10.0" - } - }, - "node_modules/argparse": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/argparse/-/argparse-2.0.1.tgz", - "integrity": "sha512-8+9WqebbFzpX9OR+Wa6O29asIogeRMzcGtAINdpMHHyAg10f05aSFVBbcEqGf/PXw1EjAZ+q2/bEBg3DvurK3Q==" - }, - "node_modules/array-flatten": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/array-flatten/-/array-flatten-3.0.0.tgz", - "integrity": "sha512-zPMVc3ZYlGLNk4mpK1NzP2wg0ml9t7fUgDsayR5Y5rSzxQilzR9FGu/EH2jQOcKSAeAfWeylyW8juy3OkWRvNA==", - "dev": true - }, - "node_modules/asciidoctor-opal-runtime": { - "version": "0.3.3", - "resolved": "https://registry.npmjs.org/asciidoctor-opal-runtime/-/asciidoctor-opal-runtime-0.3.3.tgz", - "integrity": "sha512-/CEVNiOia8E5BMO9FLooo+Kv18K4+4JBFRJp8vUy/N5dMRAg+fRNV4HA+o6aoSC79jVU/aT5XvUpxSxSsTS8FQ==", - "dependencies": { - "glob": "7.1.3", - "unxhr": "1.0.1" - }, - "engines": { - "node": ">=8.11" - } - }, - "node_modules/async-lock": { - "version": "1.4.1", - "resolved": "https://registry.npmjs.org/async-lock/-/async-lock-1.4.1.tgz", - "integrity": "sha512-Az2ZTpuytrtqENulXwO3GGv1Bztugx6TT37NIo7imr/Qo0gsYiGtSdBa2B6fsXhTpVZDNfu1Qn3pk531e3q+nQ==" - }, - "node_modules/atomic-sleep": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/atomic-sleep/-/atomic-sleep-1.0.0.tgz", - "integrity": "sha512-kNOjDqAh7px0XWNI+4QbzoiR/nTkHAWNud2uvnJquD1/x5a7EQZMJT0AczqK0Qn67oY/TTQ1LbUKajZpp3I9tQ==", - "engines": { - "node": ">=8.0.0" - } - }, - "node_modules/balanced-match": { - "version": "1.0.2", - "resolved": "https://registry.npmjs.org/balanced-match/-/balanced-match-1.0.2.tgz", - "integrity": "sha512-3oSeUO0TMV67hN1AmbXsK4yaqU7tjiHlbxRDZOpH0KW9+CeX4bRAaX0Anxt0tx2MrpRpWwQaPwIlISEJhYU5Pw==" - }, - "node_modules/base64-js": { - "version": "1.5.1", - "resolved": "https://registry.npmjs.org/base64-js/-/base64-js-1.5.1.tgz", - "integrity": "sha512-AKpaYlHn8t4SVbOHCy+b5+KKgvR4vrsD8vbvrbiQJps7fKDTkjkDry6ji0rUJjC0kzbNePLwzxq8iypo41qeWA==", - "funding": [ - { - "type": "github", - "url": "https://github.com/sponsors/feross" - }, - { - "type": "patreon", - "url": "https://www.patreon.com/feross" - }, - { - "type": "consulting", - "url": "https://feross.org/support" - } - ] - }, - "node_modules/binary-extensions": { - "version": "2.2.0", - "resolved": "https://registry.npmjs.org/binary-extensions/-/binary-extensions-2.2.0.tgz", - "integrity": "sha512-jDctJ/IVQbZoJykoeHbhXpOlNBqGNcwXJKJog42E5HDPUwQTSdjCHdihjj0DlnheQ7blbT6dHOafNAiS8ooQKA==", - "dev": true, - "engines": { - "node": ">=8" - } - }, - "node_modules/body-parser": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/body-parser/-/body-parser-2.0.1.tgz", - "integrity": "sha512-PagxbjvuPH6tv0f/kdVbFGcb79D236SLcDTs6DrQ7GizJ88S1UWP4nMXFEo/I4fdhGRGabvFfFjVGm3M7U8JwA==", - "dev": true, - "dependencies": { - "bytes": "3.1.2", - "content-type": "~1.0.5", - "debug": "3.1.0", - "destroy": "1.2.0", - "http-errors": "2.0.0", - "iconv-lite": "0.5.2", - "on-finished": "2.4.1", - "qs": "6.13.0", - "raw-body": "^3.0.0", - "type-is": "~1.6.18", - "unpipe": "1.0.0" - }, - "engines": { - "node": ">= 0.10" - } - }, - "node_modules/body-parser/node_modules/debug": { - "version": "3.1.0", - "resolved": "https://registry.npmjs.org/debug/-/debug-3.1.0.tgz", - "integrity": "sha512-OX8XqP7/1a9cqkxYw2yXss15f26NKWBpDXQd0/uK/KPqdQhxbPa994hnzjcE2VqQpDslf55723cKPUOGSmMY3g==", - "dev": true, - "dependencies": { - "ms": "2.0.0" - } - }, - "node_modules/body-parser/node_modules/media-typer": { - "version": "0.3.0", - "resolved": "https://registry.npmjs.org/media-typer/-/media-typer-0.3.0.tgz", - "integrity": "sha512-dq+qelQ9akHpcOl/gUVRTxVIOkAJ1wR3QAvb4RsVjS8oVoFjDGTc679wJYmUmknUF5HwMLOgb5O+a3KxfWapPQ==", - "dev": true, - "engines": { - "node": ">= 0.6" - } - }, - "node_modules/body-parser/node_modules/ms": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/ms/-/ms-2.0.0.tgz", - "integrity": "sha512-Tpp60P6IUJDTuOq/5Z8cdskzJujfwqfOTkrwIwj7IRISpnkJnT6SyJ4PCPnGMoFjC9ddhal5KVIYtAt97ix05A==", - "dev": true - }, - "node_modules/body-parser/node_modules/type-is": { - "version": "1.6.18", - "resolved": "https://registry.npmjs.org/type-is/-/type-is-1.6.18.tgz", - "integrity": "sha512-TkRKr9sUTxEH8MdfuCSP7VizJyzRNMjj2J2do2Jr3Kym598JVdEksuzPQCnlFPW4ky9Q+iA+ma9BGm06XQBy8g==", - "dev": true, - "dependencies": { - "media-typer": "0.3.0", - "mime-types": "~2.1.24" - }, - "engines": { - "node": ">= 0.6" - } - }, - "node_modules/brace-expansion": { - "version": "1.1.11", - "resolved": "https://registry.npmjs.org/brace-expansion/-/brace-expansion-1.1.11.tgz", - "integrity": "sha512-iCuPHDFgrHX7H2vEI/5xpz07zSHB00TpugqhmYtVmMO6518mCuRMoOYFldEBl0g187ufozdaHgWKcYFb61qGiA==", - "dependencies": { - "balanced-match": "^1.0.0", - "concat-map": "0.0.1" - } - }, - "node_modules/braces": { - "version": "3.0.2", - "resolved": "https://registry.npmjs.org/braces/-/braces-3.0.2.tgz", - "integrity": "sha512-b8um+L1RzM3WDSzvhm6gIz1yfTbBt6YTlcEKAvsmqCZZFw46z626lVj9j1yEPW33H5H+lBQpZMP1k8l+78Ha0A==", - "dependencies": { - "fill-range": "^7.0.1" - }, - "engines": { - "node": ">=8" - } - }, - "node_modules/buffer": { - "version": "6.0.3", - "resolved": "https://registry.npmjs.org/buffer/-/buffer-6.0.3.tgz", - "integrity": "sha512-FTiCpNxtwiZZHEZbcbTIcZjERVICn9yq/pDFkTl95/AxzD1naBctN7YO68riM/gLSDY7sdrMby8hofADYuuqOA==", - "funding": [ - { - "type": "github", - "url": "https://github.com/sponsors/feross" - }, - { - "type": "patreon", - "url": "https://www.patreon.com/feross" - }, - { - "type": "consulting", - "url": "https://feross.org/support" - } - ], - "dependencies": { - "base64-js": "^1.3.1", - "ieee754": "^1.2.1" - } - }, - "node_modules/buffer-crc32": { - "version": "0.2.13", - "resolved": "https://registry.npmjs.org/buffer-crc32/-/buffer-crc32-0.2.13.tgz", - "integrity": "sha512-VO9Ht/+p3SN7SKWqcrgEzjGbRSJYTx+Q1pTQC0wrWqHx0vpJraQ6GtHx8tvcg1rlK1byhU5gccxgOgj7B0TDkQ==", - "engines": { - "node": "*" - } - }, - "node_modules/buffer-equal": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/buffer-equal/-/buffer-equal-1.0.1.tgz", - "integrity": "sha512-QoV3ptgEaQpvVwbXdSO39iqPQTCxSF7A5U99AxbHYqUdCizL/lH2Z0A2y6nbZucxMEOtNyZfG2s6gsVugGpKkg==", - "engines": { - "node": ">=0.4" - }, - "funding": { - "url": "https://github.com/sponsors/ljharb" - } - }, - "node_modules/bytes": { - "version": "3.1.2", - "resolved": "https://registry.npmjs.org/bytes/-/bytes-3.1.2.tgz", - "integrity": "sha512-/Nf7TyzTx6S3yRJObOAV7956r8cr2+Oj8AC5dt8wSP3BQAoeX58NoHyCU8P8zGkNXStjTSi6fzO6F0pBdcYbEg==", - "dev": true, - "engines": { - "node": ">= 0.8" - } - }, - "node_modules/cache-directory": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/cache-directory/-/cache-directory-2.0.0.tgz", - "integrity": "sha512-7YKEapH+2Uikde8hySyfobXBqPKULDyHNl/lhKm7cKf/GJFdG/tU/WpLrOg2y9aUrQrWUilYqawFIiGJPS6gDA==", - "dependencies": { - "xdg-basedir": "^3.0.0" - }, - "engines": { - "node": ">=4" - } - }, - "node_modules/call-bind": { - "version": "1.0.7", - "resolved": "https://registry.npmjs.org/call-bind/-/call-bind-1.0.7.tgz", - "integrity": "sha512-GHTSNSYICQ7scH7sZ+M2rFopRoLh8t2bLSW6BbgrtLsahOIB5iyAVJf9GjWK3cYTDaMj4XdBpM1cA6pIS0Kv2w==", - "dependencies": { - "es-define-property": "^1.0.0", - "es-errors": "^1.3.0", - "function-bind": "^1.1.2", - "get-intrinsic": "^1.2.4", - "set-function-length": "^1.2.1" - }, - "engines": { - "node": ">= 0.4" - }, - "funding": { - "url": "https://github.com/sponsors/ljharb" - } - }, - "node_modules/chokidar": { - "version": "3.5.3", - "resolved": "https://registry.npmjs.org/chokidar/-/chokidar-3.5.3.tgz", - "integrity": "sha512-Dr3sfKRP6oTcjf2JmUmFJfeVMvXBdegxB0iVQ5eb2V10uFJUCAS8OByZdVAyVb8xXNz3GjjTgj9kLWsZTqE6kw==", - "dev": true, - "funding": [ - { - "type": "individual", - "url": "https://paulmillr.com/funding/" - } - ], - "dependencies": { - "anymatch": "~3.1.2", - "braces": "~3.0.2", - "glob-parent": "~5.1.2", - "is-binary-path": "~2.1.0", - "is-glob": "~4.0.1", - "normalize-path": "~3.0.0", - "readdirp": "~3.6.0" - }, - "engines": { - "node": ">= 8.10.0" - }, - "optionalDependencies": { - "fsevents": "~2.3.2" - } - }, - "node_modules/chokidar/node_modules/glob-parent": { - "version": "5.1.2", - "resolved": "https://registry.npmjs.org/glob-parent/-/glob-parent-5.1.2.tgz", - "integrity": "sha512-AOIgSQCepiJYwP3ARnGx+5VnTu2HBYdzbGP45eLw1vr3zB3vZLeyed1sC9hnbcOc9/SrMyM5RPQrkGz4aS9Zow==", - "dev": true, - "dependencies": { - "is-glob": "^4.0.1" - }, - "engines": { - "node": ">= 6" - } - }, - "node_modules/clean-git-ref": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/clean-git-ref/-/clean-git-ref-2.0.1.tgz", - "integrity": "sha512-bLSptAy2P0s6hU4PzuIMKmMJJSE6gLXGH1cntDu7bWJUksvuM+7ReOK61mozULErYvP6a15rnYl0zFDef+pyPw==" - }, - "node_modules/clone": { - "version": "2.1.2", - "resolved": "https://registry.npmjs.org/clone/-/clone-2.1.2.tgz", - "integrity": "sha512-3Pe/CF1Nn94hyhIYpjtiLhdCoEoz0DqQ+988E9gmeEdQZlojxnOb74wctFyuwWQHzqyf9X7C7MG8juUpqBJT8w==", - "engines": { - "node": ">=0.8" - } - }, - "node_modules/clone-buffer": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/clone-buffer/-/clone-buffer-1.0.0.tgz", - "integrity": "sha512-KLLTJWrvwIP+OPfMn0x2PheDEP20RPUcGXj/ERegTgdmPEZylALQldygiqrPPu8P45uNuPs7ckmReLY6v/iA5g==", - "engines": { - "node": ">= 0.10" - } - }, - "node_modules/clone-stats": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/clone-stats/-/clone-stats-1.0.0.tgz", - "integrity": "sha512-au6ydSpg6nsrigcZ4m8Bc9hxjeW+GJ8xh5G3BJCMt4WXe1H10UNaVOamqQTmrx1kjVuxAHIQSNU6hY4Nsn9/ag==" - }, - "node_modules/cloneable-readable": { - "version": "1.1.3", - "resolved": "https://registry.npmjs.org/cloneable-readable/-/cloneable-readable-1.1.3.tgz", - "integrity": "sha512-2EF8zTQOxYq70Y4XKtorQupqF0m49MBz2/yf5Bj+MHjvpG3Hy7sImifnqD6UA+TKYxeSV+u6qqQPawN5UvnpKQ==", - "dependencies": { - "inherits": "^2.0.1", - "process-nextick-args": "^2.0.0", - "readable-stream": "^2.3.5" - } - }, - "node_modules/cloneable-readable/node_modules/readable-stream": { - "version": "2.3.8", - "resolved": "https://registry.npmjs.org/readable-stream/-/readable-stream-2.3.8.tgz", - "integrity": "sha512-8p0AUk4XODgIewSi0l8Epjs+EVnWiK7NoDIEGU0HhE7+ZyY8D1IMY7odu5lRrFXGg71L15KG8QrPmum45RTtdA==", - "dependencies": { - "core-util-is": "~1.0.0", - "inherits": "~2.0.3", - "isarray": "~1.0.0", - "process-nextick-args": "~2.0.0", - "safe-buffer": "~5.1.1", - "string_decoder": "~1.1.1", - "util-deprecate": "~1.0.1" - } - }, - "node_modules/cloneable-readable/node_modules/safe-buffer": { - "version": "5.1.2", - "resolved": "https://registry.npmjs.org/safe-buffer/-/safe-buffer-5.1.2.tgz", - "integrity": "sha512-Gd2UZBJDkXlY7GbJxfsE8/nvKkUEU1G38c1siN6QP6a9PT9MmHB8GnpscSmMJSoF8LOIrt8ud/wPtojys4G6+g==" - }, - "node_modules/cloneable-readable/node_modules/string_decoder": { - "version": "1.1.1", - "resolved": "https://registry.npmjs.org/string_decoder/-/string_decoder-1.1.1.tgz", - "integrity": "sha512-n/ShnvDi6FHbbVfviro+WojiFzv+s8MPMHBczVePfUpDJLwoLT0ht1l4YwBCbi8pJAveEEdnkHyPyTP/mzRfwg==", - "dependencies": { - "safe-buffer": "~5.1.0" - } - }, - "node_modules/colorette": { - "version": "2.0.20", - "resolved": "https://registry.npmjs.org/colorette/-/colorette-2.0.20.tgz", - "integrity": "sha512-IfEDxwoWIjkeXL1eXcDiow4UbKjhLdq6/EuSVR9GMN7KVH3r9gQ83e73hsz1Nd1T3ijd5xv1wcWRYO+D6kCI2w==" - }, - "node_modules/commander": { - "version": "10.0.1", - "resolved": "https://registry.npmjs.org/commander/-/commander-10.0.1.tgz", - "integrity": "sha512-y4Mg2tXshplEbSGzx7amzPwKKOCGuoSRP/CjEdwwk0FOGlUbq6lKuoyDZTNZkmxHdJtp54hdfY/JUrdL7Xfdug==", - "engines": { - "node": ">=14" - } - }, - "node_modules/concat-map": { - "version": "0.0.1", - "resolved": "https://registry.npmjs.org/concat-map/-/concat-map-0.0.1.tgz", - "integrity": "sha512-/Srv4dswyQNBfohGpz9o6Yb3Gz3SrUDqBH5rTuhGR7ahtlbYKnVxw2bCFMRljaA7EXHaXZ8wsHdodFvbkhKmqg==" - }, - "node_modules/content-disposition": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/content-disposition/-/content-disposition-1.0.0.tgz", - "integrity": "sha512-Au9nRL8VNUut/XSzbQA38+M78dzP4D+eqg3gfJHMIHHYa3bg067xj1KxMUWj+VULbiZMowKngFFbKczUrNJ1mg==", - "dev": true, - "dependencies": { - "safe-buffer": "5.2.1" - }, - "engines": { - "node": ">= 0.6" - } - }, - "node_modules/content-type": { - "version": "1.0.5", - "resolved": "https://registry.npmjs.org/content-type/-/content-type-1.0.5.tgz", - "integrity": "sha512-nTjqfcBFEipKdXCv4YDQWCfmcLZKm81ldF0pAopTvyrFGVbcR6P/VAAd5G7N+0tTr8QqiU0tFadD6FK4NtJwOA==", - "dev": true, - "engines": { - "node": ">= 0.6" - } - }, - "node_modules/convert-source-map": { - "version": "1.9.0", - "resolved": "https://registry.npmjs.org/convert-source-map/-/convert-source-map-1.9.0.tgz", - "integrity": "sha512-ASFBup0Mz1uyiIjANan1jzLQami9z1PoYSZCiiYW2FczPbenXc45FZdBZLzOT+r6+iciuEModtmCti+hjaAk0A==" - }, - "node_modules/convict": { - "version": "6.2.4", - "resolved": "https://registry.npmjs.org/convict/-/convict-6.2.4.tgz", - "integrity": "sha512-qN60BAwdMVdofckX7AlohVJ2x9UvjTNoKVXCL2LxFk1l7757EJqf1nySdMkPQer0bt8kQ5lQiyZ9/2NvrFBuwQ==", - "dependencies": { - "lodash.clonedeep": "^4.5.0", - "yargs-parser": "^20.2.7" - }, - "engines": { - "node": ">=6" - } - }, - "node_modules/cookie": { - "version": "0.7.1", - "resolved": "https://registry.npmjs.org/cookie/-/cookie-0.7.1.tgz", - "integrity": "sha512-6DnInpx7SJ2AK3+CTUE/ZM0vWTUboZCegxhC2xiIydHR9jNuTAASBrfEpHhiGOZw/nX51bHt6YQl8jsGo4y/0w==", - "dev": true, - "engines": { - "node": ">= 0.6" - } - }, - "node_modules/cookie-signature": { - "version": "1.2.1", - "resolved": "https://registry.npmjs.org/cookie-signature/-/cookie-signature-1.2.1.tgz", - "integrity": "sha512-78KWk9T26NhzXtuL26cIJ8/qNHANyJ/ZYrmEXFzUmhZdjpBv+DlWlOANRTGBt48YcyslsLrj0bMLFTmXvLRCOw==", - "dev": true, - "engines": { - "node": ">=6.6.0" - } - }, - "node_modules/core-util-is": { - "version": "1.0.3", - "resolved": "https://registry.npmjs.org/core-util-is/-/core-util-is-1.0.3.tgz", - "integrity": "sha512-ZQBvi1DcpJ4GDqanjucZ2Hj3wEO5pZDS89BWbkcrvdxksJorwUDDZamX9ldFkp9aw2lmBDLgkObEA4DWNJ9FYQ==" - }, - "node_modules/crc-32": { - "version": "1.2.2", - "resolved": "https://registry.npmjs.org/crc-32/-/crc-32-1.2.2.tgz", - "integrity": "sha512-ROmzCKrTnOwybPcJApAA6WBWij23HVfGVNKqqrZpuyZOHqK2CwHSvpGuyt/UNNvaIjEd8X5IFGp4Mh+Ie1IHJQ==", - "bin": { - "crc32": "bin/crc32.njs" - }, - "engines": { - "node": ">=0.8" - } - }, - "node_modules/dateformat": { - "version": "4.6.3", - "resolved": "https://registry.npmjs.org/dateformat/-/dateformat-4.6.3.tgz", - "integrity": "sha512-2P0p0pFGzHS5EMnhdxQi7aJN+iMheud0UhG4dlE1DLAlvL8JHjJJTX/CSm4JXwV0Ka5nGk3zC5mcb5bUQUxxMA==", - "engines": { - "node": "*" - } - }, - "node_modules/debug": { - "version": "4.3.6", - "resolved": "https://registry.npmjs.org/debug/-/debug-4.3.6.tgz", - "integrity": "sha512-O/09Bd4Z1fBrU4VzkhFqVgpPzaGbw6Sm9FEkBT1A/YBXQFGuuSxa1dN2nxgxS34JmKXqYx8CZAwEVoJFImUXIg==", - "dev": true, - "dependencies": { - "ms": "2.1.2" - }, - "engines": { - "node": ">=6.0" - }, - "peerDependenciesMeta": { - "supports-color": { - "optional": true - } - } - }, - "node_modules/decompress-response": { - "version": "6.0.0", - "resolved": "https://registry.npmjs.org/decompress-response/-/decompress-response-6.0.0.tgz", - "integrity": "sha512-aW35yZM6Bb/4oJlZncMH2LCoZtJXTRxES17vE3hoRiowU2kWHaJKFkSBDnDR+cm9J+9QhXmREyIfv0pji9ejCQ==", - "dependencies": { - "mimic-response": "^3.1.0" - }, - "engines": { - "node": ">=10" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" - } - }, - "node_modules/define-data-property": { - "version": "1.1.4", - "resolved": "https://registry.npmjs.org/define-data-property/-/define-data-property-1.1.4.tgz", - "integrity": "sha512-rBMvIzlpA8v6E+SJZoo++HAYqsLrkg7MSfIinMPFhmkorw7X+dOXVJQs+QT69zGkzMyfDnIMN2Wid1+NbL3T+A==", - "dependencies": { - "es-define-property": "^1.0.0", - "es-errors": "^1.3.0", - "gopd": "^1.0.1" - }, - "engines": { - "node": ">= 0.4" - }, - "funding": { - "url": "https://github.com/sponsors/ljharb" - } - }, - "node_modules/define-properties": { - "version": "1.2.1", - "resolved": "https://registry.npmjs.org/define-properties/-/define-properties-1.2.1.tgz", - "integrity": "sha512-8QmQKqEASLd5nx0U1B1okLElbUuuttJ/AnYmRXbbbGDWh6uS208EjD4Xqq/I9wK7u0v6O08XhTWnt5XtEbR6Dg==", - "dependencies": { - "define-data-property": "^1.0.1", - "has-property-descriptors": "^1.0.0", - "object-keys": "^1.1.1" - }, - "engines": { - "node": ">= 0.4" - }, - "funding": { - "url": "https://github.com/sponsors/ljharb" - } - }, - "node_modules/depd": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/depd/-/depd-2.0.0.tgz", - "integrity": "sha512-g7nH6P6dyDioJogAAGprGpCtVImJhpPk/roCzdb3fIh61/s/nPsfR6onyMwkCAR/OlC3yBC0lESvUoQEAssIrw==", - "dev": true, - "engines": { - "node": ">= 0.8" - } - }, - "node_modules/destroy": { - "version": "1.2.0", - "resolved": "https://registry.npmjs.org/destroy/-/destroy-1.2.0.tgz", - "integrity": "sha512-2sJGJTaXIIaR1w4iJSNoN0hnMY7Gpc/n8D4qSCJw8QqFWXf7cuAgnEHxBpweaVcPevC2l3KpjYCx3NypQQgaJg==", - "dev": true, - "engines": { - "node": ">= 0.8", - "npm": "1.2.8000 || >= 1.4.16" - } - }, - "node_modules/diff3": { - "version": "0.0.3", - "resolved": "https://registry.npmjs.org/diff3/-/diff3-0.0.3.tgz", - "integrity": "sha512-iSq8ngPOt0K53A6eVr4d5Kn6GNrM2nQZtC740pzIriHtn4pOQ2lyzEXQMBeVcWERN0ye7fhBsk9PbLLQOnUx/g==" - }, - "node_modules/duplexify": { - "version": "4.1.2", - "resolved": "https://registry.npmjs.org/duplexify/-/duplexify-4.1.2.tgz", - "integrity": "sha512-fz3OjcNCHmRP12MJoZMPglx8m4rrFP8rovnk4vT8Fs+aonZoCwGg10dSsQsfP/E62eZcPTMSMP6686fu9Qlqtw==", - "dependencies": { - "end-of-stream": "^1.4.1", - "inherits": "^2.0.3", - "readable-stream": "^3.1.1", - "stream-shift": "^1.0.0" - } - }, - "node_modules/ee-first": { - "version": "1.1.1", - "resolved": "https://registry.npmjs.org/ee-first/-/ee-first-1.1.1.tgz", - "integrity": "sha512-WMwm9LhRUo+WUaRN+vRuETqG89IgZphVSNkdFgeb6sS/E4OrDIN7t48CAewSHXc6C8lefD8KKfr5vY61brQlow==", - "dev": true - }, - "node_modules/encodeurl": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/encodeurl/-/encodeurl-2.0.0.tgz", - "integrity": "sha512-Q0n9HRi4m6JuGIV1eFlmvJB7ZEVxu93IrMyiMsGC0lrMJMWzRgx6WGquyfQgZVb31vhGgXnfmPNNXmxnOkRBrg==", - "dev": true, - "engines": { - "node": ">= 0.8" - } - }, - "node_modules/end-of-stream": { - "version": "1.4.4", - "resolved": "https://registry.npmjs.org/end-of-stream/-/end-of-stream-1.4.4.tgz", - "integrity": "sha512-+uw1inIHVPQoaVuHzRyXd21icM+cnt4CzD5rW+NC1wjOUSTOs+Te7FOv7AhN7vS9x/oIyhLP5PR1H+phQAHu5Q==", - "dependencies": { - "once": "^1.4.0" - } - }, - "node_modules/es-define-property": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/es-define-property/-/es-define-property-1.0.0.tgz", - "integrity": "sha512-jxayLKShrEqqzJ0eumQbVhTYQM27CfT1T35+gCgDFoL82JLsXqTJ76zv6A0YLOgEnLUMvLzsDsGIrl8NFpT2gQ==", - "dependencies": { - "get-intrinsic": "^1.2.4" - }, - "engines": { - "node": ">= 0.4" - } - }, - "node_modules/es-errors": { - "version": "1.3.0", - "resolved": "https://registry.npmjs.org/es-errors/-/es-errors-1.3.0.tgz", - "integrity": "sha512-Zf5H2Kxt2xjTvbJvP2ZWLEICxA6j+hAmMzIlypy4xcBg1vKVnx89Wy0GbS+kf5cwCVFFzdCFh2XSCFNULS6csw==", - "engines": { - "node": ">= 0.4" - } - }, - "node_modules/escape-html": { - "version": "1.0.3", - "resolved": "https://registry.npmjs.org/escape-html/-/escape-html-1.0.3.tgz", - "integrity": "sha512-NiSupZ4OeuGwr68lGIeym/ksIZMJodUGOSCZ/FSnTxcrekbvqrgdUxlJOMpijaKZVjAJrWrGs/6Jy8OMuyj9ow==", - "dev": true - }, - "node_modules/etag": { - "version": "1.8.1", - "resolved": "https://registry.npmjs.org/etag/-/etag-1.8.1.tgz", - "integrity": "sha512-aIL5Fx7mawVa300al2BnEE4iNvo1qETxLrPI/o05L7z6go7fCw1J6EQmbK4FmJ2AS7kgVF/KEZWufBfdClMcPg==", - "dev": true, - "engines": { - "node": ">= 0.6" - } - }, - "node_modules/event-target-shim": { - "version": "5.0.1", - "resolved": "https://registry.npmjs.org/event-target-shim/-/event-target-shim-5.0.1.tgz", - "integrity": "sha512-i/2XbnSz/uxRCU6+NdVJgKWDTM427+MqYbkQzD321DuCQJUqOuJKIA0IM2+W2xtYHdKOmZ4dR6fExsd4SXL+WQ==", - "engines": { - "node": ">=6" - } - }, - "node_modules/events": { - "version": "3.3.0", - "resolved": "https://registry.npmjs.org/events/-/events-3.3.0.tgz", - "integrity": "sha512-mQw+2fkQbALzQ7V0MY0IqdnXNOeTtP4r0lN9z7AAawCXgqea7bDii20AYrIBrFd/Hx0M2Ocz6S111CaFkUcb0Q==", - "engines": { - "node": ">=0.8.x" - } - }, - "node_modules/express": { - "version": "5.0.1", - "resolved": "https://registry.npmjs.org/express/-/express-5.0.1.tgz", - "integrity": "sha512-ORF7g6qGnD+YtUG9yx4DFoqCShNMmUKiXuT5oWMHiOvt/4WFbHC6yCwQMTSBMno7AqntNCAzzcnnjowRkTL9eQ==", - "dev": true, - "dependencies": { - "accepts": "^2.0.0", - "body-parser": "^2.0.1", - "content-disposition": "^1.0.0", - "content-type": "~1.0.4", - "cookie": "0.7.1", - "cookie-signature": "^1.2.1", - "debug": "4.3.6", - "depd": "2.0.0", - "encodeurl": "~2.0.0", - "escape-html": "~1.0.3", - "etag": "~1.8.1", - "finalhandler": "^2.0.0", - "fresh": "2.0.0", - "http-errors": "2.0.0", - "merge-descriptors": "^2.0.0", - "methods": "~1.1.2", - "mime-types": "^3.0.0", - "on-finished": "2.4.1", - "once": "1.4.0", - "parseurl": "~1.3.3", - "proxy-addr": "~2.0.7", - "qs": "6.13.0", - "range-parser": "~1.2.1", - "router": "^2.0.0", - "safe-buffer": "5.2.1", - "send": "^1.1.0", - "serve-static": "^2.1.0", - "setprototypeof": "1.2.0", - "statuses": "2.0.1", - "type-is": "^2.0.0", - "utils-merge": "1.0.1", - "vary": "~1.1.2" - }, - "engines": { - "node": ">= 18" - } - }, - "node_modules/express/node_modules/mime-db": { - "version": "1.53.0", - "resolved": "https://registry.npmjs.org/mime-db/-/mime-db-1.53.0.tgz", - "integrity": "sha512-oHlN/w+3MQ3rba9rqFr6V/ypF10LSkdwUysQL7GkXoTgIWeV+tcXGA852TBxH+gsh8UWoyhR1hKcoMJTuWflpg==", - "dev": true, - "engines": { - "node": ">= 0.6" - } - }, - "node_modules/express/node_modules/mime-types": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/mime-types/-/mime-types-3.0.0.tgz", - "integrity": "sha512-XqoSHeCGjVClAmoGFG3lVFqQFRIrTVw2OH3axRqAcfaw+gHWIfnASS92AV+Rl/mk0MupgZTRHQOjxY6YVnzK5w==", - "dev": true, - "dependencies": { - "mime-db": "^1.53.0" - }, - "engines": { - "node": ">= 0.6" - } - }, - "node_modules/extend": { - "version": "3.0.2", - "resolved": "https://registry.npmjs.org/extend/-/extend-3.0.2.tgz", - "integrity": "sha512-fjquC59cD7CyW6urNXK0FBufkZcoiGG80wTuPujX590cB5Ttln20E2UB4S/WARVqhXffZl2LNgS+gQdPIIim/g==" - }, - "node_modules/fast-copy": { - "version": "3.0.1", - "resolved": "https://registry.npmjs.org/fast-copy/-/fast-copy-3.0.1.tgz", - "integrity": "sha512-Knr7NOtK3HWRYGtHoJrjkaWepqT8thIVGAwt0p0aUs1zqkAzXZV4vo9fFNwyb5fcqK1GKYFYxldQdIDVKhUAfA==" - }, - "node_modules/fast-redact": { - "version": "3.3.0", - "resolved": "https://registry.npmjs.org/fast-redact/-/fast-redact-3.3.0.tgz", - "integrity": "sha512-6T5V1QK1u4oF+ATxs1lWUmlEk6P2T9HqJG3e2DnHOdVgZy2rFJBoEnrIedcTXlkAHU/zKC+7KETJ+KGGKwxgMQ==", - "engines": { - "node": ">=6" - } - }, - "node_modules/fast-safe-stringify": { - "version": "2.1.1", - "resolved": "https://registry.npmjs.org/fast-safe-stringify/-/fast-safe-stringify-2.1.1.tgz", - "integrity": "sha512-W+KJc2dmILlPplD/H4K9l9LcAHAfPtP6BY84uVLXQ6Evcz9Lcg33Y2z1IVblT6xdY54PXYVHEv+0Wpq8Io6zkA==" - }, - "node_modules/fd-slicer": { - "version": "1.1.0", - "resolved": "https://registry.npmjs.org/fd-slicer/-/fd-slicer-1.1.0.tgz", - "integrity": "sha512-cE1qsB/VwyQozZ+q1dGxR8LBYNZeofhEdUNGSMbQD3Gw2lAzX9Zb3uIU6Ebc/Fmyjo9AWWfnn0AUCHqtevs/8g==", - "dependencies": { - "pend": "~1.2.0" - } - }, - "node_modules/fill-range": { - "version": "7.0.1", - "resolved": "https://registry.npmjs.org/fill-range/-/fill-range-7.0.1.tgz", - "integrity": "sha512-qOo9F+dMUmC2Lcb4BbVvnKJxTPjCm+RRpe4gDuGrzkL7mEVl/djYSu2OdQ2Pa302N4oqkSg9ir6jaLWJ2USVpQ==", - "dependencies": { - "to-regex-range": "^5.0.1" - }, - "engines": { - "node": ">=8" - } - }, - "node_modules/finalhandler": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/finalhandler/-/finalhandler-2.0.0.tgz", - "integrity": "sha512-MX6Zo2adDViYh+GcxxB1dpO43eypOGUOL12rLCOTMQv/DfIbpSJUy4oQIIZhVZkH9e+bZWKMon0XHFEju16tkQ==", - "dev": true, - "dependencies": { - "debug": "2.6.9", - "encodeurl": "~1.0.2", - "escape-html": "~1.0.3", - "on-finished": "2.4.1", - "parseurl": "~1.3.3", - "statuses": "2.0.1", - "unpipe": "~1.0.0" - }, - "engines": { - "node": ">= 0.8" - } - }, - "node_modules/finalhandler/node_modules/debug": { - "version": "2.6.9", - "resolved": "https://registry.npmjs.org/debug/-/debug-2.6.9.tgz", - "integrity": "sha512-bC7ElrdJaJnPbAP+1EotYvqZsb3ecl5wi6Bfi6BJTUcNowp6cvspg0jXznRTKDjm/E7AdgFBVeAPVMNcKGsHMA==", - "dev": true, - "dependencies": { - "ms": "2.0.0" - } - }, - "node_modules/finalhandler/node_modules/encodeurl": { - "version": "1.0.2", - "resolved": "https://registry.npmjs.org/encodeurl/-/encodeurl-1.0.2.tgz", - "integrity": "sha512-TPJXq8JqFaVYm2CWmPvnP2Iyo4ZSM7/QKcSmuMLDObfpH5fi7RUGmd/rTDf+rut/saiDiQEeVTNgAmJEdAOx0w==", - "dev": true, - "engines": { - "node": ">= 0.8" - } - }, - "node_modules/finalhandler/node_modules/ms": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/ms/-/ms-2.0.0.tgz", - "integrity": "sha512-Tpp60P6IUJDTuOq/5Z8cdskzJujfwqfOTkrwIwj7IRISpnkJnT6SyJ4PCPnGMoFjC9ddhal5KVIYtAt97ix05A==", - "dev": true - }, - "node_modules/flush-write-stream": { - "version": "1.1.1", - "resolved": "https://registry.npmjs.org/flush-write-stream/-/flush-write-stream-1.1.1.tgz", - "integrity": "sha512-3Z4XhFZ3992uIq0XOqb9AreonueSYphE6oYbpt5+3u06JWklbsPkNv3ZKkP9Bz/r+1MWCaMoSQ28P85+1Yc77w==", - "dependencies": { - "inherits": "^2.0.3", - "readable-stream": "^2.3.6" - } - }, - "node_modules/flush-write-stream/node_modules/readable-stream": { - "version": "2.3.8", - "resolved": "https://registry.npmjs.org/readable-stream/-/readable-stream-2.3.8.tgz", - "integrity": "sha512-8p0AUk4XODgIewSi0l8Epjs+EVnWiK7NoDIEGU0HhE7+ZyY8D1IMY7odu5lRrFXGg71L15KG8QrPmum45RTtdA==", - "dependencies": { - "core-util-is": "~1.0.0", - "inherits": "~2.0.3", - "isarray": "~1.0.0", - "process-nextick-args": "~2.0.0", - "safe-buffer": "~5.1.1", - "string_decoder": "~1.1.1", - "util-deprecate": "~1.0.1" - } - }, - "node_modules/flush-write-stream/node_modules/safe-buffer": { - "version": "5.1.2", - "resolved": "https://registry.npmjs.org/safe-buffer/-/safe-buffer-5.1.2.tgz", - "integrity": "sha512-Gd2UZBJDkXlY7GbJxfsE8/nvKkUEU1G38c1siN6QP6a9PT9MmHB8GnpscSmMJSoF8LOIrt8ud/wPtojys4G6+g==" - }, - "node_modules/flush-write-stream/node_modules/string_decoder": { - "version": "1.1.1", - "resolved": "https://registry.npmjs.org/string_decoder/-/string_decoder-1.1.1.tgz", - "integrity": "sha512-n/ShnvDi6FHbbVfviro+WojiFzv+s8MPMHBczVePfUpDJLwoLT0ht1l4YwBCbi8pJAveEEdnkHyPyTP/mzRfwg==", - "dependencies": { - "safe-buffer": "~5.1.0" - } - }, - "node_modules/forwarded": { - "version": "0.2.0", - "resolved": "https://registry.npmjs.org/forwarded/-/forwarded-0.2.0.tgz", - "integrity": "sha512-buRG0fpBtRHSTCOASe6hD258tEubFoRLb4ZNA6NxMVHNw2gOcwHo9wyablzMzOA5z9xA9L1KNjk/Nt6MT9aYow==", - "dev": true, - "engines": { - "node": ">= 0.6" - } - }, - "node_modules/fresh": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/fresh/-/fresh-2.0.0.tgz", - "integrity": "sha512-Rx/WycZ60HOaqLKAi6cHRKKI7zxWbJ31MhntmtwMoaTeF7XFH9hhBp8vITaMidfljRQ6eYWCKkaTK+ykVJHP2A==", - "dev": true, - "engines": { - "node": ">= 0.8" - } - }, - "node_modules/fs-mkdirp-stream": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/fs-mkdirp-stream/-/fs-mkdirp-stream-1.0.0.tgz", - "integrity": "sha512-+vSd9frUnapVC2RZYfL3FCB2p3g4TBhaUmrsWlSudsGdnxIuUvBB2QM1VZeBtc49QFwrp+wQLrDs3+xxDgI5gQ==", - "dependencies": { - "graceful-fs": "^4.1.11", - "through2": "^2.0.3" - }, - "engines": { - "node": ">= 0.10" - } - }, - "node_modules/fs.realpath": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/fs.realpath/-/fs.realpath-1.0.0.tgz", - "integrity": "sha512-OO0pH2lK6a0hZnAdau5ItzHPI6pUlvI7jMVnxUQRtw4owF2wk8lOSabtGDCTP4Ggrg2MbGnWO9X8K1t4+fGMDw==" - }, - "node_modules/fsevents": { - "version": "2.3.3", - "resolved": "https://registry.npmjs.org/fsevents/-/fsevents-2.3.3.tgz", - "integrity": "sha512-5xoDfX+fL7faATnagmWPpbFtwh/R77WmMMqqHGS65C3vvB0YHrgF+B1YmZ3441tMj5n63k0212XNoJwzlhffQw==", - "dev": true, - "hasInstallScript": true, - "optional": true, - "os": [ - "darwin" - ], - "engines": { - "node": "^8.16.0 || ^10.6.0 || >=11.0.0" - } - }, - "node_modules/function-bind": { - "version": "1.1.2", - "resolved": "https://registry.npmjs.org/function-bind/-/function-bind-1.1.2.tgz", - "integrity": "sha512-7XHNxH7qX9xG5mIwxkhumTox/MIRNcOgDrxWsMt2pAr23WHp6MrRlN7FBSFpCpr+oVO0F744iUgR82nJMfG2SA==", - "funding": { - "url": "https://github.com/sponsors/ljharb" - } - }, - "node_modules/get-intrinsic": { - "version": "1.2.4", - "resolved": "https://registry.npmjs.org/get-intrinsic/-/get-intrinsic-1.2.4.tgz", - "integrity": "sha512-5uYhsJH8VJBTv7oslg4BznJYhDoRI6waYCxMmCdnTrcCrHA/fCFKoTFz2JKKE0HdDFUF7/oQuhzumXJK7paBRQ==", - "dependencies": { - "es-errors": "^1.3.0", - "function-bind": "^1.1.2", - "has-proto": "^1.0.1", - "has-symbols": "^1.0.3", - "hasown": "^2.0.0" - }, - "engines": { - "node": ">= 0.4" - }, - "funding": { - "url": "https://github.com/sponsors/ljharb" - } - }, - "node_modules/glob": { - "version": "7.1.3", - "resolved": "https://registry.npmjs.org/glob/-/glob-7.1.3.tgz", - "integrity": "sha512-vcfuiIxogLV4DlGBHIUOwI0IbrJ8HWPc4MU7HzviGeNho/UJDfi6B5p3sHeWIQ0KGIU0Jpxi5ZHxemQfLkkAwQ==", - "dependencies": { - "fs.realpath": "^1.0.0", - "inflight": "^1.0.4", - "inherits": "2", - "minimatch": "^3.0.4", - "once": "^1.3.0", - "path-is-absolute": "^1.0.0" - }, - "engines": { - "node": "*" - } - }, - "node_modules/glob-parent": { - "version": "6.0.2", - "resolved": "https://registry.npmjs.org/glob-parent/-/glob-parent-6.0.2.tgz", - "integrity": "sha512-XxwI8EOhVQgWp6iDL+3b0r86f4d6AX6zSU55HfB4ydCEuXLXc5FcYeOu+nnGftS4TEju/11rt4KJPTMgbfmv4A==", - "dependencies": { - "is-glob": "^4.0.3" - }, - "engines": { - "node": ">=10.13.0" - } - }, - "node_modules/glob-stream": { - "version": "7.0.0", - "resolved": "https://registry.npmjs.org/glob-stream/-/glob-stream-7.0.0.tgz", - "integrity": "sha512-evR4kvr6s0Yo5t4CD4H171n4T8XcnPFznvsbeN8K9FPzc0Q0wYqcOWyGtck2qcvJSLXKnU6DnDyfmbDDabYvRQ==", - "dependencies": { - "extend": "^3.0.2", - "glob": "^7.2.0", - "glob-parent": "^6.0.2", - "is-negated-glob": "^1.0.0", - "ordered-read-streams": "^1.0.1", - "pumpify": "^2.0.1", - "readable-stream": "^3.6.0", - "remove-trailing-separator": "^1.1.0", - "to-absolute-glob": "^2.0.2", - "unique-stream": "^2.3.1" - }, - "engines": { - "node": ">=10.13.0" - } - }, - "node_modules/glob-stream/node_modules/glob": { - "version": "7.2.3", - "resolved": "https://registry.npmjs.org/glob/-/glob-7.2.3.tgz", - "integrity": "sha512-nFR0zLpU2YCaRxwoCJvL6UvCH2JFyFVIvwTLsIf21AuHlMskA1hhTdk+LlYJtOlYt9v6dvszD2BGRqBL+iQK9Q==", - "dependencies": { - "fs.realpath": "^1.0.0", - "inflight": "^1.0.4", - "inherits": "2", - "minimatch": "^3.1.1", - "once": "^1.3.0", - "path-is-absolute": "^1.0.0" - }, - "engines": { - "node": "*" - }, - "funding": { - "url": "https://github.com/sponsors/isaacs" - } - }, - "node_modules/gopd": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/gopd/-/gopd-1.0.1.tgz", - "integrity": "sha512-d65bNlIadxvpb/A2abVdlqKqV563juRnZ1Wtk6s1sIR8uNsXR70xqIzVqxVf1eTqDunwT2MkczEeaezCKTZhwA==", - "dependencies": { - "get-intrinsic": "^1.1.3" - }, - "funding": { - "url": "https://github.com/sponsors/ljharb" - } - }, - "node_modules/graceful-fs": { - "version": "4.2.11", - "resolved": "https://registry.npmjs.org/graceful-fs/-/graceful-fs-4.2.11.tgz", - "integrity": "sha512-RbJ5/jmFcNNCcDV5o9eTnBLJ/HszWV0P73bc+Ff4nS/rJj+YaS6IGyiOL0VoBYX+l1Wrl3k63h/KrH+nhJ0XvQ==" - }, - "node_modules/handlebars": { - "version": "4.7.8", - "resolved": "https://registry.npmjs.org/handlebars/-/handlebars-4.7.8.tgz", - "integrity": "sha512-vafaFqs8MZkRrSX7sFVUdo3ap/eNiLnb4IakshzvP56X5Nr1iGKAIqdX6tMlm6HcNRIkr6AxO5jFEoJzzpT8aQ==", - "dependencies": { - "minimist": "^1.2.5", - "neo-async": "^2.6.2", - "source-map": "^0.6.1", - "wordwrap": "^1.0.0" - }, - "bin": { - "handlebars": "bin/handlebars" - }, - "engines": { - "node": ">=0.4.7" - }, - "optionalDependencies": { - "uglify-js": "^3.1.4" - } - }, - "node_modules/has-flag": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-3.0.0.tgz", - "integrity": "sha512-sKJf1+ceQBr4SMkvQnBDNDtf4TXpVhVGateu0t918bl30FnbE2m4vNLX+VWe/dpjlb+HugGYzW7uQXH98HPEYw==", - "dev": true, - "engines": { - "node": ">=4" - } - }, - "node_modules/has-property-descriptors": { - "version": "1.0.2", - "resolved": "https://registry.npmjs.org/has-property-descriptors/-/has-property-descriptors-1.0.2.tgz", - "integrity": "sha512-55JNKuIW+vq4Ke1BjOTjM2YctQIvCT7GFzHwmfZPGo5wnrgkid0YQtnAleFSqumZm4az3n2BS+erby5ipJdgrg==", - "dependencies": { - "es-define-property": "^1.0.0" - }, - "funding": { - "url": "https://github.com/sponsors/ljharb" - } - }, - "node_modules/has-proto": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/has-proto/-/has-proto-1.0.1.tgz", - "integrity": "sha512-7qE+iP+O+bgF9clE5+UoBFzE65mlBiVj3tKCrlNQ0Ogwm0BjpT/gK4SlLYDMybDh5I3TCTKnPPa0oMG7JDYrhg==", - "engines": { - "node": ">= 0.4" - }, - "funding": { - "url": "https://github.com/sponsors/ljharb" - } - }, - "node_modules/has-symbols": { - "version": "1.0.3", - "resolved": "https://registry.npmjs.org/has-symbols/-/has-symbols-1.0.3.tgz", - "integrity": "sha512-l3LCuF6MgDNwTDKkdYGEihYjt5pRPbEg46rtlmnSPlUbgmB8LOIrKJbYYFBSbnPaJexMKtiPO8hmeRjRz2Td+A==", - "engines": { - "node": ">= 0.4" - }, - "funding": { - "url": "https://github.com/sponsors/ljharb" - } - }, - "node_modules/hasown": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/hasown/-/hasown-2.0.0.tgz", - "integrity": "sha512-vUptKVTpIJhcczKBbgnS+RtcuYMB8+oNzPK2/Hp3hanz8JmpATdmmgLgSaadVREkDm+e2giHwY3ZRkyjSIDDFA==", - "dependencies": { - "function-bind": "^1.1.2" - }, - "engines": { - "node": ">= 0.4" - } - }, - "node_modules/help-me": { - "version": "4.2.0", - "resolved": "https://registry.npmjs.org/help-me/-/help-me-4.2.0.tgz", - "integrity": "sha512-TAOnTB8Tz5Dw8penUuzHVrKNKlCIbwwbHnXraNJxPwf8LRtE2HlM84RYuezMFcwOJmoYOCWVDyJ8TQGxn9PgxA==", - "dependencies": { - "glob": "^8.0.0", - "readable-stream": "^3.6.0" - } - }, - "node_modules/help-me/node_modules/brace-expansion": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/brace-expansion/-/brace-expansion-2.0.1.tgz", - "integrity": "sha512-XnAIvQ8eM+kC6aULx6wuQiwVsnzsi9d3WxzV3FpWTGA19F621kwdbsAcFKXgKUHZWsy+mY6iL1sHTxWEFCytDA==", - "dependencies": { - "balanced-match": "^1.0.0" - } - }, - "node_modules/help-me/node_modules/glob": { - "version": "8.1.0", - "resolved": "https://registry.npmjs.org/glob/-/glob-8.1.0.tgz", - "integrity": "sha512-r8hpEjiQEYlF2QU0df3dS+nxxSIreXQS1qRhMJM0Q5NDdR386C7jb7Hwwod8Fgiuex+k0GFjgft18yvxm5XoCQ==", - "dependencies": { - "fs.realpath": "^1.0.0", - "inflight": "^1.0.4", - "inherits": "2", - "minimatch": "^5.0.1", - "once": "^1.3.0" - }, - "engines": { - "node": ">=12" - }, - "funding": { - "url": "https://github.com/sponsors/isaacs" - } - }, - "node_modules/help-me/node_modules/minimatch": { - "version": "5.1.6", - "resolved": "https://registry.npmjs.org/minimatch/-/minimatch-5.1.6.tgz", - "integrity": "sha512-lKwV/1brpG6mBUFHtb7NUmtABCb2WZZmm2wNiOA5hAb8VdCS4B3dtMWyvcoViccwAW/COERjXLt0zP1zXUN26g==", - "dependencies": { - "brace-expansion": "^2.0.1" - }, - "engines": { - "node": ">=10" - } - }, - "node_modules/hpagent": { - "version": "1.2.0", - "resolved": "https://registry.npmjs.org/hpagent/-/hpagent-1.2.0.tgz", - "integrity": "sha512-A91dYTeIB6NoXG+PxTQpCCDDnfHsW9kc06Lvpu1TEe9gnd6ZFeiBoRO9JvzEv6xK7EX97/dUE8g/vBMTqTS3CA==", - "engines": { - "node": ">=14" - } - }, - "node_modules/http-errors": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/http-errors/-/http-errors-2.0.0.tgz", - "integrity": "sha512-FtwrG/euBzaEjYeRqOgly7G0qviiXoJWnvEH2Z1plBdXgbyjv34pHTSb9zoeHMyDy33+DWy5Wt9Wo+TURtOYSQ==", - "dev": true, - "dependencies": { - "depd": "2.0.0", - "inherits": "2.0.4", - "setprototypeof": "1.2.0", - "statuses": "2.0.1", - "toidentifier": "1.0.1" - }, - "engines": { - "node": ">= 0.8" - } - }, - "node_modules/iconv-lite": { - "version": "0.5.2", - "resolved": "https://registry.npmjs.org/iconv-lite/-/iconv-lite-0.5.2.tgz", - "integrity": "sha512-kERHXvpSaB4aU3eANwidg79K8FlrN77m8G9V+0vOR3HYaRifrlwMEpT7ZBJqLSEIHnEgJTHcWK82wwLwwKwtag==", - "dev": true, - "dependencies": { - "safer-buffer": ">= 2.1.2 < 3" - }, - "engines": { - "node": ">=0.10.0" - } - }, - "node_modules/ieee754": { - "version": "1.2.1", - "resolved": "https://registry.npmjs.org/ieee754/-/ieee754-1.2.1.tgz", - "integrity": "sha512-dcyqhDvX1C46lXZcVqCpK+FtMRQVdIMN6/Df5js2zouUsqG7I6sFxitIC+7KYK29KdXOLHdu9zL4sFnoVQnqaA==", - "funding": [ - { - "type": "github", - "url": "https://github.com/sponsors/feross" - }, - { - "type": "patreon", - "url": "https://www.patreon.com/feross" - }, - { - "type": "consulting", - "url": "https://feross.org/support" - } - ] - }, - "node_modules/ignore": { - "version": "5.3.1", - "resolved": "https://registry.npmjs.org/ignore/-/ignore-5.3.1.tgz", - "integrity": "sha512-5Fytz/IraMjqpwfd34ke28PTVMjZjJG2MPn5t7OE4eUCUNf8BAa7b5WUS9/Qvr6mwOQS7Mk6vdsMno5he+T8Xw==", - "engines": { - "node": ">= 4" - } - }, - "node_modules/ignore-by-default": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/ignore-by-default/-/ignore-by-default-1.0.1.tgz", - "integrity": "sha512-Ius2VYcGNk7T90CppJqcIkS5ooHUZyIQK+ClZfMfMNFEF9VSE73Fq+906u/CWu92x4gzZMWOwfFYckPObzdEbA==", - "dev": true - }, - "node_modules/inflight": { - "version": "1.0.6", - "resolved": "https://registry.npmjs.org/inflight/-/inflight-1.0.6.tgz", - "integrity": "sha512-k92I/b08q4wvFscXCLvqfsHCrjrF7yiXsQuIVvVE7N82W3+aqpzuUdBbfhWcy/FZR3/4IgflMgKLOsvPDrGCJA==", - "dependencies": { - "once": "^1.3.0", - "wrappy": "1" - } - }, - "node_modules/inherits": { - "version": "2.0.4", - "resolved": "https://registry.npmjs.org/inherits/-/inherits-2.0.4.tgz", - "integrity": "sha512-k/vGaX4/Yla3WzyMCvTQOXYeIHvqOKtnqBduzTHpzpQZzAskKMhZ2K+EnBiSM9zGSoIFeMpXKxa4dYeZIQqewQ==" - }, - "node_modules/ipaddr.js": { - "version": "1.9.1", - "resolved": "https://registry.npmjs.org/ipaddr.js/-/ipaddr.js-1.9.1.tgz", - "integrity": "sha512-0KI/607xoxSToH7GjN1FfSbLoU0+btTicjsQSWQlh/hZykN8KpmMf7uYwPW3R+akZ6R/w18ZlXSHBYXiYUPO3g==", - "dev": true, - "engines": { - "node": ">= 0.10" - } - }, - "node_modules/is-absolute": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/is-absolute/-/is-absolute-1.0.0.tgz", - "integrity": "sha512-dOWoqflvcydARa360Gvv18DZ/gRuHKi2NU/wU5X1ZFzdYfH29nkiNZsF3mp4OJ3H4yo9Mx8A/uAGNzpzPN3yBA==", - "dependencies": { - "is-relative": "^1.0.0", - "is-windows": "^1.0.1" - }, - "engines": { - "node": ">=0.10.0" - } - }, - "node_modules/is-binary-path": { - "version": "2.1.0", - "resolved": "https://registry.npmjs.org/is-binary-path/-/is-binary-path-2.1.0.tgz", - "integrity": "sha512-ZMERYes6pDydyuGidse7OsHxtbI7WVeUEozgR/g7rd0xUimYNlvZRE/K2MgZTjWy725IfelLeVcEM97mmtRGXw==", - "dev": true, - "dependencies": { - "binary-extensions": "^2.0.0" - }, - "engines": { - "node": ">=8" - } - }, - "node_modules/is-buffer": { - "version": "1.1.6", - "resolved": "https://registry.npmjs.org/is-buffer/-/is-buffer-1.1.6.tgz", - "integrity": "sha512-NcdALwpXkTm5Zvvbk7owOUSvVvBKDgKP5/ewfXEznmQFfs4ZRmanOeKBTjRVjka3QFoN6XJ+9F3USqfHqTaU5w==" - }, - "node_modules/is-extglob": { - "version": "2.1.1", - "resolved": "https://registry.npmjs.org/is-extglob/-/is-extglob-2.1.1.tgz", - "integrity": "sha512-SbKbANkN603Vi4jEZv49LeVJMn4yGwsbzZworEoyEiutsN3nJYdbO36zfhGJ6QEDpOZIFkDtnq5JRxmvl3jsoQ==", - "engines": { - "node": ">=0.10.0" - } - }, - "node_modules/is-glob": { - "version": "4.0.3", - "resolved": "https://registry.npmjs.org/is-glob/-/is-glob-4.0.3.tgz", - "integrity": "sha512-xelSayHH36ZgE7ZWhli7pW34hNbNl8Ojv5KVmkJD4hBdD3th8Tfk9vYasLM+mXWOZhFkgZfxhLSnrwRr4elSSg==", - "dependencies": { - "is-extglob": "^2.1.1" - }, - "engines": { - "node": ">=0.10.0" - } - }, - "node_modules/is-negated-glob": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/is-negated-glob/-/is-negated-glob-1.0.0.tgz", - "integrity": "sha512-czXVVn/QEmgvej1f50BZ648vUI+em0xqMq2Sn+QncCLN4zj1UAxlT+kw/6ggQTOaZPd1HqKQGEqbpQVtJucWug==", - "engines": { - "node": ">=0.10.0" - } - }, - "node_modules/is-promise": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/is-promise/-/is-promise-4.0.0.tgz", - "integrity": "sha512-hvpoI6korhJMnej285dSg6nu1+e6uxs7zG3BYAm5byqDsgJNWwxzM6z6iZiAgQR4TJ30JmBTOwqZUw3WlyH3AQ==", - "dev": true - }, - "node_modules/is-relative": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/is-relative/-/is-relative-1.0.0.tgz", - "integrity": "sha512-Kw/ReK0iqwKeu0MITLFuj0jbPAmEiOsIwyIXvvbfa6QfmN9pkD1M+8pdk7Rl/dTKbH34/XBFMbgD4iMJhLQbGA==", - "dependencies": { - "is-unc-path": "^1.0.0" - }, - "engines": { - "node": ">=0.10.0" - } - }, - "node_modules/is-unc-path": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/is-unc-path/-/is-unc-path-1.0.0.tgz", - "integrity": "sha512-mrGpVd0fs7WWLfVsStvgF6iEJnbjDFZh9/emhRDcGWTduTfNHd9CHeUwH3gYIjdbwo4On6hunkztwOaAw0yllQ==", - "dependencies": { - "unc-path-regex": "^0.1.2" - }, - "engines": { - "node": ">=0.10.0" - } - }, - "node_modules/is-utf8": { - "version": "0.2.1", - "resolved": "https://registry.npmjs.org/is-utf8/-/is-utf8-0.2.1.tgz", - "integrity": "sha512-rMYPYvCzsXywIsldgLaSoPlw5PfoB/ssr7hY4pLfcodrA5M/eArza1a9VmTiNIBNMjOGr1Ow9mTyU2o69U6U9Q==" - }, - "node_modules/is-valid-glob": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/is-valid-glob/-/is-valid-glob-1.0.0.tgz", - "integrity": "sha512-AhiROmoEFDSsjx8hW+5sGwgKVIORcXnrlAx/R0ZSeaPw70Vw0CqkGBBhHGL58Uox2eXnU1AnvXJl1XlyedO5bA==", - "engines": { - "node": ">=0.10.0" - } - }, - "node_modules/is-windows": { - "version": "1.0.2", - "resolved": "https://registry.npmjs.org/is-windows/-/is-windows-1.0.2.tgz", - "integrity": "sha512-eXK1UInq2bPmjyX6e3VHIzMLobc4J94i4AWn+Hpq3OU5KkrRC96OAcR3PRJ/pGu6m8TRnBHP9dkXQVsT/COVIA==", - "engines": { - "node": ">=0.10.0" - } - }, - "node_modules/isarray": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/isarray/-/isarray-1.0.0.tgz", - "integrity": "sha512-VLghIWNM6ELQzo7zwmcg0NmTVyWKYjvIeM83yjp0wRDTmUnrM678fQbcKBo6n2CJEF0szoG//ytg+TKla89ALQ==" - }, - "node_modules/isomorphic-git": { - "version": "1.25.6", - "resolved": "https://registry.npmjs.org/isomorphic-git/-/isomorphic-git-1.25.6.tgz", - "integrity": "sha512-zA3k3QOO7doqOnBgwsaXJwHKSIIl5saEdH4xxalu082WHVES4KghsG6RE2SDwjXMCIlNa1bWocbitH6bRIrmLQ==", - "dependencies": { - "async-lock": "^1.1.0", - "clean-git-ref": "^2.0.1", - "crc-32": "^1.2.0", - "diff3": "0.0.3", - "ignore": "^5.1.4", - "minimisted": "^2.0.0", - "pako": "^1.0.10", - "pify": "^4.0.1", - "readable-stream": "^3.4.0", - "sha.js": "^2.4.9", - "simple-get": "^4.0.1" - }, - "bin": { - "isogit": "cli.cjs" - }, - "engines": { - "node": ">=12" - } - }, - "node_modules/joycon": { - "version": "3.1.1", - "resolved": "https://registry.npmjs.org/joycon/-/joycon-3.1.1.tgz", - "integrity": "sha512-34wB/Y7MW7bzjKRjUKTa46I2Z7eV62Rkhva+KkopW7Qvv/OSWBqvkSY7vusOPrNuZcUG3tApvdVgNB8POj3SPw==", - "engines": { - "node": ">=10" - } - }, - "node_modules/js-yaml": { - "version": "4.1.0", - "resolved": "https://registry.npmjs.org/js-yaml/-/js-yaml-4.1.0.tgz", - "integrity": "sha512-wpxZs9NoxZaJESJGIZTyDEaYpl0FKSA+FB9aJiyemKhMwkxQg63h4T1KJgUGHpTqPDNRcmmYLugrRjJlBtWvRA==", - "dependencies": { - "argparse": "^2.0.1" - }, - "bin": { - "js-yaml": "bin/js-yaml.js" - } - }, - "node_modules/json-stable-stringify-without-jsonify": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/json-stable-stringify-without-jsonify/-/json-stable-stringify-without-jsonify-1.0.1.tgz", - "integrity": "sha512-Bdboy+l7tA3OGW6FjyFHWkP5LuByj1Tk33Ljyq0axyzdk9//JSi2u3fP1QSmd1KNwq6VOKYGlAu87CisVir6Pw==" - }, - "node_modules/json5": { - "version": "2.2.3", - "resolved": "https://registry.npmjs.org/json5/-/json5-2.2.3.tgz", - "integrity": "sha512-XmOWe7eyHYH14cLdVPoyg+GOH3rYX++KpzrylJwSW98t3Nk+U8XOl8FWKOgwtzdb8lXGf6zYwDUzeHMWfxasyg==", - "bin": { - "json5": "lib/cli.js" - }, - "engines": { - "node": ">=6" - } - }, - "node_modules/lazystream": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/lazystream/-/lazystream-1.0.1.tgz", - "integrity": "sha512-b94GiNHQNy6JNTrt5w6zNyffMrNkXZb3KTkCZJb2V1xaEGCk093vkZ2jk3tpaeP33/OiXC+WvK9AxUebnf5nbw==", - "dependencies": { - "readable-stream": "^2.0.5" - }, - "engines": { - "node": ">= 0.6.3" - } - }, - "node_modules/lazystream/node_modules/readable-stream": { - "version": "2.3.8", - "resolved": "https://registry.npmjs.org/readable-stream/-/readable-stream-2.3.8.tgz", - "integrity": "sha512-8p0AUk4XODgIewSi0l8Epjs+EVnWiK7NoDIEGU0HhE7+ZyY8D1IMY7odu5lRrFXGg71L15KG8QrPmum45RTtdA==", - "dependencies": { - "core-util-is": "~1.0.0", - "inherits": "~2.0.3", - "isarray": "~1.0.0", - "process-nextick-args": "~2.0.0", - "safe-buffer": "~5.1.1", - "string_decoder": "~1.1.1", - "util-deprecate": "~1.0.1" - } - }, - "node_modules/lazystream/node_modules/safe-buffer": { - "version": "5.1.2", - "resolved": "https://registry.npmjs.org/safe-buffer/-/safe-buffer-5.1.2.tgz", - "integrity": "sha512-Gd2UZBJDkXlY7GbJxfsE8/nvKkUEU1G38c1siN6QP6a9PT9MmHB8GnpscSmMJSoF8LOIrt8ud/wPtojys4G6+g==" - }, - "node_modules/lazystream/node_modules/string_decoder": { - "version": "1.1.1", - "resolved": "https://registry.npmjs.org/string_decoder/-/string_decoder-1.1.1.tgz", - "integrity": "sha512-n/ShnvDi6FHbbVfviro+WojiFzv+s8MPMHBczVePfUpDJLwoLT0ht1l4YwBCbi8pJAveEEdnkHyPyTP/mzRfwg==", - "dependencies": { - "safe-buffer": "~5.1.0" - } - }, - "node_modules/lead": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/lead/-/lead-1.0.0.tgz", - "integrity": "sha512-IpSVCk9AYvLHo5ctcIXxOBpMWUe+4TKN3VPWAKUbJikkmsGp0VrSM8IttVc32D6J4WUsiPE6aEFRNmIoF/gdow==", - "dependencies": { - "flush-write-stream": "^1.0.2" - }, - "engines": { - "node": ">= 0.10" - } - }, - "node_modules/lodash.clonedeep": { - "version": "4.5.0", - "resolved": "https://registry.npmjs.org/lodash.clonedeep/-/lodash.clonedeep-4.5.0.tgz", - "integrity": "sha512-H5ZhCF25riFd9uB5UCkVKo61m3S/xZk1x4wA6yp/L3RFP6Z/eHH1ymQcGLo7J3GMPfm0V/7m1tryHuGVxpqEBQ==" - }, - "node_modules/lru-cache": { - "version": "6.0.0", - "resolved": "https://registry.npmjs.org/lru-cache/-/lru-cache-6.0.0.tgz", - "integrity": "sha512-Jo6dJ04CmSjuznwJSS3pUeWmd/H0ffTlkXXgwZi+eq1UCmqQwCh+eLsYOYCwY991i2Fah4h1BEMCx4qThGbsiA==", - "dev": true, - "dependencies": { - "yallist": "^4.0.0" - }, - "engines": { - "node": ">=10" - } - }, - "node_modules/media-typer": { - "version": "1.1.0", - "resolved": "https://registry.npmjs.org/media-typer/-/media-typer-1.1.0.tgz", - "integrity": "sha512-aisnrDP4GNe06UcKFnV5bfMNPBUw4jsLGaWwWfnH3v02GnBuXX2MCVn5RbrWo0j3pczUilYblq7fQ7Nw2t5XKw==", - "dev": true, - "engines": { - "node": ">= 0.8" - } - }, - "node_modules/merge-descriptors": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/merge-descriptors/-/merge-descriptors-2.0.0.tgz", - "integrity": "sha512-Snk314V5ayFLhp3fkUREub6WtjBfPdCPY1Ln8/8munuLuiYhsABgBVWsozAG+MWMbVEvcdcpbi9R7ww22l9Q3g==", - "dev": true, - "engines": { - "node": ">=18" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" - } - }, - "node_modules/methods": { - "version": "1.1.2", - "resolved": "https://registry.npmjs.org/methods/-/methods-1.1.2.tgz", - "integrity": "sha512-iclAHeNqNm68zFtnZ0e+1L2yUIdvzNoauKU4WBA3VvH/vPFieF7qfRlwUZU+DA9P9bPXIS90ulxoUoCH23sV2w==", - "dev": true, - "engines": { - "node": ">= 0.6" - } - }, - "node_modules/mime-db": { - "version": "1.52.0", - "resolved": "https://registry.npmjs.org/mime-db/-/mime-db-1.52.0.tgz", - "integrity": "sha512-sPU4uV7dYlvtWJxwwxHD0PuihVNiE7TyAbQ5SWxDCB9mUYvOgroQOwYQQOKPJ8CIbE+1ETVlOoK1UC2nU3gYvg==", - "engines": { - "node": ">= 0.6" - } - }, - "node_modules/mime-types": { - "version": "2.1.35", - "resolved": "https://registry.npmjs.org/mime-types/-/mime-types-2.1.35.tgz", - "integrity": "sha512-ZDY+bPm5zTTF+YpCrAU9nK0UgICYPT0QtT1NZWFv4s++TNkcgVaT0g6+4R2uI4MjQjzysHB1zxuWL50hzaeXiw==", - "dependencies": { - "mime-db": "1.52.0" - }, - "engines": { - "node": ">= 0.6" - } - }, - "node_modules/mimic-response": { - "version": "3.1.0", - "resolved": "https://registry.npmjs.org/mimic-response/-/mimic-response-3.1.0.tgz", - "integrity": "sha512-z0yWI+4FDrrweS8Zmt4Ej5HdJmky15+L2e6Wgn3+iK5fWzb6T3fhNFq2+MeTRb064c6Wr4N/wv0DzQTjNzHNGQ==", - "engines": { - "node": ">=10" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" - } - }, - "node_modules/minimatch": { - "version": "3.1.2", - "resolved": "https://registry.npmjs.org/minimatch/-/minimatch-3.1.2.tgz", - "integrity": "sha512-J7p63hRiAjw1NDEww1W7i37+ByIrOWO5XQQAzZ3VOcL0PNybwpfmV/N05zFAzwQ9USyEcX6t3UO+K5aqBQOIHw==", - "dependencies": { - "brace-expansion": "^1.1.7" - }, - "engines": { - "node": "*" - } - }, - "node_modules/minimist": { - "version": "1.2.8", - "resolved": "https://registry.npmjs.org/minimist/-/minimist-1.2.8.tgz", - "integrity": "sha512-2yyAR8qBkN3YuheJanUpWC5U3bb5osDywNB8RzDVlDwDHbocAJveqqj1u8+SVD7jkWT4yvsHCpWqqWqAxb0zCA==", - "funding": { - "url": "https://github.com/sponsors/ljharb" - } - }, - "node_modules/minimisted": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/minimisted/-/minimisted-2.0.1.tgz", - "integrity": "sha512-1oPjfuLQa2caorJUM8HV8lGgWCc0qqAO1MNv/k05G4qslmsndV/5WdNZrqCiyqiz3wohia2Ij2B7w2Dr7/IyrA==", - "dependencies": { - "minimist": "^1.2.5" - } - }, - "node_modules/ms": { - "version": "2.1.2", - "resolved": "https://registry.npmjs.org/ms/-/ms-2.1.2.tgz", - "integrity": "sha512-sGkPx+VjMtmA6MX27oA4FBFELFCZZ4S4XqeGOXCv68tT+jb3vk/RyaKWP0PTKyWtmLSM0b+adUTEvbs1PEaH2w==", - "dev": true - }, - "node_modules/multi-progress": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/multi-progress/-/multi-progress-4.0.0.tgz", - "integrity": "sha512-9zcjyOou3FFCKPXsmkbC3ethv51SFPoA4dJD6TscIp2pUmy26kBDZW6h9XofPELrzseSkuD7r0V+emGEeo39Pg==", - "peerDependencies": { - "progress": "^2.0.0" - } - }, - "node_modules/negotiator": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/negotiator/-/negotiator-1.0.0.tgz", - "integrity": "sha512-8Ofs/AUQh8MaEcrlq5xOX0CQ9ypTF5dl78mjlMNfOK08fzpgTHQRQPBxcPlEtIw0yRpws+Zo/3r+5WRby7u3Gg==", - "dev": true, - "engines": { - "node": ">= 0.6" - } - }, - "node_modules/neo-async": { - "version": "2.6.2", - "resolved": "https://registry.npmjs.org/neo-async/-/neo-async-2.6.2.tgz", - "integrity": "sha512-Yd3UES5mWCSqR+qNT93S3UoYUkqAZ9lLg8a7g9rimsWmYGK8cVToA4/sF3RrshdyV3sAGMXVUmpMYOw+dLpOuw==" - }, - "node_modules/nodemon": { - "version": "3.1.0", - "resolved": "https://registry.npmjs.org/nodemon/-/nodemon-3.1.0.tgz", - "integrity": "sha512-xqlktYlDMCepBJd43ZQhjWwMw2obW/JRvkrLxq5RCNcuDDX1DbcPT+qT1IlIIdf+DhnWs90JpTMe+Y5KxOchvA==", - "dev": true, - "dependencies": { - "chokidar": "^3.5.2", - "debug": "^4", - "ignore-by-default": "^1.0.1", - "minimatch": "^3.1.2", - "pstree.remy": "^1.1.8", - "semver": "^7.5.3", - "simple-update-notifier": "^2.0.0", - "supports-color": "^5.5.0", - "touch": "^3.1.0", - "undefsafe": "^2.0.5" - }, - "bin": { - "nodemon": "bin/nodemon.js" - }, - "engines": { - "node": ">=10" - }, - "funding": { - "type": "opencollective", - "url": "https://opencollective.com/nodemon" - } - }, - "node_modules/nopt": { - "version": "1.0.10", - "resolved": "https://registry.npmjs.org/nopt/-/nopt-1.0.10.tgz", - "integrity": "sha512-NWmpvLSqUrgrAC9HCuxEvb+PSloHpqVu+FqcO4eeF2h5qYRhA7ev6KvelyQAKtegUbC6RypJnlEOhd8vloNKYg==", - "dev": true, - "dependencies": { - "abbrev": "1" - }, - "bin": { - "nopt": "bin/nopt.js" - }, - "engines": { - "node": "*" - } - }, - "node_modules/normalize-path": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/normalize-path/-/normalize-path-3.0.0.tgz", - "integrity": "sha512-6eZs5Ls3WtCisHWp9S2GUy8dqkpGi4BVSz3GaqiE6ezub0512ESztXUwUB6C6IKbQkY2Pnb/mD4WYojCRwcwLA==", - "dev": true, - "engines": { - "node": ">=0.10.0" - } - }, - "node_modules/now-and-later": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/now-and-later/-/now-and-later-2.0.1.tgz", - "integrity": "sha512-KGvQ0cB70AQfg107Xvs/Fbu+dGmZoTRJp2TaPwcwQm3/7PteUyN2BCgk8KBMPGBUXZdVwyWS8fDCGFygBm19UQ==", - "dependencies": { - "once": "^1.3.2" - }, - "engines": { - "node": ">= 0.10" - } - }, - "node_modules/object-inspect": { - "version": "1.13.2", - "resolved": "https://registry.npmjs.org/object-inspect/-/object-inspect-1.13.2.tgz", - "integrity": "sha512-IRZSRuzJiynemAXPYtPe5BoI/RESNYR7TYm50MC5Mqbd3Jmw5y790sErYw3V6SryFJD64b74qQQs9wn5Bg/k3g==", - "dev": true, - "engines": { - "node": ">= 0.4" - }, - "funding": { - "url": "https://github.com/sponsors/ljharb" - } - }, - "node_modules/object-keys": { - "version": "1.1.1", - "resolved": "https://registry.npmjs.org/object-keys/-/object-keys-1.1.1.tgz", - "integrity": "sha512-NuAESUOUMrlIXOfHKzD6bpPu3tYt3xvjNdRIQ+FeT0lNb4K8WR70CaDxhuNguS2XG+GjkyMwOzsN5ZktImfhLA==", - "engines": { - "node": ">= 0.4" - } - }, - "node_modules/object.assign": { - "version": "4.1.5", - "resolved": "https://registry.npmjs.org/object.assign/-/object.assign-4.1.5.tgz", - "integrity": "sha512-byy+U7gp+FVwmyzKPYhW2h5l3crpmGsxl7X2s8y43IgxvG4g3QZ6CffDtsNQy1WsmZpQbO+ybo0AlW7TY6DcBQ==", - "dependencies": { - "call-bind": "^1.0.5", - "define-properties": "^1.2.1", - "has-symbols": "^1.0.3", - "object-keys": "^1.1.1" - }, - "engines": { - "node": ">= 0.4" - }, - "funding": { - "url": "https://github.com/sponsors/ljharb" - } - }, - "node_modules/on-exit-leak-free": { - "version": "2.1.2", - "resolved": "https://registry.npmjs.org/on-exit-leak-free/-/on-exit-leak-free-2.1.2.tgz", - "integrity": "sha512-0eJJY6hXLGf1udHwfNftBqH+g73EU4B504nZeKpz1sYRKafAghwxEJunB2O7rDZkL4PGfsMVnTXZ2EjibbqcsA==", - "engines": { - "node": ">=14.0.0" - } - }, - "node_modules/on-finished": { - "version": "2.4.1", - "resolved": "https://registry.npmjs.org/on-finished/-/on-finished-2.4.1.tgz", - "integrity": "sha512-oVlzkg3ENAhCk2zdv7IJwd/QUD4z2RxRwpkcGY8psCVcCYZNq4wYnVWALHM+brtuJjePWiYF/ClmuDr8Ch5+kg==", - "dev": true, - "dependencies": { - "ee-first": "1.1.1" - }, - "engines": { - "node": ">= 0.8" - } - }, - "node_modules/once": { - "version": "1.4.0", - "resolved": "https://registry.npmjs.org/once/-/once-1.4.0.tgz", - "integrity": "sha512-lNaJgI+2Q5URQBkccEKHTQOPaXdUxnZZElQTZY0MFUAuaEqe1E+Nyvgdz/aIyNi6Z9MzO5dv1H8n58/GELp3+w==", - "dependencies": { - "wrappy": "1" - } - }, - "node_modules/ordered-read-streams": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/ordered-read-streams/-/ordered-read-streams-1.0.1.tgz", - "integrity": "sha512-Z87aSjx3r5c0ZB7bcJqIgIRX5bxR7A4aSzvIbaxd0oTkWBCOoKfuGHiKj60CHVUgg1Phm5yMZzBdt8XqRs73Mw==", - "dependencies": { - "readable-stream": "^2.0.1" - } - }, - "node_modules/ordered-read-streams/node_modules/readable-stream": { - "version": "2.3.8", - "resolved": "https://registry.npmjs.org/readable-stream/-/readable-stream-2.3.8.tgz", - "integrity": "sha512-8p0AUk4XODgIewSi0l8Epjs+EVnWiK7NoDIEGU0HhE7+ZyY8D1IMY7odu5lRrFXGg71L15KG8QrPmum45RTtdA==", - "dependencies": { - "core-util-is": "~1.0.0", - "inherits": "~2.0.3", - "isarray": "~1.0.0", - "process-nextick-args": "~2.0.0", - "safe-buffer": "~5.1.1", - "string_decoder": "~1.1.1", - "util-deprecate": "~1.0.1" - } - }, - "node_modules/ordered-read-streams/node_modules/safe-buffer": { - "version": "5.1.2", - "resolved": "https://registry.npmjs.org/safe-buffer/-/safe-buffer-5.1.2.tgz", - "integrity": "sha512-Gd2UZBJDkXlY7GbJxfsE8/nvKkUEU1G38c1siN6QP6a9PT9MmHB8GnpscSmMJSoF8LOIrt8ud/wPtojys4G6+g==" - }, - "node_modules/ordered-read-streams/node_modules/string_decoder": { - "version": "1.1.1", - "resolved": "https://registry.npmjs.org/string_decoder/-/string_decoder-1.1.1.tgz", - "integrity": "sha512-n/ShnvDi6FHbbVfviro+WojiFzv+s8MPMHBczVePfUpDJLwoLT0ht1l4YwBCbi8pJAveEEdnkHyPyTP/mzRfwg==", - "dependencies": { - "safe-buffer": "~5.1.0" - } - }, - "node_modules/pako": { - "version": "1.0.11", - "resolved": "https://registry.npmjs.org/pako/-/pako-1.0.11.tgz", - "integrity": "sha512-4hLB8Py4zZce5s4yd9XzopqwVv/yGNhV1Bl8NTmCq1763HeK2+EwVTv+leGeL13Dnh2wfbqowVPXCIO0z4taYw==" - }, - "node_modules/parseurl": { - "version": "1.3.3", - "resolved": "https://registry.npmjs.org/parseurl/-/parseurl-1.3.3.tgz", - "integrity": "sha512-CiyeOxFT/JZyN5m0z9PfXw4SCBJ6Sygz1Dpl0wqjlhDEGGBP1GnsUVEL0p63hoG1fcj3fHynXi9NYO4nWOL+qQ==", - "dev": true, - "engines": { - "node": ">= 0.8" - } - }, - "node_modules/path-dirname": { - "version": "1.0.2", - "resolved": "https://registry.npmjs.org/path-dirname/-/path-dirname-1.0.2.tgz", - "integrity": "sha512-ALzNPpyNq9AqXMBjeymIjFDAkAFH06mHJH/cSBHAgU0s4vfpBn6b2nf8tiRLvagKD8RbTpq2FKTBg7cl9l3c7Q==" - }, - "node_modules/path-is-absolute": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/path-is-absolute/-/path-is-absolute-1.0.1.tgz", - "integrity": "sha512-AVbw3UJ2e9bq64vSaS9Am0fje1Pa8pbGqTTsmXfaIiMpnr5DlDhfJOuLj9Sf95ZPVDAUerDfEk88MPmPe7UCQg==", - "engines": { - "node": ">=0.10.0" - } - }, - "node_modules/path-to-regexp": { - "version": "8.2.0", - "resolved": "https://registry.npmjs.org/path-to-regexp/-/path-to-regexp-8.2.0.tgz", - "integrity": "sha512-TdrF7fW9Rphjq4RjrW0Kp2AW0Ahwu9sRGTkS6bvDi0SCwZlEZYmcfDbEsTz8RVk0EHIS/Vd1bv3JhG+1xZuAyQ==", - "dev": true, - "engines": { - "node": ">=16" - } - }, - "node_modules/pend": { - "version": "1.2.0", - "resolved": "https://registry.npmjs.org/pend/-/pend-1.2.0.tgz", - "integrity": "sha512-F3asv42UuXchdzt+xXqfW1OGlVBe+mxa2mqI0pg5yAHZPvFmY3Y6drSf/GQ1A86WgWEN9Kzh/WrgKa6iGcHXLg==" - }, - "node_modules/picomatch": { - "version": "2.3.1", - "resolved": "https://registry.npmjs.org/picomatch/-/picomatch-2.3.1.tgz", - "integrity": "sha512-JU3teHTNjmE2VCGFzuY8EXzCDVwEqB2a8fsIvwaStHhAWJEeVd1o1QD80CU6+ZdEXXSLbSsuLwJjkCBWqRQUVA==", - "engines": { - "node": ">=8.6" - }, - "funding": { - "url": "https://github.com/sponsors/jonschlinkert" - } - }, - "node_modules/pify": { - "version": "4.0.1", - "resolved": "https://registry.npmjs.org/pify/-/pify-4.0.1.tgz", - "integrity": "sha512-uB80kBFb/tfd68bVleG9T5GGsGPjJrLAUpR5PZIrhBnIaRTQRjqdJSsIKkOP6OAIFbj7GOrcudc5pNjZ+geV2g==", - "engines": { - "node": ">=6" - } - }, - "node_modules/pino": { - "version": "8.14.2", - "resolved": "https://registry.npmjs.org/pino/-/pino-8.14.2.tgz", - "integrity": "sha512-zKu9aWeSWTy1JgvxIpZveJKKsAr4+6uNMZ0Vf0KRwzl/UNZA3XjHiIl/0WwqLMkDwuHuDkT5xAgPA2jpKq4whA==", - "dependencies": { - "atomic-sleep": "^1.0.0", - "fast-redact": "^3.1.1", - "on-exit-leak-free": "^2.1.0", - "pino-abstract-transport": "v1.0.0", - "pino-std-serializers": "^6.0.0", - "process-warning": "^2.0.0", - "quick-format-unescaped": "^4.0.3", - "real-require": "^0.2.0", - "safe-stable-stringify": "^2.3.1", - "sonic-boom": "^3.1.0", - "thread-stream": "^2.0.0" - }, - "bin": { - "pino": "bin.js" - } - }, - "node_modules/pino-abstract-transport": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/pino-abstract-transport/-/pino-abstract-transport-1.0.0.tgz", - "integrity": "sha512-c7vo5OpW4wIS42hUVcT5REsL8ZljsUfBjqV/e2sFxmFEFZiq1XLUp5EYLtuDH6PEHq9W1egWqRbnLUP5FuZmOA==", - "dependencies": { - "readable-stream": "^4.0.0", - "split2": "^4.0.0" - } - }, - "node_modules/pino-abstract-transport/node_modules/readable-stream": { - "version": "4.5.1", - "resolved": "https://registry.npmjs.org/readable-stream/-/readable-stream-4.5.1.tgz", - "integrity": "sha512-uQjbf34vmf/asGnOHQEw07Q4llgMACQZTWWa4MmICS0IKJoHbLwKCy71H3eR99Dw5iYejc6W+pqZZEeqRtUFAw==", - "dependencies": { - "abort-controller": "^3.0.0", - "buffer": "^6.0.3", - "events": "^3.3.0", - "process": "^0.11.10", - "string_decoder": "^1.3.0" - }, - "engines": { - "node": "^12.22.0 || ^14.17.0 || >=16.0.0" - } - }, - "node_modules/pino-pretty": { - "version": "10.0.1", - "resolved": "https://registry.npmjs.org/pino-pretty/-/pino-pretty-10.0.1.tgz", - "integrity": "sha512-yrn00+jNpkvZX/NrPVCPIVHAfTDy3ahF0PND9tKqZk4j9s+loK8dpzrJj4dGb7i+WLuR50ussuTAiWoMWU+qeA==", - "dependencies": { - "colorette": "^2.0.7", - "dateformat": "^4.6.3", - "fast-copy": "^3.0.0", - "fast-safe-stringify": "^2.1.1", - "help-me": "^4.0.1", - "joycon": "^3.1.1", - "minimist": "^1.2.6", - "on-exit-leak-free": "^2.1.0", - "pino-abstract-transport": "^1.0.0", - "pump": "^3.0.0", - "readable-stream": "^4.0.0", - "secure-json-parse": "^2.4.0", - "sonic-boom": "^3.0.0", - "strip-json-comments": "^3.1.1" - }, - "bin": { - "pino-pretty": "bin.js" - } - }, - "node_modules/pino-pretty/node_modules/readable-stream": { - "version": "4.5.1", - "resolved": "https://registry.npmjs.org/readable-stream/-/readable-stream-4.5.1.tgz", - "integrity": "sha512-uQjbf34vmf/asGnOHQEw07Q4llgMACQZTWWa4MmICS0IKJoHbLwKCy71H3eR99Dw5iYejc6W+pqZZEeqRtUFAw==", - "dependencies": { - "abort-controller": "^3.0.0", - "buffer": "^6.0.3", - "events": "^3.3.0", - "process": "^0.11.10", - "string_decoder": "^1.3.0" - }, - "engines": { - "node": "^12.22.0 || ^14.17.0 || >=16.0.0" - } - }, - "node_modules/pino-std-serializers": { - "version": "6.2.2", - "resolved": "https://registry.npmjs.org/pino-std-serializers/-/pino-std-serializers-6.2.2.tgz", - "integrity": "sha512-cHjPPsE+vhj/tnhCy/wiMh3M3z3h/j15zHQX+S9GkTBgqJuTuJzYJ4gUyACLhDaJ7kk9ba9iRDmbH2tJU03OiA==" - }, - "node_modules/process": { - "version": "0.11.10", - "resolved": "https://registry.npmjs.org/process/-/process-0.11.10.tgz", - "integrity": "sha512-cdGef/drWFoydD1JsMzuFf8100nZl+GT+yacc2bEced5f9Rjk4z+WtFUTBu9PhOi9j/jfmBPu0mMEY4wIdAF8A==", - "engines": { - "node": ">= 0.6.0" - } - }, - "node_modules/process-nextick-args": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/process-nextick-args/-/process-nextick-args-2.0.1.tgz", - "integrity": "sha512-3ouUOpQhtgrbOa17J7+uxOTpITYWaGP7/AhoR3+A+/1e9skrzelGi/dXzEYyvbxubEF6Wn2ypscTKiKJFFn1ag==" - }, - "node_modules/process-warning": { - "version": "2.3.2", - "resolved": "https://registry.npmjs.org/process-warning/-/process-warning-2.3.2.tgz", - "integrity": "sha512-n9wh8tvBe5sFmsqlg+XQhaQLumwpqoAUruLwjCopgTmUBjJ/fjtBsJzKleCaIGBOMXYEhp1YfKl4d7rJ5ZKJGA==" - }, - "node_modules/progress": { - "version": "2.0.3", - "resolved": "https://registry.npmjs.org/progress/-/progress-2.0.3.tgz", - "integrity": "sha512-7PiHtLll5LdnKIMw100I+8xJXR5gW2QwWYkT6iJva0bXitZKa/XMrSbdmg3r2Xnaidz9Qumd0VPaMrZlF9V9sA==", - "engines": { - "node": ">=0.4.0" - } - }, - "node_modules/proxy-addr": { - "version": "2.0.7", - "resolved": "https://registry.npmjs.org/proxy-addr/-/proxy-addr-2.0.7.tgz", - "integrity": "sha512-llQsMLSUDUPT44jdrU/O37qlnifitDP+ZwrmmZcoSKyLKvtZxpyV0n2/bD/N4tBAAZ/gJEdZU7KMraoK1+XYAg==", - "dev": true, - "dependencies": { - "forwarded": "0.2.0", - "ipaddr.js": "1.9.1" - }, - "engines": { - "node": ">= 0.10" - } - }, - "node_modules/pstree.remy": { - "version": "1.1.8", - "resolved": "https://registry.npmjs.org/pstree.remy/-/pstree.remy-1.1.8.tgz", - "integrity": "sha512-77DZwxQmxKnu3aR542U+X8FypNzbfJ+C5XQDk3uWjWxn6151aIMGthWYRXTqT1E5oJvg+ljaa2OJi+VfvCOQ8w==", - "dev": true - }, - "node_modules/pump": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/pump/-/pump-3.0.0.tgz", - "integrity": "sha512-LwZy+p3SFs1Pytd/jYct4wpv49HiYCqd9Rlc5ZVdk0V+8Yzv6jR5Blk3TRmPL1ft69TxP0IMZGJ+WPFU2BFhww==", - "dependencies": { - "end-of-stream": "^1.1.0", - "once": "^1.3.1" - } - }, - "node_modules/pumpify": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/pumpify/-/pumpify-2.0.1.tgz", - "integrity": "sha512-m7KOje7jZxrmutanlkS1daj1dS6z6BgslzOXmcSEpIlCxM3VJH7lG5QLeck/6hgF6F4crFf01UtQmNsJfweTAw==", - "dependencies": { - "duplexify": "^4.1.1", - "inherits": "^2.0.3", - "pump": "^3.0.0" - } - }, - "node_modules/qs": { - "version": "6.13.0", - "resolved": "https://registry.npmjs.org/qs/-/qs-6.13.0.tgz", - "integrity": "sha512-+38qI9SOr8tfZ4QmJNplMUxqjbe7LKvvZgWdExBOmd+egZTtjLB67Gu0HRX3u/XOq7UU2Nx6nsjvS16Z9uwfpg==", - "dev": true, - "dependencies": { - "side-channel": "^1.0.6" - }, - "engines": { - "node": ">=0.6" - }, - "funding": { - "url": "https://github.com/sponsors/ljharb" - } - }, - "node_modules/queue": { - "version": "4.5.1", - "resolved": "https://registry.npmjs.org/queue/-/queue-4.5.1.tgz", - "integrity": "sha512-AMD7w5hRXcFSb8s9u38acBZ+309u6GsiibP4/0YacJeaurRshogB7v/ZcVPxP5gD5+zIw6ixRHdutiYUJfwKHw==", - "dependencies": { - "inherits": "~2.0.0" - } - }, - "node_modules/quick-format-unescaped": { - "version": "4.0.4", - "resolved": "https://registry.npmjs.org/quick-format-unescaped/-/quick-format-unescaped-4.0.4.tgz", - "integrity": "sha512-tYC1Q1hgyRuHgloV/YXs2w15unPVh8qfu/qCTfhTYamaw7fyhumKa2yGpdSo87vY32rIclj+4fWYQXUMs9EHvg==" - }, - "node_modules/range-parser": { - "version": "1.2.1", - "resolved": "https://registry.npmjs.org/range-parser/-/range-parser-1.2.1.tgz", - "integrity": "sha512-Hrgsx+orqoygnmhFbKaHE6c296J+HTAQXoxEF6gNupROmmGJRoyzfG3ccAveqCBrwr/2yxQ5BVd/GTl5agOwSg==", - "dev": true, - "engines": { - "node": ">= 0.6" - } - }, - "node_modules/raw-body": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/raw-body/-/raw-body-3.0.0.tgz", - "integrity": "sha512-RmkhL8CAyCRPXCE28MMH0z2PNWQBNk2Q09ZdxM9IOOXwxwZbN+qbWaatPkdkWIKL2ZVDImrN/pK5HTRz2PcS4g==", - "dev": true, - "dependencies": { - "bytes": "3.1.2", - "http-errors": "2.0.0", - "iconv-lite": "0.6.3", - "unpipe": "1.0.0" - }, - "engines": { - "node": ">= 0.8" - } - }, - "node_modules/raw-body/node_modules/iconv-lite": { - "version": "0.6.3", - "resolved": "https://registry.npmjs.org/iconv-lite/-/iconv-lite-0.6.3.tgz", - "integrity": "sha512-4fCk79wshMdzMp2rH06qWrJE4iolqLhCUH+OiuIgU++RB0+94NlDL81atO7GX55uUKueo0txHNtvEyI6D7WdMw==", - "dev": true, - "dependencies": { - "safer-buffer": ">= 2.1.2 < 3.0.0" - }, - "engines": { - "node": ">=0.10.0" - } - }, - "node_modules/readable-stream": { - "version": "3.6.2", - "resolved": "https://registry.npmjs.org/readable-stream/-/readable-stream-3.6.2.tgz", - "integrity": "sha512-9u/sniCrY3D5WdsERHzHE4G2YCXqoG5FTHUiCC4SIbr6XcLZBY05ya9EKjYek9O5xOAwjGq+1JdGBAS7Q9ScoA==", - "dependencies": { - "inherits": "^2.0.3", - "string_decoder": "^1.1.1", - "util-deprecate": "^1.0.1" - }, - "engines": { - "node": ">= 6" - } - }, - "node_modules/readdirp": { - "version": "3.6.0", - "resolved": "https://registry.npmjs.org/readdirp/-/readdirp-3.6.0.tgz", - "integrity": "sha512-hOS089on8RduqdbhvQ5Z37A0ESjsqz6qnRcffsMU3495FuTdqSm+7bhJ29JvIOsBDEEnan5DPu9t3To9VRlMzA==", - "dev": true, - "dependencies": { - "picomatch": "^2.2.1" - }, - "engines": { - "node": ">=8.10.0" - } - }, - "node_modules/real-require": { - "version": "0.2.0", - "resolved": "https://registry.npmjs.org/real-require/-/real-require-0.2.0.tgz", - "integrity": "sha512-57frrGM/OCTLqLOAh0mhVA9VBMHd+9U7Zb2THMGdBUoZVOtGbJzjxsYGDJ3A9AYYCP4hn6y1TVbaOfzWtm5GFg==", - "engines": { - "node": ">= 12.13.0" - } - }, - "node_modules/remove-bom-buffer": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/remove-bom-buffer/-/remove-bom-buffer-3.0.0.tgz", - "integrity": "sha512-8v2rWhaakv18qcvNeli2mZ/TMTL2nEyAKRvzo1WtnZBl15SHyEhrCu2/xKlJyUFKHiHgfXIyuY6g2dObJJycXQ==", - "dependencies": { - "is-buffer": "^1.1.5", - "is-utf8": "^0.2.1" - }, - "engines": { - "node": ">=0.10.0" - } - }, - "node_modules/remove-bom-stream": { - "version": "1.2.0", - "resolved": "https://registry.npmjs.org/remove-bom-stream/-/remove-bom-stream-1.2.0.tgz", - "integrity": "sha512-wigO8/O08XHb8YPzpDDT+QmRANfW6vLqxfaXm1YXhnFf3AkSLyjfG3GEFg4McZkmgL7KvCj5u2KczkvSP6NfHA==", - "dependencies": { - "remove-bom-buffer": "^3.0.0", - "safe-buffer": "^5.1.0", - "through2": "^2.0.3" - }, - "engines": { - "node": ">= 0.10" - } - }, - "node_modules/remove-trailing-separator": { - "version": "1.1.0", - "resolved": "https://registry.npmjs.org/remove-trailing-separator/-/remove-trailing-separator-1.1.0.tgz", - "integrity": "sha512-/hS+Y0u3aOfIETiaiirUFwDBDzmXPvO+jAfKTitUngIPzdKc6Z0LoFjM/CK5PL4C+eKwHohlHAb6H0VFfmmUsw==" - }, - "node_modules/replace-ext": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/replace-ext/-/replace-ext-1.0.1.tgz", - "integrity": "sha512-yD5BHCe7quCgBph4rMQ+0KkIRKwWCrHDOX1p1Gp6HwjPM5kVoCdKGNhN7ydqqsX6lJEnQDKZ/tFMiEdQ1dvPEw==", - "engines": { - "node": ">= 0.10" - } - }, - "node_modules/require-from-string": { - "version": "2.0.2", - "resolved": "https://registry.npmjs.org/require-from-string/-/require-from-string-2.0.2.tgz", - "integrity": "sha512-Xf0nWe6RseziFMu+Ap9biiUbmplq6S9/p+7w7YXP/JBHhrUDDUhwa+vANyubuqfZWTveU//DYVGsDG7RKL/vEw==", - "engines": { - "node": ">=0.10.0" - } - }, - "node_modules/resolve-options": { - "version": "1.1.0", - "resolved": "https://registry.npmjs.org/resolve-options/-/resolve-options-1.1.0.tgz", - "integrity": "sha512-NYDgziiroVeDC29xq7bp/CacZERYsA9bXYd1ZmcJlF3BcrZv5pTb4NG7SjdyKDnXZ84aC4vo2u6sNKIA1LCu/A==", - "dependencies": { - "value-or-function": "^3.0.0" - }, - "engines": { - "node": ">= 0.10" - } - }, - "node_modules/router": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/router/-/router-2.0.0.tgz", - "integrity": "sha512-dIM5zVoG8xhC6rnSN8uoAgFARwTE7BQs8YwHEvK0VCmfxQXMaOuA1uiR1IPwsW7JyK5iTt7Od/TC9StasS2NPQ==", - "dev": true, - "dependencies": { - "array-flatten": "3.0.0", - "is-promise": "4.0.0", - "methods": "~1.1.2", - "parseurl": "~1.3.3", - "path-to-regexp": "^8.0.0", - "setprototypeof": "1.2.0", - "utils-merge": "1.0.1" - }, - "engines": { - "node": ">= 0.10" - } - }, - "node_modules/safe-buffer": { - "version": "5.2.1", - "resolved": "https://registry.npmjs.org/safe-buffer/-/safe-buffer-5.2.1.tgz", - "integrity": "sha512-rp3So07KcdmmKbGvgaNxQSJr7bGVSVk5S9Eq1F+ppbRo70+YeaDxkw5Dd8NPN+GD6bjnYm2VuPuCXmpuYvmCXQ==", - "funding": [ - { - "type": "github", - "url": "https://github.com/sponsors/feross" - }, - { - "type": "patreon", - "url": "https://www.patreon.com/feross" - }, - { - "type": "consulting", - "url": "https://feross.org/support" - } - ] - }, - "node_modules/safe-stable-stringify": { - "version": "2.4.3", - "resolved": "https://registry.npmjs.org/safe-stable-stringify/-/safe-stable-stringify-2.4.3.tgz", - "integrity": "sha512-e2bDA2WJT0wxseVd4lsDP4+3ONX6HpMXQa1ZhFQ7SU+GjvORCmShbCMltrtIDfkYhVHrOcPtj+KhmDBdPdZD1g==", - "engines": { - "node": ">=10" - } - }, - "node_modules/safer-buffer": { - "version": "2.1.2", - "resolved": "https://registry.npmjs.org/safer-buffer/-/safer-buffer-2.1.2.tgz", - "integrity": "sha512-YZo3K82SD7Riyi0E1EQPojLz7kpepnSQI9IyPbHHg1XXXevb5dJI7tpyN2ADxGcQbHG7vcyRHk0cbwqcQriUtg==", - "dev": true - }, - "node_modules/secure-json-parse": { - "version": "2.7.0", - "resolved": "https://registry.npmjs.org/secure-json-parse/-/secure-json-parse-2.7.0.tgz", - "integrity": "sha512-6aU+Rwsezw7VR8/nyvKTx8QpWH9FrcYiXXlqC4z5d5XQBDRqtbfsRjnwGyqbi3gddNtWHuEk9OANUotL26qKUw==" - }, - "node_modules/semver": { - "version": "7.5.4", - "resolved": "https://registry.npmjs.org/semver/-/semver-7.5.4.tgz", - "integrity": "sha512-1bCSESV6Pv+i21Hvpxp3Dx+pSD8lIPt8uVjRrxAUt/nbswYc+tK6Y2btiULjd4+fnq15PX+nqQDC7Oft7WkwcA==", - "dev": true, - "dependencies": { - "lru-cache": "^6.0.0" - }, - "bin": { - "semver": "bin/semver.js" - }, - "engines": { - "node": ">=10" - } - }, - "node_modules/send": { - "version": "1.1.0", - "resolved": "https://registry.npmjs.org/send/-/send-1.1.0.tgz", - "integrity": "sha512-v67WcEouB5GxbTWL/4NeToqcZiAWEq90N888fczVArY8A79J0L4FD7vj5hm3eUMua5EpoQ59wa/oovY6TLvRUA==", - "dev": true, - "dependencies": { - "debug": "^4.3.5", - "destroy": "^1.2.0", - "encodeurl": "^2.0.0", - "escape-html": "^1.0.3", - "etag": "^1.8.1", - "fresh": "^0.5.2", - "http-errors": "^2.0.0", - "mime-types": "^2.1.35", - "ms": "^2.1.3", - "on-finished": "^2.4.1", - "range-parser": "^1.2.1", - "statuses": "^2.0.1" - }, - "engines": { - "node": ">= 18" - } - }, - "node_modules/send/node_modules/fresh": { - "version": "0.5.2", - "resolved": "https://registry.npmjs.org/fresh/-/fresh-0.5.2.tgz", - "integrity": "sha512-zJ2mQYM18rEFOudeV4GShTGIQ7RbzA7ozbU9I/XBpm7kqgMywgmylMwXHxZJmkVoYkna9d2pVXVXPdYTP9ej8Q==", - "dev": true, - "engines": { - "node": ">= 0.6" - } - }, - "node_modules/send/node_modules/ms": { - "version": "2.1.3", - "resolved": "https://registry.npmjs.org/ms/-/ms-2.1.3.tgz", - "integrity": "sha512-6FlzubTLZG3J2a/NVCAleEhjzq5oxgHyaCU9yYXvcLsvoVaHJq/s5xXI6/XXP6tz7R9xAOtHnSO/tXtF3WRTlA==", - "dev": true - }, - "node_modules/serve-static": { - "version": "2.1.0", - "resolved": "https://registry.npmjs.org/serve-static/-/serve-static-2.1.0.tgz", - "integrity": "sha512-A3We5UfEjG8Z7VkDv6uItWw6HY2bBSBJT1KtVESn6EOoOr2jAxNhxWCLY3jDE2WcuHXByWju74ck3ZgLwL8xmA==", - "dev": true, - "dependencies": { - "encodeurl": "^2.0.0", - "escape-html": "^1.0.3", - "parseurl": "^1.3.3", - "send": "^1.0.0" - }, - "engines": { - "node": ">= 18" - } - }, - "node_modules/set-function-length": { - "version": "1.2.2", - "resolved": "https://registry.npmjs.org/set-function-length/-/set-function-length-1.2.2.tgz", - "integrity": "sha512-pgRc4hJ4/sNjWCSS9AmnS40x3bNMDTknHgL5UaMBTMyJnU90EgWh1Rz+MC9eFu4BuN/UwZjKQuY/1v3rM7HMfg==", - "dependencies": { - "define-data-property": "^1.1.4", - "es-errors": "^1.3.0", - "function-bind": "^1.1.2", - "get-intrinsic": "^1.2.4", - "gopd": "^1.0.1", - "has-property-descriptors": "^1.0.2" - }, - "engines": { - "node": ">= 0.4" - } - }, - "node_modules/setprototypeof": { - "version": "1.2.0", - "resolved": "https://registry.npmjs.org/setprototypeof/-/setprototypeof-1.2.0.tgz", - "integrity": "sha512-E5LDX7Wrp85Kil5bhZv46j8jOeboKq5JMmYM3gVGdGH8xFpPWXUMsNrlODCrkoxMEeNi/XZIwuRvY4XNwYMJpw==", - "dev": true - }, - "node_modules/sha.js": { - "version": "2.4.11", - "resolved": "https://registry.npmjs.org/sha.js/-/sha.js-2.4.11.tgz", - "integrity": "sha512-QMEp5B7cftE7APOjk5Y6xgrbWu+WkLVQwk8JNjZ8nKRciZaByEW6MubieAiToS7+dwvrjGhH8jRXz3MVd0AYqQ==", - "dependencies": { - "inherits": "^2.0.1", - "safe-buffer": "^5.0.1" - }, - "bin": { - "sha.js": "bin.js" - } - }, - "node_modules/should-proxy": { - "version": "1.0.4", - "resolved": "https://registry.npmjs.org/should-proxy/-/should-proxy-1.0.4.tgz", - "integrity": "sha512-RPQhIndEIVUCjkfkQ6rs6sOR6pkxJWCNdxtfG5pP0RVgUYbK5911kLTF0TNcCC0G3YCGd492rMollFT2aTd9iQ==" - }, - "node_modules/side-channel": { - "version": "1.0.6", - "resolved": "https://registry.npmjs.org/side-channel/-/side-channel-1.0.6.tgz", - "integrity": "sha512-fDW/EZ6Q9RiO8eFG8Hj+7u/oW+XrPTIChwCOM2+th2A6OblDtYYIpve9m+KvI9Z4C9qSEXlaGR6bTEYHReuglA==", - "dev": true, - "dependencies": { - "call-bind": "^1.0.7", - "es-errors": "^1.3.0", - "get-intrinsic": "^1.2.4", - "object-inspect": "^1.13.1" - }, - "engines": { - "node": ">= 0.4" - }, - "funding": { - "url": "https://github.com/sponsors/ljharb" - } - }, - "node_modules/simple-concat": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/simple-concat/-/simple-concat-1.0.1.tgz", - "integrity": "sha512-cSFtAPtRhljv69IK0hTVZQ+OfE9nePi/rtJmw5UjHeVyVroEqJXP1sFztKUy1qU+xvz3u/sfYJLa947b7nAN2Q==", - "funding": [ - { - "type": "github", - "url": "https://github.com/sponsors/feross" - }, - { - "type": "patreon", - "url": "https://www.patreon.com/feross" - }, - { - "type": "consulting", - "url": "https://feross.org/support" - } - ] - }, - "node_modules/simple-get": { - "version": "4.0.1", - "resolved": "https://registry.npmjs.org/simple-get/-/simple-get-4.0.1.tgz", - "integrity": "sha512-brv7p5WgH0jmQJr1ZDDfKDOSeWWg+OVypG99A/5vYGPqJ6pxiaHLy8nxtFjBA7oMa01ebA9gfh1uMCFqOuXxvA==", - "funding": [ - { - "type": "github", - "url": "https://github.com/sponsors/feross" - }, - { - "type": "patreon", - "url": "https://www.patreon.com/feross" - }, - { - "type": "consulting", - "url": "https://feross.org/support" - } - ], - "dependencies": { - "decompress-response": "^6.0.0", - "once": "^1.3.1", - "simple-concat": "^1.0.0" - } - }, - "node_modules/simple-update-notifier": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/simple-update-notifier/-/simple-update-notifier-2.0.0.tgz", - "integrity": "sha512-a2B9Y0KlNXl9u/vsW6sTIu9vGEpfKu2wRV6l1H3XEas/0gUIzGzBoP/IouTcUQbm9JWZLH3COxyn03TYlFax6w==", - "dev": true, - "dependencies": { - "semver": "^7.5.3" - }, - "engines": { - "node": ">=10" - } - }, - "node_modules/sonic-boom": { - "version": "3.3.0", - "resolved": "https://registry.npmjs.org/sonic-boom/-/sonic-boom-3.3.0.tgz", - "integrity": "sha512-LYxp34KlZ1a2Jb8ZQgFCK3niIHzibdwtwNUWKg0qQRzsDoJ3Gfgkf8KdBTFU3SkejDEIlWwnSnpVdOZIhFMl/g==", - "dependencies": { - "atomic-sleep": "^1.0.0" - } - }, - "node_modules/source-map": { - "version": "0.6.1", - "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.6.1.tgz", - "integrity": "sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g==", - "engines": { - "node": ">=0.10.0" - } - }, - "node_modules/split2": { - "version": "4.2.0", - "resolved": "https://registry.npmjs.org/split2/-/split2-4.2.0.tgz", - "integrity": "sha512-UcjcJOWknrNkF6PLX83qcHM6KHgVKNkV62Y8a5uYDVv9ydGQVwAHMKqHdJje1VTWpljG0WYpCDhrCdAOYH4TWg==", - "engines": { - "node": ">= 10.x" - } - }, - "node_modules/statuses": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/statuses/-/statuses-2.0.1.tgz", - "integrity": "sha512-RwNA9Z/7PrK06rYLIzFMlaF+l73iwpzsqRIFgbMLbTcLD6cOao82TaWefPXQvB2fOC4AjuYSEndS7N/mTCbkdQ==", - "dev": true, - "engines": { - "node": ">= 0.8" - } - }, - "node_modules/stream-shift": { - "version": "1.0.3", - "resolved": "https://registry.npmjs.org/stream-shift/-/stream-shift-1.0.3.tgz", - "integrity": "sha512-76ORR0DO1o1hlKwTbi/DM3EXWGf3ZJYO8cXX5RJwnul2DEg2oyoZyjLNoQM8WsvZiFKCRfC1O0J7iCvie3RZmQ==" - }, - "node_modules/string_decoder": { - "version": "1.3.0", - "resolved": "https://registry.npmjs.org/string_decoder/-/string_decoder-1.3.0.tgz", - "integrity": "sha512-hkRX8U1WjJFd8LsDJ2yQ/wWWxaopEsABU1XfkM8A+j0+85JAGppt16cr1Whg6KIbb4okU6Mql6BOj+uup/wKeA==", - "dependencies": { - "safe-buffer": "~5.2.0" - } - }, - "node_modules/strip-json-comments": { - "version": "3.1.1", - "resolved": "https://registry.npmjs.org/strip-json-comments/-/strip-json-comments-3.1.1.tgz", - "integrity": "sha512-6fPc+R4ihwqP6N/aIv2f1gMH8lOVtWQHoqC4yK6oSDVVocumAsfCqjkXnqiYMhmMwS/mEHLp7Vehlt3ql6lEig==", - "engines": { - "node": ">=8" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" - } - }, - "node_modules/supports-color": { - "version": "5.5.0", - "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-5.5.0.tgz", - "integrity": "sha512-QjVjwdXIt408MIiAqCX4oUKsgU2EqAGzs2Ppkm4aQYbjm+ZEWEcW4SfFNTr4uMNZma0ey4f5lgLrkB0aX0QMow==", - "dev": true, - "dependencies": { - "has-flag": "^3.0.0" - }, - "engines": { - "node": ">=4" - } - }, - "node_modules/thread-stream": { - "version": "2.4.1", - "resolved": "https://registry.npmjs.org/thread-stream/-/thread-stream-2.4.1.tgz", - "integrity": "sha512-d/Ex2iWd1whipbT681JmTINKw0ZwOUBZm7+Gjs64DHuX34mmw8vJL2bFAaNacaW72zYiTJxSHi5abUuOi5nsfg==", - "dependencies": { - "real-require": "^0.2.0" - } - }, - "node_modules/through": { - "version": "2.3.8", - "resolved": "https://registry.npmjs.org/through/-/through-2.3.8.tgz", - "integrity": "sha512-w89qg7PI8wAdvX60bMDP+bFoD5Dvhm9oLheFp5O4a2QF0cSBGsBX4qZmadPMvVqlLJBBci+WqGGOAPvcDeNSVg==" - }, - "node_modules/through2": { - "version": "2.0.5", - "resolved": "https://registry.npmjs.org/through2/-/through2-2.0.5.tgz", - "integrity": "sha512-/mrRod8xqpA+IHSLyGCQ2s8SPHiCDEeQJSep1jqLYeEUClOFG2Qsh+4FU6G9VeqpZnGW/Su8LQGc4YKni5rYSQ==", - "dependencies": { - "readable-stream": "~2.3.6", - "xtend": "~4.0.1" - } - }, - "node_modules/through2-filter": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/through2-filter/-/through2-filter-3.0.0.tgz", - "integrity": "sha512-jaRjI2WxN3W1V8/FMZ9HKIBXixtiqs3SQSX4/YGIiP3gL6djW48VoZq9tDqeCWs3MT8YY5wb/zli8VW8snY1CA==", - "dependencies": { - "through2": "~2.0.0", - "xtend": "~4.0.0" - } - }, - "node_modules/through2/node_modules/readable-stream": { - "version": "2.3.8", - "resolved": "https://registry.npmjs.org/readable-stream/-/readable-stream-2.3.8.tgz", - "integrity": "sha512-8p0AUk4XODgIewSi0l8Epjs+EVnWiK7NoDIEGU0HhE7+ZyY8D1IMY7odu5lRrFXGg71L15KG8QrPmum45RTtdA==", - "dependencies": { - "core-util-is": "~1.0.0", - "inherits": "~2.0.3", - "isarray": "~1.0.0", - "process-nextick-args": "~2.0.0", - "safe-buffer": "~5.1.1", - "string_decoder": "~1.1.1", - "util-deprecate": "~1.0.1" - } - }, - "node_modules/through2/node_modules/safe-buffer": { - "version": "5.1.2", - "resolved": "https://registry.npmjs.org/safe-buffer/-/safe-buffer-5.1.2.tgz", - "integrity": "sha512-Gd2UZBJDkXlY7GbJxfsE8/nvKkUEU1G38c1siN6QP6a9PT9MmHB8GnpscSmMJSoF8LOIrt8ud/wPtojys4G6+g==" - }, - "node_modules/through2/node_modules/string_decoder": { - "version": "1.1.1", - "resolved": "https://registry.npmjs.org/string_decoder/-/string_decoder-1.1.1.tgz", - "integrity": "sha512-n/ShnvDi6FHbbVfviro+WojiFzv+s8MPMHBczVePfUpDJLwoLT0ht1l4YwBCbi8pJAveEEdnkHyPyTP/mzRfwg==", - "dependencies": { - "safe-buffer": "~5.1.0" - } - }, - "node_modules/to-absolute-glob": { - "version": "2.0.2", - "resolved": "https://registry.npmjs.org/to-absolute-glob/-/to-absolute-glob-2.0.2.tgz", - "integrity": "sha512-rtwLUQEwT8ZeKQbyFJyomBRYXyE16U5VKuy0ftxLMK/PZb2fkOsg5r9kHdauuVDbsNdIBoC/HCthpidamQFXYA==", - "dependencies": { - "is-absolute": "^1.0.0", - "is-negated-glob": "^1.0.0" - }, - "engines": { - "node": ">=0.10.0" - } - }, - "node_modules/to-regex-range": { - "version": "5.0.1", - "resolved": "https://registry.npmjs.org/to-regex-range/-/to-regex-range-5.0.1.tgz", - "integrity": "sha512-65P7iz6X5yEr1cwcgvQxbbIw7Uk3gOy5dIdtZ4rDveLqhrdJP+Li/Hx6tyK0NEb+2GCyneCMJiGqrADCSNk8sQ==", - "dependencies": { - "is-number": "^7.0.0" - }, - "engines": { - "node": ">=8.0" - } - }, - "node_modules/to-regex-range/node_modules/is-number": { - "version": "7.0.0", - "resolved": "https://registry.npmjs.org/is-number/-/is-number-7.0.0.tgz", - "integrity": "sha512-41Cifkg6e8TylSpdtTpeLVMqvSBEVzTttHvERD741+pnZ8ANv0004MRL43QKPDlK9cGvNp6NZWZUBlbGXYxxng==", - "engines": { - "node": ">=0.12.0" - } - }, - "node_modules/to-through": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/to-through/-/to-through-2.0.0.tgz", - "integrity": "sha512-+QIz37Ly7acM4EMdw2PRN389OneM5+d844tirkGp4dPKzI5OE72V9OsbFp+CIYJDahZ41ZV05hNtcPAQUAm9/Q==", - "dependencies": { - "through2": "^2.0.3" - }, - "engines": { - "node": ">= 0.10" - } - }, - "node_modules/toidentifier": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/toidentifier/-/toidentifier-1.0.1.tgz", - "integrity": "sha512-o5sSPKEkg/DIQNmH43V0/uerLrpzVedkUh8tGNvaeXpfpuwjKenlSox/2O/BTlZUtEe+JG7s5YhEz608PlAHRA==", - "dev": true, - "engines": { - "node": ">=0.6" - } - }, - "node_modules/touch": { - "version": "3.1.0", - "resolved": "https://registry.npmjs.org/touch/-/touch-3.1.0.tgz", - "integrity": "sha512-WBx8Uy5TLtOSRtIq+M03/sKDrXCLHxwDcquSP2c43Le03/9serjQBIztjRz6FkJez9D/hleyAXTBGLwwZUw9lA==", - "dev": true, - "dependencies": { - "nopt": "~1.0.10" - }, - "bin": { - "nodetouch": "bin/nodetouch.js" - } - }, - "node_modules/type-is": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/type-is/-/type-is-2.0.0.tgz", - "integrity": "sha512-gd0sGezQYCbWSbkZr75mln4YBidWUN60+devscpLF5mtRDUpiaTvKpBNrdaCvel1NdR2k6vclXybU5fBd2i+nw==", - "dev": true, - "dependencies": { - "content-type": "^1.0.5", - "media-typer": "^1.1.0", - "mime-types": "^3.0.0" - }, - "engines": { - "node": ">= 0.6" - } - }, - "node_modules/type-is/node_modules/mime-db": { - "version": "1.53.0", - "resolved": "https://registry.npmjs.org/mime-db/-/mime-db-1.53.0.tgz", - "integrity": "sha512-oHlN/w+3MQ3rba9rqFr6V/ypF10LSkdwUysQL7GkXoTgIWeV+tcXGA852TBxH+gsh8UWoyhR1hKcoMJTuWflpg==", - "dev": true, - "engines": { - "node": ">= 0.6" - } - }, - "node_modules/type-is/node_modules/mime-types": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/mime-types/-/mime-types-3.0.0.tgz", - "integrity": "sha512-XqoSHeCGjVClAmoGFG3lVFqQFRIrTVw2OH3axRqAcfaw+gHWIfnASS92AV+Rl/mk0MupgZTRHQOjxY6YVnzK5w==", - "dev": true, - "dependencies": { - "mime-db": "^1.53.0" - }, - "engines": { - "node": ">= 0.6" - } - }, - "node_modules/uglify-js": { - "version": "3.17.4", - "resolved": "https://registry.npmjs.org/uglify-js/-/uglify-js-3.17.4.tgz", - "integrity": "sha512-T9q82TJI9e/C1TAxYvfb16xO120tMVFZrGA3f9/P4424DNu6ypK103y0GPFVa17yotwSyZW5iYXgjYHkGrJW/g==", - "optional": true, - "bin": { - "uglifyjs": "bin/uglifyjs" - }, - "engines": { - "node": ">=0.8.0" - } - }, - "node_modules/unc-path-regex": { - "version": "0.1.2", - "resolved": "https://registry.npmjs.org/unc-path-regex/-/unc-path-regex-0.1.2.tgz", - "integrity": "sha512-eXL4nmJT7oCpkZsHZUOJo8hcX3GbsiDOa0Qu9F646fi8dT3XuSVopVqAcEiVzSKKH7UoDti23wNX3qGFxcW5Qg==", - "engines": { - "node": ">=0.10.0" - } - }, - "node_modules/undefsafe": { - "version": "2.0.5", - "resolved": "https://registry.npmjs.org/undefsafe/-/undefsafe-2.0.5.tgz", - "integrity": "sha512-WxONCrssBM8TSPRqN5EmsjVrsv4A8X12J4ArBiiayv3DyyG3ZlIg6yysuuSYdZsVz3TKcTg2fd//Ujd4CHV1iA==", - "dev": true - }, - "node_modules/unique-stream": { - "version": "2.3.1", - "resolved": "https://registry.npmjs.org/unique-stream/-/unique-stream-2.3.1.tgz", - "integrity": "sha512-2nY4TnBE70yoxHkDli7DMazpWiP7xMdCYqU2nBRO0UB+ZpEkGsSija7MvmvnZFUeC+mrgiUfcHSr3LmRFIg4+A==", - "dependencies": { - "json-stable-stringify-without-jsonify": "^1.0.1", - "through2-filter": "^3.0.0" - } - }, - "node_modules/unpipe": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/unpipe/-/unpipe-1.0.0.tgz", - "integrity": "sha512-pjy2bYhSsufwWlKwPc+l3cN7+wuJlK6uz0YdJEOlQDbl6jo/YlPi4mb8agUkVC8BF7V8NuzeyPNqRksA3hztKQ==", - "dev": true, - "engines": { - "node": ">= 0.8" - } - }, - "node_modules/unxhr": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/unxhr/-/unxhr-1.0.1.tgz", - "integrity": "sha512-MAhukhVHyaLGDjyDYhy8gVjWJyhTECCdNsLwlMoGFoNJ3o79fpQhtQuzmAE4IxCMDwraF4cW8ZjpAV0m9CRQbg==", - "engines": { - "node": ">=8.11" - } - }, - "node_modules/util-deprecate": { - "version": "1.0.2", - "resolved": "https://registry.npmjs.org/util-deprecate/-/util-deprecate-1.0.2.tgz", - "integrity": "sha512-EPD5q1uXyFxJpCrLnCc1nHnq3gOa6DZBocAIiI2TaSCA7VCJ1UJDMagCzIkXNsUYfD1daK//LTEQ8xiIbrHtcw==" - }, - "node_modules/utils-merge": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/utils-merge/-/utils-merge-1.0.1.tgz", - "integrity": "sha512-pMZTvIkT1d+TFGvDOqodOclx0QWkkgi6Tdoa8gC8ffGAAqz9pzPTZWAybbsHHoED/ztMtkv/VoYTYyShUn81hA==", - "dev": true, - "engines": { - "node": ">= 0.4.0" - } - }, - "node_modules/value-or-function": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/value-or-function/-/value-or-function-3.0.0.tgz", - "integrity": "sha512-jdBB2FrWvQC/pnPtIqcLsMaQgjhdb6B7tk1MMyTKapox+tQZbdRP4uLxu/JY0t7fbfDCUMnuelzEYv5GsxHhdg==", - "engines": { - "node": ">= 0.10" - } - }, - "node_modules/vary": { - "version": "1.1.2", - "resolved": "https://registry.npmjs.org/vary/-/vary-1.1.2.tgz", - "integrity": "sha512-BNGbWLfd0eUPabhkXUVm0j8uuvREyTh5ovRa/dyow/BqAbZJyC+5fU+IzQOzmAKzYqYRAISoRhdQr3eIZ/PXqg==", - "dev": true, - "engines": { - "node": ">= 0.8" - } - }, - "node_modules/vinyl": { - "version": "2.2.1", - "resolved": "https://registry.npmjs.org/vinyl/-/vinyl-2.2.1.tgz", - "integrity": "sha512-LII3bXRFBZLlezoG5FfZVcXflZgWP/4dCwKtxd5ky9+LOtM4CS3bIRQsmR1KMnMW07jpE8fqR2lcxPZ+8sJIcw==", - "dependencies": { - "clone": "^2.1.1", - "clone-buffer": "^1.0.0", - "clone-stats": "^1.0.0", - "cloneable-readable": "^1.0.0", - "remove-trailing-separator": "^1.0.1", - "replace-ext": "^1.0.0" - }, - "engines": { - "node": ">= 0.10" - } - }, - "node_modules/vinyl-fs": { - "version": "3.0.3", - "resolved": "https://registry.npmjs.org/vinyl-fs/-/vinyl-fs-3.0.3.tgz", - "integrity": "sha512-vIu34EkyNyJxmP0jscNzWBSygh7VWhqun6RmqVfXePrOwi9lhvRs//dOaGOTRUQr4tx7/zd26Tk5WeSVZitgng==", - "dependencies": { - "fs-mkdirp-stream": "^1.0.0", - "glob-stream": "^6.1.0", - "graceful-fs": "^4.0.0", - "is-valid-glob": "^1.0.0", - "lazystream": "^1.0.0", - "lead": "^1.0.0", - "object.assign": "^4.0.4", - "pumpify": "^1.3.5", - "readable-stream": "^2.3.3", - "remove-bom-buffer": "^3.0.0", - "remove-bom-stream": "^1.2.0", - "resolve-options": "^1.1.0", - "through2": "^2.0.0", - "to-through": "^2.0.0", - "value-or-function": "^3.0.0", - "vinyl": "^2.0.0", - "vinyl-sourcemap": "^1.1.0" - }, - "engines": { - "node": ">= 0.10" - } - }, - "node_modules/vinyl-fs/node_modules/duplexify": { - "version": "3.7.1", - "resolved": "https://registry.npmjs.org/duplexify/-/duplexify-3.7.1.tgz", - "integrity": "sha512-07z8uv2wMyS51kKhD1KsdXJg5WQ6t93RneqRxUHnskXVtlYYkLqM0gqStQZ3pj073g687jPCHrqNfCzawLYh5g==", - "dependencies": { - "end-of-stream": "^1.0.0", - "inherits": "^2.0.1", - "readable-stream": "^2.0.0", - "stream-shift": "^1.0.0" - } - }, - "node_modules/vinyl-fs/node_modules/glob-parent": { - "version": "3.1.0", - "resolved": "https://registry.npmjs.org/glob-parent/-/glob-parent-3.1.0.tgz", - "integrity": "sha512-E8Ak/2+dZY6fnzlR7+ueWvhsH1SjHr4jjss4YS/h4py44jY9MhK/VFdaZJAWDz6BbL21KeteKxFSFpq8OS5gVA==", - "dependencies": { - "is-glob": "^3.1.0", - "path-dirname": "^1.0.0" - } - }, - "node_modules/vinyl-fs/node_modules/glob-stream": { - "version": "6.1.0", - "resolved": "https://registry.npmjs.org/glob-stream/-/glob-stream-6.1.0.tgz", - "integrity": "sha512-uMbLGAP3S2aDOHUDfdoYcdIePUCfysbAd0IAoWVZbeGU/oNQ8asHVSshLDJUPWxfzj8zsCG7/XeHPHTtow0nsw==", - "dependencies": { - "extend": "^3.0.0", - "glob": "^7.1.1", - "glob-parent": "^3.1.0", - "is-negated-glob": "^1.0.0", - "ordered-read-streams": "^1.0.0", - "pumpify": "^1.3.5", - "readable-stream": "^2.1.5", - "remove-trailing-separator": "^1.0.1", - "to-absolute-glob": "^2.0.0", - "unique-stream": "^2.0.2" - }, - "engines": { - "node": ">= 0.10" - } - }, - "node_modules/vinyl-fs/node_modules/is-glob": { - "version": "3.1.0", - "resolved": "https://registry.npmjs.org/is-glob/-/is-glob-3.1.0.tgz", - "integrity": "sha512-UFpDDrPgM6qpnFNI+rh/p3bUaq9hKLZN8bMUWzxmcnZVS3omf4IPK+BrewlnWjO1WmUsMYuSjKh4UJuV4+Lqmw==", - "dependencies": { - "is-extglob": "^2.1.0" - }, - "engines": { - "node": ">=0.10.0" - } - }, - "node_modules/vinyl-fs/node_modules/pump": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/pump/-/pump-2.0.1.tgz", - "integrity": "sha512-ruPMNRkN3MHP1cWJc9OWr+T/xDP0jhXYCLfJcBuX54hhfIBnaQmAUMfDcG4DM5UMWByBbJY69QSphm3jtDKIkA==", - "dependencies": { - "end-of-stream": "^1.1.0", - "once": "^1.3.1" - } - }, - "node_modules/vinyl-fs/node_modules/pumpify": { - "version": "1.5.1", - "resolved": "https://registry.npmjs.org/pumpify/-/pumpify-1.5.1.tgz", - "integrity": "sha512-oClZI37HvuUJJxSKKrC17bZ9Cu0ZYhEAGPsPUy9KlMUmv9dKX2o77RUmq7f3XjIxbwyGwYzbzQ1L2Ks8sIradQ==", - "dependencies": { - "duplexify": "^3.6.0", - "inherits": "^2.0.3", - "pump": "^2.0.0" - } - }, - "node_modules/vinyl-fs/node_modules/readable-stream": { - "version": "2.3.8", - "resolved": "https://registry.npmjs.org/readable-stream/-/readable-stream-2.3.8.tgz", - "integrity": "sha512-8p0AUk4XODgIewSi0l8Epjs+EVnWiK7NoDIEGU0HhE7+ZyY8D1IMY7odu5lRrFXGg71L15KG8QrPmum45RTtdA==", - "dependencies": { - "core-util-is": "~1.0.0", - "inherits": "~2.0.3", - "isarray": "~1.0.0", - "process-nextick-args": "~2.0.0", - "safe-buffer": "~5.1.1", - "string_decoder": "~1.1.1", - "util-deprecate": "~1.0.1" - } - }, - "node_modules/vinyl-fs/node_modules/safe-buffer": { - "version": "5.1.2", - "resolved": "https://registry.npmjs.org/safe-buffer/-/safe-buffer-5.1.2.tgz", - "integrity": "sha512-Gd2UZBJDkXlY7GbJxfsE8/nvKkUEU1G38c1siN6QP6a9PT9MmHB8GnpscSmMJSoF8LOIrt8ud/wPtojys4G6+g==" - }, - "node_modules/vinyl-fs/node_modules/string_decoder": { - "version": "1.1.1", - "resolved": "https://registry.npmjs.org/string_decoder/-/string_decoder-1.1.1.tgz", - "integrity": "sha512-n/ShnvDi6FHbbVfviro+WojiFzv+s8MPMHBczVePfUpDJLwoLT0ht1l4YwBCbi8pJAveEEdnkHyPyTP/mzRfwg==", - "dependencies": { - "safe-buffer": "~5.1.0" - } - }, - "node_modules/vinyl-sourcemap": { - "version": "1.1.0", - "resolved": "https://registry.npmjs.org/vinyl-sourcemap/-/vinyl-sourcemap-1.1.0.tgz", - "integrity": "sha512-NiibMgt6VJGJmyw7vtzhctDcfKch4e4n9TBeoWlirb7FMg9/1Ov9k+A5ZRAtywBpRPiyECvQRQllYM8dECegVA==", - "dependencies": { - "append-buffer": "^1.0.2", - "convert-source-map": "^1.5.0", - "graceful-fs": "^4.1.6", - "normalize-path": "^2.1.1", - "now-and-later": "^2.0.0", - "remove-bom-buffer": "^3.0.0", - "vinyl": "^2.0.0" - }, - "engines": { - "node": ">= 0.10" - } - }, - "node_modules/vinyl-sourcemap/node_modules/normalize-path": { - "version": "2.1.1", - "resolved": "https://registry.npmjs.org/normalize-path/-/normalize-path-2.1.1.tgz", - "integrity": "sha512-3pKJwH184Xo/lnH6oyP1q2pMd7HcypqqmRs91/6/i2CGtWwIKGCkOOMTm/zXbgTEWHw1uNpNi/igc3ePOYHb6w==", - "dependencies": { - "remove-trailing-separator": "^1.0.1" - }, - "engines": { - "node": ">=0.10.0" - } - }, - "node_modules/wordwrap": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/wordwrap/-/wordwrap-1.0.0.tgz", - "integrity": "sha512-gvVzJFlPycKc5dZN4yPkP8w7Dc37BtP1yczEneOb4uq34pXZcvrtRTmWV8W+Ume+XCxKgbjM+nevkyFPMybd4Q==" - }, - "node_modules/wrappy": { - "version": "1.0.2", - "resolved": "https://registry.npmjs.org/wrappy/-/wrappy-1.0.2.tgz", - "integrity": "sha512-l4Sp/DRseor9wL6EvV2+TuQn63dMkPjZ/sp9XkghTEbV9KlPS1xUsZ3u7/IQO4wxtcFB4bgpQPRcR3QCvezPcQ==" - }, - "node_modules/xdg-basedir": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/xdg-basedir/-/xdg-basedir-3.0.0.tgz", - "integrity": "sha512-1Dly4xqlulvPD3fZUQJLY+FUIeqN3N2MM3uqe4rCJftAvOjFa3jFGfctOgluGx4ahPbUCsZkmJILiP0Vi4T6lQ==", - "engines": { - "node": ">=4" - } - }, - "node_modules/xtend": { - "version": "4.0.2", - "resolved": "https://registry.npmjs.org/xtend/-/xtend-4.0.2.tgz", - "integrity": "sha512-LKYU1iAXJXUgAXn9URjiu+MWhyUXHsvfp7mcuYm9dSUKK0/CjtrUwFAxD82/mCWbtLsGjFIad0wIsod4zrTAEQ==", - "engines": { - "node": ">=0.4" - } - }, - "node_modules/yallist": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/yallist/-/yallist-4.0.0.tgz", - "integrity": "sha512-3wdGidZyq5PB084XLES5TpOSRA3wjXAlIWMhum2kRcv/41Sn2emQ0dycQW4uZXLejwKvg6EsvbdlVL+FYEct7A==", - "dev": true - }, - "node_modules/yargs-parser": { - "version": "20.2.9", - "resolved": "https://registry.npmjs.org/yargs-parser/-/yargs-parser-20.2.9.tgz", - "integrity": "sha512-y11nGElTIV+CT3Zv9t7VKl+Q3hTQoT9a1Qzezhhl6Rp21gJ/IVTW7Z3y9EWXhuUBC2Shnf+DX0antecpAwSP8w==", - "engines": { - "node": ">=10" - } - }, - "node_modules/yauzl": { - "version": "2.10.0", - "resolved": "https://registry.npmjs.org/yauzl/-/yauzl-2.10.0.tgz", - "integrity": "sha512-p4a9I6X6nu6IhoGmBqAcbJy1mlC4j27vEPZX9F4L4/vZT3Lyq1VkFHw/V/PUcB9Buo+DG3iHkT0x3Qya58zc3g==", - "dependencies": { - "buffer-crc32": "~0.2.3", - "fd-slicer": "~1.1.0" - } - }, - "node_modules/yazl": { - "version": "2.5.1", - "resolved": "https://registry.npmjs.org/yazl/-/yazl-2.5.1.tgz", - "integrity": "sha512-phENi2PLiHnHb6QBVot+dJnaAZ0xosj7p3fWl+znIjBDlnMI2PsZCJZ306BPTFOaHf5qdDEI8x5qFrSOBN5vrw==", - "dependencies": { - "buffer-crc32": "~0.2.3" - } - } - }, - "dependencies": { - "@antora/asciidoc-loader": { - "version": "3.1.7", - "resolved": "https://registry.npmjs.org/@antora/asciidoc-loader/-/asciidoc-loader-3.1.7.tgz", - "integrity": "sha512-sM/poPtAi8Cx0g2oLGHoEYjTdE9pvIYLgbHW07fGf6c9wQYMd2DMsevtbhNKWp+xqxj/QinToz4JOaNLoy1nfg==", - "requires": { - "@antora/logger": "3.1.7", - "@antora/user-require-helper": "~2.0", - "@asciidoctor/core": "~2.2" - } - }, - "@antora/cli": { - "version": "3.1.7", - "resolved": "https://registry.npmjs.org/@antora/cli/-/cli-3.1.7.tgz", - "integrity": "sha512-yHo30VmiLLsZU4JW8VZR6fql9m5lIxocA2d0tduKQ+r4YSD1kt+bbwX3You3iMwW7oLoNo62zfU76F8CQBnm2g==", - "requires": { - "@antora/logger": "3.1.7", - "@antora/playbook-builder": "3.1.7", - "@antora/user-require-helper": "~2.0", - "commander": "~10.0" - } - }, - "@antora/content-aggregator": { - "version": "3.1.7", - "resolved": "https://registry.npmjs.org/@antora/content-aggregator/-/content-aggregator-3.1.7.tgz", - "integrity": "sha512-2gBbxaDxqY4QRw9Vut0IbKNqI9zAAohxjT0zcA5Am10kE3ywvzXaBa3tvb+A7vUl/vRcCC0LPM7pO37RVrbsGA==", - "requires": { - "@antora/expand-path-helper": "~2.0", - "@antora/logger": "3.1.7", - "@antora/user-require-helper": "~2.0", - "braces": "~3.0", - "cache-directory": "~2.0", - "glob-stream": "~7.0", - "hpagent": "~1.2", - "isomorphic-git": "~1.25", - "js-yaml": "~4.1", - "multi-progress": "~4.0", - "picomatch": "~2.3", - "progress": "~2.0", - "should-proxy": "~1.0", - "simple-get": "~4.0", - "vinyl": "~2.2" - } - }, - "@antora/content-classifier": { - "version": "3.1.7", - "resolved": "https://registry.npmjs.org/@antora/content-classifier/-/content-classifier-3.1.7.tgz", - "integrity": "sha512-94XwJ35pkWJU6dJqQg5oreJRCkaXwU6yw9XSyB731o4i/0romkazKnu7deHugqdgvzqn92AlMRG6R0clhJLEsw==", - "requires": { - "@antora/asciidoc-loader": "3.1.7", - "@antora/logger": "3.1.7", - "mime-types": "~2.1", - "vinyl": "~2.2" - } - }, - "@antora/document-converter": { - "version": "3.1.7", - "resolved": "https://registry.npmjs.org/@antora/document-converter/-/document-converter-3.1.7.tgz", - "integrity": "sha512-cRVJf7QyclxjWbA0gWz7hncZYThIREikkwaxaa26LsRCfBNlw7wxs7lWejvIvEl1LVshupbinJwKUPPQPOsHhw==", - "requires": { - "@antora/asciidoc-loader": "3.1.7" - } - }, - "@antora/expand-path-helper": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/@antora/expand-path-helper/-/expand-path-helper-2.0.0.tgz", - "integrity": "sha512-CSMBGC+tI21VS2kGW3PV7T2kQTM5eT3f2GTPVLttwaNYbNxDve08en/huzszHJfxo11CcEs26Ostr0F2c1QqeA==" - }, - "@antora/file-publisher": { - "version": "3.1.7", - "resolved": "https://registry.npmjs.org/@antora/file-publisher/-/file-publisher-3.1.7.tgz", - "integrity": "sha512-UH2o0DJuv9BJvWgn+QSE3MhtHB3oN3lG5lJkV3fQi1jAV+qPIHoiTIYhbw02mj5KQ3Qbt7YWWAKZKuGl3rEdjg==", - "requires": { - "@antora/expand-path-helper": "~2.0", - "@antora/user-require-helper": "~2.0", - "@vscode/gulp-vinyl-zip": "~2.5", - "vinyl": "~2.2", - "vinyl-fs": "~3.0" - } - }, - "@antora/logger": { - "version": "3.1.7", - "resolved": "https://registry.npmjs.org/@antora/logger/-/logger-3.1.7.tgz", - "integrity": "sha512-Z2tfNIi9G4BnAZq26Kp30974FxCVCtvH46FOi6ClnkJg6Uf2gTrVlJERmtsDTsHjWsf1qKbnj/4b99/AU31iQg==", - "requires": { - "@antora/expand-path-helper": "~2.0", - "pino": "~8.14", - "pino-pretty": "~10.0", - "sonic-boom": "~3.3" - } - }, - "@antora/navigation-builder": { - "version": "3.1.7", - "resolved": "https://registry.npmjs.org/@antora/navigation-builder/-/navigation-builder-3.1.7.tgz", - "integrity": "sha512-QvMPb0qY1zfgyLCfuEhJOpO5qSVjaVe5X/bQjSii9vDGgpIEiC2yt/hgqER37E/3zsBGEZvCH5lSLk1c7x0+EQ==", - "requires": { - "@antora/asciidoc-loader": "3.1.7" - } - }, - "@antora/page-composer": { - "version": "3.1.7", - "resolved": "https://registry.npmjs.org/@antora/page-composer/-/page-composer-3.1.7.tgz", - "integrity": "sha512-zJMzYznPT6Vd59nEXio/2rolkX070Nup6g4a8d4RCz0WoE8dmMidw6XFgjAHr0Lyh14/FHgBPlYXfhkDFR16Mw==", - "requires": { - "@antora/logger": "3.1.7", - "handlebars": "~4.7", - "require-from-string": "~2.0" - } - }, - "@antora/playbook-builder": { - "version": "3.1.7", - "resolved": "https://registry.npmjs.org/@antora/playbook-builder/-/playbook-builder-3.1.7.tgz", - "integrity": "sha512-lU80S1BqUy9DvqziEzRwpYTaWhOshxgrGAjf/F5VjAIaHCGVx0rZgfoI2rgFFkbVaH94kauOngdtTXDPXC1fPQ==", - "requires": { - "@iarna/toml": "~2.2", - "convict": "~6.2", - "js-yaml": "~4.1", - "json5": "~2.2" - } - }, - "@antora/redirect-producer": { - "version": "3.1.7", - "resolved": "https://registry.npmjs.org/@antora/redirect-producer/-/redirect-producer-3.1.7.tgz", - "integrity": "sha512-6zAHfcOb0v0829nAbn/3HMilbactjbjU7zBT9Iy6JHQfbqXT/g/mUT9N13Lj/wbq/nm0qKQJweB0Mi6BS2fbMw==", - "requires": { - "vinyl": "~2.2" - } - }, - "@antora/site-generator": { - "version": "3.1.7", - "resolved": "https://registry.npmjs.org/@antora/site-generator/-/site-generator-3.1.7.tgz", - "integrity": "sha512-39KWip9bLdQ+4ssyqjI+O0COquKHxoeznxY2/3w5pNZEoeTg8cD7kOsnWfbocw0R3Rj+kJV5MnqICFNq0nuPeA==", - "requires": { - "@antora/asciidoc-loader": "3.1.7", - "@antora/content-aggregator": "3.1.7", - "@antora/content-classifier": "3.1.7", - "@antora/document-converter": "3.1.7", - "@antora/file-publisher": "3.1.7", - "@antora/logger": "3.1.7", - "@antora/navigation-builder": "3.1.7", - "@antora/page-composer": "3.1.7", - "@antora/playbook-builder": "3.1.7", - "@antora/redirect-producer": "3.1.7", - "@antora/site-mapper": "3.1.7", - "@antora/site-publisher": "3.1.7", - "@antora/ui-loader": "3.1.7", - "@antora/user-require-helper": "~2.0" - } - }, - "@antora/site-generator-default": { - "version": "3.1.7", - "resolved": "https://registry.npmjs.org/@antora/site-generator-default/-/site-generator-default-3.1.7.tgz", - "integrity": "sha512-m9UbejttKzp8MKJTEc+aKXi5SNb864QO7lQiQzSR0fiWnIR8WIM73CPPwkVeOXdKqaJvQp5IF9rlXXTkkC19fw==", - "requires": { - "@antora/site-generator": "3.1.7" - } - }, - "@antora/site-mapper": { - "version": "3.1.7", - "resolved": "https://registry.npmjs.org/@antora/site-mapper/-/site-mapper-3.1.7.tgz", - "integrity": "sha512-x++89btbwk8FxyU2+H/RHQMnsC9sdvQvXcwXwNt11eXN1qj7t8TPiQZTalg7gkf0/osY4l7JRpGBY5JJfOJVig==", - "requires": { - "@antora/content-classifier": "3.1.7", - "vinyl": "~2.2" - } - }, - "@antora/site-publisher": { - "version": "3.1.7", - "resolved": "https://registry.npmjs.org/@antora/site-publisher/-/site-publisher-3.1.7.tgz", - "integrity": "sha512-zHaJc7UeBfFSIhBbQ5U5Ud4u671M84oqSJb3pPxlUiJDP7iVJlSl+0GNm0NAIoDizjPtVksUI88fzqCy5rfSUQ==", - "requires": { - "@antora/file-publisher": "3.1.7" - } - }, - "@antora/ui-loader": { - "version": "3.1.7", - "resolved": "https://registry.npmjs.org/@antora/ui-loader/-/ui-loader-3.1.7.tgz", - "integrity": "sha512-79QuZB0c91dveoESa3RcE18ZZFJo0rDZX9aJKHVc20dInQBGCgfURPqB2OytkzaXD3lNtDJ41yjKNYZqsAQy1Q==", - "requires": { - "@antora/expand-path-helper": "~2.0", - "@vscode/gulp-vinyl-zip": "~2.5", - "braces": "~3.0", - "cache-directory": "~2.0", - "glob-stream": "~7.0", - "hpagent": "~1.2", - "js-yaml": "~4.1", - "picomatch": "~2.3", - "should-proxy": "~1.0", - "simple-get": "~4.0", - "vinyl": "~2.2" - } - }, - "@antora/user-require-helper": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/@antora/user-require-helper/-/user-require-helper-2.0.0.tgz", - "integrity": "sha512-5fMfBZfw4zLoFdDAPMQX6Frik90uvfD8rXOA4UpXPOUikkX4uT1Rk6m0/4oi8oS3fcjiIl0k/7Nc+eTxW5TcQQ==", - "requires": { - "@antora/expand-path-helper": "~2.0" - } - }, - "@asciidoctor/core": { - "version": "2.2.6", - "resolved": "https://registry.npmjs.org/@asciidoctor/core/-/core-2.2.6.tgz", - "integrity": "sha512-TmB2K5UfpDpSbCNBBntXzKHcAk2EA3/P68jmWvmJvglVUdkO9V6kTAuXVe12+h6C4GK0ndwuCrHHtEVcL5t6pQ==", - "requires": { - "asciidoctor-opal-runtime": "0.3.3", - "unxhr": "1.0.1" - } - }, - "@iarna/toml": { - "version": "2.2.5", - "resolved": "https://registry.npmjs.org/@iarna/toml/-/toml-2.2.5.tgz", - "integrity": "sha512-trnsAYxU3xnS1gPHPyU961coFyLkh4gAD/0zQ5mymY4yOZ+CYvsPqUbOFSw0aDM4y0tV7tiFxL/1XfXPNC6IPg==" - }, - "@neo4j-antora/antora-modify-sitemaps": { - "version": "0.4.4", - "resolved": "https://registry.npmjs.org/@neo4j-antora/antora-modify-sitemaps/-/antora-modify-sitemaps-0.4.4.tgz", - "integrity": "sha512-IkXoilOJquZPB5G5ZhrgfSN6U3E2YToWakehtF55RA+CNQS0KboTAB2vUH01+Tkmkd8K6UElf41A6cGnnrvs0g==" - }, - "@neo4j-antora/antora-table-footnotes": { - "version": "0.3.2", - "resolved": "https://registry.npmjs.org/@neo4j-antora/antora-table-footnotes/-/antora-table-footnotes-0.3.2.tgz", - "integrity": "sha512-DXEGVHMJumoKiY/ZCaGRTXl2OhPziPCHT+arj18TmpU50sUs+hyjOPuTkUXUvBwNZwm109Nm1PJPvKLVIJCZSg==" - }, - "@neo4j-documentation/macros": { - "version": "1.0.2", - "resolved": "https://registry.npmjs.org/@neo4j-documentation/macros/-/macros-1.0.2.tgz", - "integrity": "sha512-83w4HPxt9lx1cR6w/Zi741Fu8/IE8pAGHf3BxIvBE8M+XzdT1f1Y6EpbLFrdZjqKwlcomdhks1/+zxlAbVa1xg==" - }, - "@neo4j-documentation/remote-include": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/@neo4j-documentation/remote-include/-/remote-include-1.0.0.tgz", - "integrity": "sha512-SprNp9XsWiMBC0T44vs3JUwEYhoyJlg+du5kP0f9RGewXrSeEgsr5tY7nQDa4Bou9iG0sBl0+2u4XZjiVMkiuw==" - }, - "@vscode/gulp-vinyl-zip": { - "version": "2.5.0", - "resolved": "https://registry.npmjs.org/@vscode/gulp-vinyl-zip/-/gulp-vinyl-zip-2.5.0.tgz", - "integrity": "sha512-PP/xkOoLBSY3V04HmzRxF+NOxkRJ/m2D0YwWpfx1FCFv5G8+sZUGPvxX+LRgdJ5vQcR1RHck5x1IkHi75Qjdbw==", - "requires": { - "queue": "^4.2.1", - "through": "^2.3.8", - "through2": "^2.0.3", - "vinyl": "^2.0.2", - "vinyl-fs": "^3.0.3", - "yauzl": "^2.2.1", - "yazl": "^2.2.1" - } - }, - "abbrev": { - "version": "1.1.1", - "resolved": "https://registry.npmjs.org/abbrev/-/abbrev-1.1.1.tgz", - "integrity": "sha512-nne9/IiQ/hzIhY6pdDnbBtz7DjPTKrY00P/zvPSm5pOFkl6xuGrGnXn/VtTNNfNtAfZ9/1RtehkszU9qcTii0Q==", - "dev": true - }, - "abort-controller": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/abort-controller/-/abort-controller-3.0.0.tgz", - "integrity": "sha512-h8lQ8tacZYnR3vNQTgibj+tODHI5/+l06Au2Pcriv/Gmet0eaj4TwWH41sO9wnHDiQsEj19q0drzdWdeAHtweg==", - "requires": { - "event-target-shim": "^5.0.0" - } - }, - "accepts": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/accepts/-/accepts-2.0.0.tgz", - "integrity": "sha512-5cvg6CtKwfgdmVqY1WIiXKc3Q1bkRqGLi+2W/6ao+6Y7gu/RCwRuAhGEzh5B4KlszSuTLgZYuqFqo5bImjNKng==", - "dev": true, - "requires": { - "mime-types": "^3.0.0", - "negotiator": "^1.0.0" - }, - "dependencies": { - "mime-db": { - "version": "1.53.0", - "resolved": "https://registry.npmjs.org/mime-db/-/mime-db-1.53.0.tgz", - "integrity": "sha512-oHlN/w+3MQ3rba9rqFr6V/ypF10LSkdwUysQL7GkXoTgIWeV+tcXGA852TBxH+gsh8UWoyhR1hKcoMJTuWflpg==", - "dev": true - }, - "mime-types": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/mime-types/-/mime-types-3.0.0.tgz", - "integrity": "sha512-XqoSHeCGjVClAmoGFG3lVFqQFRIrTVw2OH3axRqAcfaw+gHWIfnASS92AV+Rl/mk0MupgZTRHQOjxY6YVnzK5w==", - "dev": true, - "requires": { - "mime-db": "^1.53.0" - } - } - } - }, - "anymatch": { - "version": "3.1.3", - "resolved": "https://registry.npmjs.org/anymatch/-/anymatch-3.1.3.tgz", - "integrity": "sha512-KMReFUr0B4t+D+OBkjR3KYqvocp2XaSzO55UcB6mgQMd3KbcE+mWTyvVV7D/zsdEbNnV6acZUutkiHQXvTr1Rw==", - "dev": true, - "requires": { - "normalize-path": "^3.0.0", - "picomatch": "^2.0.4" - } - }, - "append-buffer": { - "version": "1.0.2", - "resolved": "https://registry.npmjs.org/append-buffer/-/append-buffer-1.0.2.tgz", - "integrity": "sha512-WLbYiXzD3y/ATLZFufV/rZvWdZOs+Z/+5v1rBZ463Jn398pa6kcde27cvozYnBoxXblGZTFfoPpsaEw0orU5BA==", - "requires": { - "buffer-equal": "^1.0.0" - } - }, - "argparse": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/argparse/-/argparse-2.0.1.tgz", - "integrity": "sha512-8+9WqebbFzpX9OR+Wa6O29asIogeRMzcGtAINdpMHHyAg10f05aSFVBbcEqGf/PXw1EjAZ+q2/bEBg3DvurK3Q==" - }, - "array-flatten": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/array-flatten/-/array-flatten-3.0.0.tgz", - "integrity": "sha512-zPMVc3ZYlGLNk4mpK1NzP2wg0ml9t7fUgDsayR5Y5rSzxQilzR9FGu/EH2jQOcKSAeAfWeylyW8juy3OkWRvNA==", - "dev": true - }, - "asciidoctor-opal-runtime": { - "version": "0.3.3", - "resolved": "https://registry.npmjs.org/asciidoctor-opal-runtime/-/asciidoctor-opal-runtime-0.3.3.tgz", - "integrity": "sha512-/CEVNiOia8E5BMO9FLooo+Kv18K4+4JBFRJp8vUy/N5dMRAg+fRNV4HA+o6aoSC79jVU/aT5XvUpxSxSsTS8FQ==", - "requires": { - "glob": "7.1.3", - "unxhr": "1.0.1" - } - }, - "async-lock": { - "version": "1.4.1", - "resolved": "https://registry.npmjs.org/async-lock/-/async-lock-1.4.1.tgz", - "integrity": "sha512-Az2ZTpuytrtqENulXwO3GGv1Bztugx6TT37NIo7imr/Qo0gsYiGtSdBa2B6fsXhTpVZDNfu1Qn3pk531e3q+nQ==" - }, - "atomic-sleep": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/atomic-sleep/-/atomic-sleep-1.0.0.tgz", - "integrity": "sha512-kNOjDqAh7px0XWNI+4QbzoiR/nTkHAWNud2uvnJquD1/x5a7EQZMJT0AczqK0Qn67oY/TTQ1LbUKajZpp3I9tQ==" - }, - "balanced-match": { - "version": "1.0.2", - "resolved": "https://registry.npmjs.org/balanced-match/-/balanced-match-1.0.2.tgz", - "integrity": "sha512-3oSeUO0TMV67hN1AmbXsK4yaqU7tjiHlbxRDZOpH0KW9+CeX4bRAaX0Anxt0tx2MrpRpWwQaPwIlISEJhYU5Pw==" - }, - "base64-js": { - "version": "1.5.1", - "resolved": "https://registry.npmjs.org/base64-js/-/base64-js-1.5.1.tgz", - "integrity": "sha512-AKpaYlHn8t4SVbOHCy+b5+KKgvR4vrsD8vbvrbiQJps7fKDTkjkDry6ji0rUJjC0kzbNePLwzxq8iypo41qeWA==" - }, - "binary-extensions": { - "version": "2.2.0", - "resolved": "https://registry.npmjs.org/binary-extensions/-/binary-extensions-2.2.0.tgz", - "integrity": "sha512-jDctJ/IVQbZoJykoeHbhXpOlNBqGNcwXJKJog42E5HDPUwQTSdjCHdihjj0DlnheQ7blbT6dHOafNAiS8ooQKA==", - "dev": true - }, - "body-parser": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/body-parser/-/body-parser-2.0.1.tgz", - "integrity": "sha512-PagxbjvuPH6tv0f/kdVbFGcb79D236SLcDTs6DrQ7GizJ88S1UWP4nMXFEo/I4fdhGRGabvFfFjVGm3M7U8JwA==", - "dev": true, - "requires": { - "bytes": "3.1.2", - "content-type": "~1.0.5", - "debug": "3.1.0", - "destroy": "1.2.0", - "http-errors": "2.0.0", - "iconv-lite": "0.5.2", - "on-finished": "2.4.1", - "qs": "6.13.0", - "raw-body": "^3.0.0", - "type-is": "~1.6.18", - "unpipe": "1.0.0" - }, - "dependencies": { - "debug": { - "version": "3.1.0", - "resolved": "https://registry.npmjs.org/debug/-/debug-3.1.0.tgz", - "integrity": "sha512-OX8XqP7/1a9cqkxYw2yXss15f26NKWBpDXQd0/uK/KPqdQhxbPa994hnzjcE2VqQpDslf55723cKPUOGSmMY3g==", - "dev": true, - "requires": { - "ms": "2.0.0" - } - }, - "media-typer": { - "version": "0.3.0", - "resolved": "https://registry.npmjs.org/media-typer/-/media-typer-0.3.0.tgz", - "integrity": "sha512-dq+qelQ9akHpcOl/gUVRTxVIOkAJ1wR3QAvb4RsVjS8oVoFjDGTc679wJYmUmknUF5HwMLOgb5O+a3KxfWapPQ==", - "dev": true - }, - "ms": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/ms/-/ms-2.0.0.tgz", - "integrity": "sha512-Tpp60P6IUJDTuOq/5Z8cdskzJujfwqfOTkrwIwj7IRISpnkJnT6SyJ4PCPnGMoFjC9ddhal5KVIYtAt97ix05A==", - "dev": true - }, - "type-is": { - "version": "1.6.18", - "resolved": "https://registry.npmjs.org/type-is/-/type-is-1.6.18.tgz", - "integrity": "sha512-TkRKr9sUTxEH8MdfuCSP7VizJyzRNMjj2J2do2Jr3Kym598JVdEksuzPQCnlFPW4ky9Q+iA+ma9BGm06XQBy8g==", - "dev": true, - "requires": { - "media-typer": "0.3.0", - "mime-types": "~2.1.24" - } - } - } - }, - "brace-expansion": { - "version": "1.1.11", - "resolved": "https://registry.npmjs.org/brace-expansion/-/brace-expansion-1.1.11.tgz", - "integrity": "sha512-iCuPHDFgrHX7H2vEI/5xpz07zSHB00TpugqhmYtVmMO6518mCuRMoOYFldEBl0g187ufozdaHgWKcYFb61qGiA==", - "requires": { - "balanced-match": "^1.0.0", - "concat-map": "0.0.1" - } - }, - "braces": { - "version": "3.0.2", - "resolved": "https://registry.npmjs.org/braces/-/braces-3.0.2.tgz", - "integrity": "sha512-b8um+L1RzM3WDSzvhm6gIz1yfTbBt6YTlcEKAvsmqCZZFw46z626lVj9j1yEPW33H5H+lBQpZMP1k8l+78Ha0A==", - "requires": { - "fill-range": "^7.0.1" - } - }, - "buffer": { - "version": "6.0.3", - "resolved": "https://registry.npmjs.org/buffer/-/buffer-6.0.3.tgz", - "integrity": "sha512-FTiCpNxtwiZZHEZbcbTIcZjERVICn9yq/pDFkTl95/AxzD1naBctN7YO68riM/gLSDY7sdrMby8hofADYuuqOA==", - "requires": { - "base64-js": "^1.3.1", - "ieee754": "^1.2.1" - } - }, - "buffer-crc32": { - "version": "0.2.13", - "resolved": "https://registry.npmjs.org/buffer-crc32/-/buffer-crc32-0.2.13.tgz", - "integrity": "sha512-VO9Ht/+p3SN7SKWqcrgEzjGbRSJYTx+Q1pTQC0wrWqHx0vpJraQ6GtHx8tvcg1rlK1byhU5gccxgOgj7B0TDkQ==" - }, - "buffer-equal": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/buffer-equal/-/buffer-equal-1.0.1.tgz", - "integrity": "sha512-QoV3ptgEaQpvVwbXdSO39iqPQTCxSF7A5U99AxbHYqUdCizL/lH2Z0A2y6nbZucxMEOtNyZfG2s6gsVugGpKkg==" - }, - "bytes": { - "version": "3.1.2", - "resolved": "https://registry.npmjs.org/bytes/-/bytes-3.1.2.tgz", - "integrity": "sha512-/Nf7TyzTx6S3yRJObOAV7956r8cr2+Oj8AC5dt8wSP3BQAoeX58NoHyCU8P8zGkNXStjTSi6fzO6F0pBdcYbEg==", - "dev": true - }, - "cache-directory": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/cache-directory/-/cache-directory-2.0.0.tgz", - "integrity": "sha512-7YKEapH+2Uikde8hySyfobXBqPKULDyHNl/lhKm7cKf/GJFdG/tU/WpLrOg2y9aUrQrWUilYqawFIiGJPS6gDA==", - "requires": { - "xdg-basedir": "^3.0.0" - } - }, - "call-bind": { - "version": "1.0.7", - "resolved": "https://registry.npmjs.org/call-bind/-/call-bind-1.0.7.tgz", - "integrity": "sha512-GHTSNSYICQ7scH7sZ+M2rFopRoLh8t2bLSW6BbgrtLsahOIB5iyAVJf9GjWK3cYTDaMj4XdBpM1cA6pIS0Kv2w==", - "requires": { - "es-define-property": "^1.0.0", - "es-errors": "^1.3.0", - "function-bind": "^1.1.2", - "get-intrinsic": "^1.2.4", - "set-function-length": "^1.2.1" - } - }, - "chokidar": { - "version": "3.5.3", - "resolved": "https://registry.npmjs.org/chokidar/-/chokidar-3.5.3.tgz", - "integrity": "sha512-Dr3sfKRP6oTcjf2JmUmFJfeVMvXBdegxB0iVQ5eb2V10uFJUCAS8OByZdVAyVb8xXNz3GjjTgj9kLWsZTqE6kw==", - "dev": true, - "requires": { - "anymatch": "~3.1.2", - "braces": "~3.0.2", - "fsevents": "~2.3.2", - "glob-parent": "~5.1.2", - "is-binary-path": "~2.1.0", - "is-glob": "~4.0.1", - "normalize-path": "~3.0.0", - "readdirp": "~3.6.0" - }, - "dependencies": { - "glob-parent": { - "version": "5.1.2", - "resolved": "https://registry.npmjs.org/glob-parent/-/glob-parent-5.1.2.tgz", - "integrity": "sha512-AOIgSQCepiJYwP3ARnGx+5VnTu2HBYdzbGP45eLw1vr3zB3vZLeyed1sC9hnbcOc9/SrMyM5RPQrkGz4aS9Zow==", - "dev": true, - "requires": { - "is-glob": "^4.0.1" - } - } - } - }, - "clean-git-ref": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/clean-git-ref/-/clean-git-ref-2.0.1.tgz", - "integrity": "sha512-bLSptAy2P0s6hU4PzuIMKmMJJSE6gLXGH1cntDu7bWJUksvuM+7ReOK61mozULErYvP6a15rnYl0zFDef+pyPw==" - }, - "clone": { - "version": "2.1.2", - "resolved": "https://registry.npmjs.org/clone/-/clone-2.1.2.tgz", - "integrity": "sha512-3Pe/CF1Nn94hyhIYpjtiLhdCoEoz0DqQ+988E9gmeEdQZlojxnOb74wctFyuwWQHzqyf9X7C7MG8juUpqBJT8w==" - }, - "clone-buffer": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/clone-buffer/-/clone-buffer-1.0.0.tgz", - "integrity": "sha512-KLLTJWrvwIP+OPfMn0x2PheDEP20RPUcGXj/ERegTgdmPEZylALQldygiqrPPu8P45uNuPs7ckmReLY6v/iA5g==" - }, - "clone-stats": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/clone-stats/-/clone-stats-1.0.0.tgz", - "integrity": "sha512-au6ydSpg6nsrigcZ4m8Bc9hxjeW+GJ8xh5G3BJCMt4WXe1H10UNaVOamqQTmrx1kjVuxAHIQSNU6hY4Nsn9/ag==" - }, - "cloneable-readable": { - "version": "1.1.3", - "resolved": "https://registry.npmjs.org/cloneable-readable/-/cloneable-readable-1.1.3.tgz", - "integrity": "sha512-2EF8zTQOxYq70Y4XKtorQupqF0m49MBz2/yf5Bj+MHjvpG3Hy7sImifnqD6UA+TKYxeSV+u6qqQPawN5UvnpKQ==", - "requires": { - "inherits": "^2.0.1", - "process-nextick-args": "^2.0.0", - "readable-stream": "^2.3.5" - }, - "dependencies": { - "readable-stream": { - "version": "2.3.8", - "resolved": "https://registry.npmjs.org/readable-stream/-/readable-stream-2.3.8.tgz", - "integrity": "sha512-8p0AUk4XODgIewSi0l8Epjs+EVnWiK7NoDIEGU0HhE7+ZyY8D1IMY7odu5lRrFXGg71L15KG8QrPmum45RTtdA==", - "requires": { - "core-util-is": "~1.0.0", - "inherits": "~2.0.3", - "isarray": "~1.0.0", - "process-nextick-args": "~2.0.0", - "safe-buffer": "~5.1.1", - "string_decoder": "~1.1.1", - "util-deprecate": "~1.0.1" - } - }, - "safe-buffer": { - "version": "5.1.2", - "resolved": "https://registry.npmjs.org/safe-buffer/-/safe-buffer-5.1.2.tgz", - "integrity": "sha512-Gd2UZBJDkXlY7GbJxfsE8/nvKkUEU1G38c1siN6QP6a9PT9MmHB8GnpscSmMJSoF8LOIrt8ud/wPtojys4G6+g==" - }, - "string_decoder": { - "version": "1.1.1", - "resolved": "https://registry.npmjs.org/string_decoder/-/string_decoder-1.1.1.tgz", - "integrity": "sha512-n/ShnvDi6FHbbVfviro+WojiFzv+s8MPMHBczVePfUpDJLwoLT0ht1l4YwBCbi8pJAveEEdnkHyPyTP/mzRfwg==", - "requires": { - "safe-buffer": "~5.1.0" - } - } - } - }, - "colorette": { - "version": "2.0.20", - "resolved": "https://registry.npmjs.org/colorette/-/colorette-2.0.20.tgz", - "integrity": "sha512-IfEDxwoWIjkeXL1eXcDiow4UbKjhLdq6/EuSVR9GMN7KVH3r9gQ83e73hsz1Nd1T3ijd5xv1wcWRYO+D6kCI2w==" - }, - "commander": { - "version": "10.0.1", - "resolved": "https://registry.npmjs.org/commander/-/commander-10.0.1.tgz", - "integrity": "sha512-y4Mg2tXshplEbSGzx7amzPwKKOCGuoSRP/CjEdwwk0FOGlUbq6lKuoyDZTNZkmxHdJtp54hdfY/JUrdL7Xfdug==" - }, - "concat-map": { - "version": "0.0.1", - "resolved": "https://registry.npmjs.org/concat-map/-/concat-map-0.0.1.tgz", - "integrity": "sha512-/Srv4dswyQNBfohGpz9o6Yb3Gz3SrUDqBH5rTuhGR7ahtlbYKnVxw2bCFMRljaA7EXHaXZ8wsHdodFvbkhKmqg==" - }, - "content-disposition": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/content-disposition/-/content-disposition-1.0.0.tgz", - "integrity": "sha512-Au9nRL8VNUut/XSzbQA38+M78dzP4D+eqg3gfJHMIHHYa3bg067xj1KxMUWj+VULbiZMowKngFFbKczUrNJ1mg==", - "dev": true, - "requires": { - "safe-buffer": "5.2.1" - } - }, - "content-type": { - "version": "1.0.5", - "resolved": "https://registry.npmjs.org/content-type/-/content-type-1.0.5.tgz", - "integrity": "sha512-nTjqfcBFEipKdXCv4YDQWCfmcLZKm81ldF0pAopTvyrFGVbcR6P/VAAd5G7N+0tTr8QqiU0tFadD6FK4NtJwOA==", - "dev": true - }, - "convert-source-map": { - "version": "1.9.0", - "resolved": "https://registry.npmjs.org/convert-source-map/-/convert-source-map-1.9.0.tgz", - "integrity": "sha512-ASFBup0Mz1uyiIjANan1jzLQami9z1PoYSZCiiYW2FczPbenXc45FZdBZLzOT+r6+iciuEModtmCti+hjaAk0A==" - }, - "convict": { - "version": "6.2.4", - "resolved": "https://registry.npmjs.org/convict/-/convict-6.2.4.tgz", - "integrity": "sha512-qN60BAwdMVdofckX7AlohVJ2x9UvjTNoKVXCL2LxFk1l7757EJqf1nySdMkPQer0bt8kQ5lQiyZ9/2NvrFBuwQ==", - "requires": { - "lodash.clonedeep": "^4.5.0", - "yargs-parser": "^20.2.7" - } - }, - "cookie": { - "version": "0.7.1", - "resolved": "https://registry.npmjs.org/cookie/-/cookie-0.7.1.tgz", - "integrity": "sha512-6DnInpx7SJ2AK3+CTUE/ZM0vWTUboZCegxhC2xiIydHR9jNuTAASBrfEpHhiGOZw/nX51bHt6YQl8jsGo4y/0w==", - "dev": true - }, - "cookie-signature": { - "version": "1.2.1", - "resolved": "https://registry.npmjs.org/cookie-signature/-/cookie-signature-1.2.1.tgz", - "integrity": "sha512-78KWk9T26NhzXtuL26cIJ8/qNHANyJ/ZYrmEXFzUmhZdjpBv+DlWlOANRTGBt48YcyslsLrj0bMLFTmXvLRCOw==", - "dev": true - }, - "core-util-is": { - "version": "1.0.3", - "resolved": "https://registry.npmjs.org/core-util-is/-/core-util-is-1.0.3.tgz", - "integrity": "sha512-ZQBvi1DcpJ4GDqanjucZ2Hj3wEO5pZDS89BWbkcrvdxksJorwUDDZamX9ldFkp9aw2lmBDLgkObEA4DWNJ9FYQ==" - }, - "crc-32": { - "version": "1.2.2", - "resolved": "https://registry.npmjs.org/crc-32/-/crc-32-1.2.2.tgz", - "integrity": "sha512-ROmzCKrTnOwybPcJApAA6WBWij23HVfGVNKqqrZpuyZOHqK2CwHSvpGuyt/UNNvaIjEd8X5IFGp4Mh+Ie1IHJQ==" - }, - "dateformat": { - "version": "4.6.3", - "resolved": "https://registry.npmjs.org/dateformat/-/dateformat-4.6.3.tgz", - "integrity": "sha512-2P0p0pFGzHS5EMnhdxQi7aJN+iMheud0UhG4dlE1DLAlvL8JHjJJTX/CSm4JXwV0Ka5nGk3zC5mcb5bUQUxxMA==" - }, - "debug": { - "version": "4.3.6", - "resolved": "https://registry.npmjs.org/debug/-/debug-4.3.6.tgz", - "integrity": "sha512-O/09Bd4Z1fBrU4VzkhFqVgpPzaGbw6Sm9FEkBT1A/YBXQFGuuSxa1dN2nxgxS34JmKXqYx8CZAwEVoJFImUXIg==", - "dev": true, - "requires": { - "ms": "2.1.2" - } - }, - "decompress-response": { - "version": "6.0.0", - "resolved": "https://registry.npmjs.org/decompress-response/-/decompress-response-6.0.0.tgz", - "integrity": "sha512-aW35yZM6Bb/4oJlZncMH2LCoZtJXTRxES17vE3hoRiowU2kWHaJKFkSBDnDR+cm9J+9QhXmREyIfv0pji9ejCQ==", - "requires": { - "mimic-response": "^3.1.0" - } - }, - "define-data-property": { - "version": "1.1.4", - "resolved": "https://registry.npmjs.org/define-data-property/-/define-data-property-1.1.4.tgz", - "integrity": "sha512-rBMvIzlpA8v6E+SJZoo++HAYqsLrkg7MSfIinMPFhmkorw7X+dOXVJQs+QT69zGkzMyfDnIMN2Wid1+NbL3T+A==", - "requires": { - "es-define-property": "^1.0.0", - "es-errors": "^1.3.0", - "gopd": "^1.0.1" - } - }, - "define-properties": { - "version": "1.2.1", - "resolved": "https://registry.npmjs.org/define-properties/-/define-properties-1.2.1.tgz", - "integrity": "sha512-8QmQKqEASLd5nx0U1B1okLElbUuuttJ/AnYmRXbbbGDWh6uS208EjD4Xqq/I9wK7u0v6O08XhTWnt5XtEbR6Dg==", - "requires": { - "define-data-property": "^1.0.1", - "has-property-descriptors": "^1.0.0", - "object-keys": "^1.1.1" - } - }, - "depd": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/depd/-/depd-2.0.0.tgz", - "integrity": "sha512-g7nH6P6dyDioJogAAGprGpCtVImJhpPk/roCzdb3fIh61/s/nPsfR6onyMwkCAR/OlC3yBC0lESvUoQEAssIrw==", - "dev": true - }, - "destroy": { - "version": "1.2.0", - "resolved": "https://registry.npmjs.org/destroy/-/destroy-1.2.0.tgz", - "integrity": "sha512-2sJGJTaXIIaR1w4iJSNoN0hnMY7Gpc/n8D4qSCJw8QqFWXf7cuAgnEHxBpweaVcPevC2l3KpjYCx3NypQQgaJg==", - "dev": true - }, - "diff3": { - "version": "0.0.3", - "resolved": "https://registry.npmjs.org/diff3/-/diff3-0.0.3.tgz", - "integrity": "sha512-iSq8ngPOt0K53A6eVr4d5Kn6GNrM2nQZtC740pzIriHtn4pOQ2lyzEXQMBeVcWERN0ye7fhBsk9PbLLQOnUx/g==" - }, - "duplexify": { - "version": "4.1.2", - "resolved": "https://registry.npmjs.org/duplexify/-/duplexify-4.1.2.tgz", - "integrity": "sha512-fz3OjcNCHmRP12MJoZMPglx8m4rrFP8rovnk4vT8Fs+aonZoCwGg10dSsQsfP/E62eZcPTMSMP6686fu9Qlqtw==", - "requires": { - "end-of-stream": "^1.4.1", - "inherits": "^2.0.3", - "readable-stream": "^3.1.1", - "stream-shift": "^1.0.0" - } - }, - "ee-first": { - "version": "1.1.1", - "resolved": "https://registry.npmjs.org/ee-first/-/ee-first-1.1.1.tgz", - "integrity": "sha512-WMwm9LhRUo+WUaRN+vRuETqG89IgZphVSNkdFgeb6sS/E4OrDIN7t48CAewSHXc6C8lefD8KKfr5vY61brQlow==", - "dev": true - }, - "encodeurl": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/encodeurl/-/encodeurl-2.0.0.tgz", - "integrity": "sha512-Q0n9HRi4m6JuGIV1eFlmvJB7ZEVxu93IrMyiMsGC0lrMJMWzRgx6WGquyfQgZVb31vhGgXnfmPNNXmxnOkRBrg==", - "dev": true - }, - "end-of-stream": { - "version": "1.4.4", - "resolved": "https://registry.npmjs.org/end-of-stream/-/end-of-stream-1.4.4.tgz", - "integrity": "sha512-+uw1inIHVPQoaVuHzRyXd21icM+cnt4CzD5rW+NC1wjOUSTOs+Te7FOv7AhN7vS9x/oIyhLP5PR1H+phQAHu5Q==", - "requires": { - "once": "^1.4.0" - } - }, - "es-define-property": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/es-define-property/-/es-define-property-1.0.0.tgz", - "integrity": "sha512-jxayLKShrEqqzJ0eumQbVhTYQM27CfT1T35+gCgDFoL82JLsXqTJ76zv6A0YLOgEnLUMvLzsDsGIrl8NFpT2gQ==", - "requires": { - "get-intrinsic": "^1.2.4" - } - }, - "es-errors": { - "version": "1.3.0", - "resolved": "https://registry.npmjs.org/es-errors/-/es-errors-1.3.0.tgz", - "integrity": "sha512-Zf5H2Kxt2xjTvbJvP2ZWLEICxA6j+hAmMzIlypy4xcBg1vKVnx89Wy0GbS+kf5cwCVFFzdCFh2XSCFNULS6csw==" - }, - "escape-html": { - "version": "1.0.3", - "resolved": "https://registry.npmjs.org/escape-html/-/escape-html-1.0.3.tgz", - "integrity": "sha512-NiSupZ4OeuGwr68lGIeym/ksIZMJodUGOSCZ/FSnTxcrekbvqrgdUxlJOMpijaKZVjAJrWrGs/6Jy8OMuyj9ow==", - "dev": true - }, - "etag": { - "version": "1.8.1", - "resolved": "https://registry.npmjs.org/etag/-/etag-1.8.1.tgz", - "integrity": "sha512-aIL5Fx7mawVa300al2BnEE4iNvo1qETxLrPI/o05L7z6go7fCw1J6EQmbK4FmJ2AS7kgVF/KEZWufBfdClMcPg==", - "dev": true - }, - "event-target-shim": { - "version": "5.0.1", - "resolved": "https://registry.npmjs.org/event-target-shim/-/event-target-shim-5.0.1.tgz", - "integrity": "sha512-i/2XbnSz/uxRCU6+NdVJgKWDTM427+MqYbkQzD321DuCQJUqOuJKIA0IM2+W2xtYHdKOmZ4dR6fExsd4SXL+WQ==" - }, - "events": { - "version": "3.3.0", - "resolved": "https://registry.npmjs.org/events/-/events-3.3.0.tgz", - "integrity": "sha512-mQw+2fkQbALzQ7V0MY0IqdnXNOeTtP4r0lN9z7AAawCXgqea7bDii20AYrIBrFd/Hx0M2Ocz6S111CaFkUcb0Q==" - }, - "express": { - "version": "5.0.1", - "resolved": "https://registry.npmjs.org/express/-/express-5.0.1.tgz", - "integrity": "sha512-ORF7g6qGnD+YtUG9yx4DFoqCShNMmUKiXuT5oWMHiOvt/4WFbHC6yCwQMTSBMno7AqntNCAzzcnnjowRkTL9eQ==", - "dev": true, - "requires": { - "accepts": "^2.0.0", - "body-parser": "^2.0.1", - "content-disposition": "^1.0.0", - "content-type": "~1.0.4", - "cookie": "0.7.1", - "cookie-signature": "^1.2.1", - "debug": "4.3.6", - "depd": "2.0.0", - "encodeurl": "~2.0.0", - "escape-html": "~1.0.3", - "etag": "~1.8.1", - "finalhandler": "^2.0.0", - "fresh": "2.0.0", - "http-errors": "2.0.0", - "merge-descriptors": "^2.0.0", - "methods": "~1.1.2", - "mime-types": "^3.0.0", - "on-finished": "2.4.1", - "once": "1.4.0", - "parseurl": "~1.3.3", - "proxy-addr": "~2.0.7", - "qs": "6.13.0", - "range-parser": "~1.2.1", - "router": "^2.0.0", - "safe-buffer": "5.2.1", - "send": "^1.1.0", - "serve-static": "^2.1.0", - "setprototypeof": "1.2.0", - "statuses": "2.0.1", - "type-is": "^2.0.0", - "utils-merge": "1.0.1", - "vary": "~1.1.2" - }, - "dependencies": { - "mime-db": { - "version": "1.53.0", - "resolved": "https://registry.npmjs.org/mime-db/-/mime-db-1.53.0.tgz", - "integrity": "sha512-oHlN/w+3MQ3rba9rqFr6V/ypF10LSkdwUysQL7GkXoTgIWeV+tcXGA852TBxH+gsh8UWoyhR1hKcoMJTuWflpg==", - "dev": true - }, - "mime-types": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/mime-types/-/mime-types-3.0.0.tgz", - "integrity": "sha512-XqoSHeCGjVClAmoGFG3lVFqQFRIrTVw2OH3axRqAcfaw+gHWIfnASS92AV+Rl/mk0MupgZTRHQOjxY6YVnzK5w==", - "dev": true, - "requires": { - "mime-db": "^1.53.0" - } - } - } - }, - "extend": { - "version": "3.0.2", - "resolved": "https://registry.npmjs.org/extend/-/extend-3.0.2.tgz", - "integrity": "sha512-fjquC59cD7CyW6urNXK0FBufkZcoiGG80wTuPujX590cB5Ttln20E2UB4S/WARVqhXffZl2LNgS+gQdPIIim/g==" - }, - "fast-copy": { - "version": "3.0.1", - "resolved": "https://registry.npmjs.org/fast-copy/-/fast-copy-3.0.1.tgz", - "integrity": "sha512-Knr7NOtK3HWRYGtHoJrjkaWepqT8thIVGAwt0p0aUs1zqkAzXZV4vo9fFNwyb5fcqK1GKYFYxldQdIDVKhUAfA==" - }, - "fast-redact": { - "version": "3.3.0", - "resolved": "https://registry.npmjs.org/fast-redact/-/fast-redact-3.3.0.tgz", - "integrity": "sha512-6T5V1QK1u4oF+ATxs1lWUmlEk6P2T9HqJG3e2DnHOdVgZy2rFJBoEnrIedcTXlkAHU/zKC+7KETJ+KGGKwxgMQ==" - }, - "fast-safe-stringify": { - "version": "2.1.1", - "resolved": "https://registry.npmjs.org/fast-safe-stringify/-/fast-safe-stringify-2.1.1.tgz", - "integrity": "sha512-W+KJc2dmILlPplD/H4K9l9LcAHAfPtP6BY84uVLXQ6Evcz9Lcg33Y2z1IVblT6xdY54PXYVHEv+0Wpq8Io6zkA==" - }, - "fd-slicer": { - "version": "1.1.0", - "resolved": "https://registry.npmjs.org/fd-slicer/-/fd-slicer-1.1.0.tgz", - "integrity": "sha512-cE1qsB/VwyQozZ+q1dGxR8LBYNZeofhEdUNGSMbQD3Gw2lAzX9Zb3uIU6Ebc/Fmyjo9AWWfnn0AUCHqtevs/8g==", - "requires": { - "pend": "~1.2.0" - } - }, - "fill-range": { - "version": "7.0.1", - "resolved": "https://registry.npmjs.org/fill-range/-/fill-range-7.0.1.tgz", - "integrity": "sha512-qOo9F+dMUmC2Lcb4BbVvnKJxTPjCm+RRpe4gDuGrzkL7mEVl/djYSu2OdQ2Pa302N4oqkSg9ir6jaLWJ2USVpQ==", - "requires": { - "to-regex-range": "^5.0.1" - } - }, - "finalhandler": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/finalhandler/-/finalhandler-2.0.0.tgz", - "integrity": "sha512-MX6Zo2adDViYh+GcxxB1dpO43eypOGUOL12rLCOTMQv/DfIbpSJUy4oQIIZhVZkH9e+bZWKMon0XHFEju16tkQ==", - "dev": true, - "requires": { - "debug": "2.6.9", - "encodeurl": "~1.0.2", - "escape-html": "~1.0.3", - "on-finished": "2.4.1", - "parseurl": "~1.3.3", - "statuses": "2.0.1", - "unpipe": "~1.0.0" - }, - "dependencies": { - "debug": { - "version": "2.6.9", - "resolved": "https://registry.npmjs.org/debug/-/debug-2.6.9.tgz", - "integrity": "sha512-bC7ElrdJaJnPbAP+1EotYvqZsb3ecl5wi6Bfi6BJTUcNowp6cvspg0jXznRTKDjm/E7AdgFBVeAPVMNcKGsHMA==", - "dev": true, - "requires": { - "ms": "2.0.0" - } - }, - "encodeurl": { - "version": "1.0.2", - "resolved": "https://registry.npmjs.org/encodeurl/-/encodeurl-1.0.2.tgz", - "integrity": "sha512-TPJXq8JqFaVYm2CWmPvnP2Iyo4ZSM7/QKcSmuMLDObfpH5fi7RUGmd/rTDf+rut/saiDiQEeVTNgAmJEdAOx0w==", - "dev": true - }, - "ms": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/ms/-/ms-2.0.0.tgz", - "integrity": "sha512-Tpp60P6IUJDTuOq/5Z8cdskzJujfwqfOTkrwIwj7IRISpnkJnT6SyJ4PCPnGMoFjC9ddhal5KVIYtAt97ix05A==", - "dev": true - } - } - }, - "flush-write-stream": { - "version": "1.1.1", - "resolved": "https://registry.npmjs.org/flush-write-stream/-/flush-write-stream-1.1.1.tgz", - "integrity": "sha512-3Z4XhFZ3992uIq0XOqb9AreonueSYphE6oYbpt5+3u06JWklbsPkNv3ZKkP9Bz/r+1MWCaMoSQ28P85+1Yc77w==", - "requires": { - "inherits": "^2.0.3", - "readable-stream": "^2.3.6" - }, - "dependencies": { - "readable-stream": { - "version": "2.3.8", - "resolved": "https://registry.npmjs.org/readable-stream/-/readable-stream-2.3.8.tgz", - "integrity": "sha512-8p0AUk4XODgIewSi0l8Epjs+EVnWiK7NoDIEGU0HhE7+ZyY8D1IMY7odu5lRrFXGg71L15KG8QrPmum45RTtdA==", - "requires": { - "core-util-is": "~1.0.0", - "inherits": "~2.0.3", - "isarray": "~1.0.0", - "process-nextick-args": "~2.0.0", - "safe-buffer": "~5.1.1", - "string_decoder": "~1.1.1", - "util-deprecate": "~1.0.1" - } - }, - "safe-buffer": { - "version": "5.1.2", - "resolved": "https://registry.npmjs.org/safe-buffer/-/safe-buffer-5.1.2.tgz", - "integrity": "sha512-Gd2UZBJDkXlY7GbJxfsE8/nvKkUEU1G38c1siN6QP6a9PT9MmHB8GnpscSmMJSoF8LOIrt8ud/wPtojys4G6+g==" - }, - "string_decoder": { - "version": "1.1.1", - "resolved": "https://registry.npmjs.org/string_decoder/-/string_decoder-1.1.1.tgz", - "integrity": "sha512-n/ShnvDi6FHbbVfviro+WojiFzv+s8MPMHBczVePfUpDJLwoLT0ht1l4YwBCbi8pJAveEEdnkHyPyTP/mzRfwg==", - "requires": { - "safe-buffer": "~5.1.0" - } - } - } - }, - "forwarded": { - "version": "0.2.0", - "resolved": "https://registry.npmjs.org/forwarded/-/forwarded-0.2.0.tgz", - "integrity": "sha512-buRG0fpBtRHSTCOASe6hD258tEubFoRLb4ZNA6NxMVHNw2gOcwHo9wyablzMzOA5z9xA9L1KNjk/Nt6MT9aYow==", - "dev": true - }, - "fresh": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/fresh/-/fresh-2.0.0.tgz", - "integrity": "sha512-Rx/WycZ60HOaqLKAi6cHRKKI7zxWbJ31MhntmtwMoaTeF7XFH9hhBp8vITaMidfljRQ6eYWCKkaTK+ykVJHP2A==", - "dev": true - }, - "fs-mkdirp-stream": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/fs-mkdirp-stream/-/fs-mkdirp-stream-1.0.0.tgz", - "integrity": "sha512-+vSd9frUnapVC2RZYfL3FCB2p3g4TBhaUmrsWlSudsGdnxIuUvBB2QM1VZeBtc49QFwrp+wQLrDs3+xxDgI5gQ==", - "requires": { - "graceful-fs": "^4.1.11", - "through2": "^2.0.3" - } - }, - "fs.realpath": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/fs.realpath/-/fs.realpath-1.0.0.tgz", - "integrity": "sha512-OO0pH2lK6a0hZnAdau5ItzHPI6pUlvI7jMVnxUQRtw4owF2wk8lOSabtGDCTP4Ggrg2MbGnWO9X8K1t4+fGMDw==" - }, - "fsevents": { - "version": "2.3.3", - "resolved": "https://registry.npmjs.org/fsevents/-/fsevents-2.3.3.tgz", - "integrity": "sha512-5xoDfX+fL7faATnagmWPpbFtwh/R77WmMMqqHGS65C3vvB0YHrgF+B1YmZ3441tMj5n63k0212XNoJwzlhffQw==", - "dev": true, - "optional": true - }, - "function-bind": { - "version": "1.1.2", - "resolved": "https://registry.npmjs.org/function-bind/-/function-bind-1.1.2.tgz", - "integrity": "sha512-7XHNxH7qX9xG5mIwxkhumTox/MIRNcOgDrxWsMt2pAr23WHp6MrRlN7FBSFpCpr+oVO0F744iUgR82nJMfG2SA==" - }, - "get-intrinsic": { - "version": "1.2.4", - "resolved": "https://registry.npmjs.org/get-intrinsic/-/get-intrinsic-1.2.4.tgz", - "integrity": "sha512-5uYhsJH8VJBTv7oslg4BznJYhDoRI6waYCxMmCdnTrcCrHA/fCFKoTFz2JKKE0HdDFUF7/oQuhzumXJK7paBRQ==", - "requires": { - "es-errors": "^1.3.0", - "function-bind": "^1.1.2", - "has-proto": "^1.0.1", - "has-symbols": "^1.0.3", - "hasown": "^2.0.0" - } - }, - "glob": { - "version": "7.1.3", - "resolved": "https://registry.npmjs.org/glob/-/glob-7.1.3.tgz", - "integrity": "sha512-vcfuiIxogLV4DlGBHIUOwI0IbrJ8HWPc4MU7HzviGeNho/UJDfi6B5p3sHeWIQ0KGIU0Jpxi5ZHxemQfLkkAwQ==", - "requires": { - "fs.realpath": "^1.0.0", - "inflight": "^1.0.4", - "inherits": "2", - "minimatch": "^3.0.4", - "once": "^1.3.0", - "path-is-absolute": "^1.0.0" - } - }, - "glob-parent": { - "version": "6.0.2", - "resolved": "https://registry.npmjs.org/glob-parent/-/glob-parent-6.0.2.tgz", - "integrity": "sha512-XxwI8EOhVQgWp6iDL+3b0r86f4d6AX6zSU55HfB4ydCEuXLXc5FcYeOu+nnGftS4TEju/11rt4KJPTMgbfmv4A==", - "requires": { - "is-glob": "^4.0.3" - } - }, - "glob-stream": { - "version": "7.0.0", - "resolved": "https://registry.npmjs.org/glob-stream/-/glob-stream-7.0.0.tgz", - "integrity": "sha512-evR4kvr6s0Yo5t4CD4H171n4T8XcnPFznvsbeN8K9FPzc0Q0wYqcOWyGtck2qcvJSLXKnU6DnDyfmbDDabYvRQ==", - "requires": { - "extend": "^3.0.2", - "glob": "^7.2.0", - "glob-parent": "^6.0.2", - "is-negated-glob": "^1.0.0", - "ordered-read-streams": "^1.0.1", - "pumpify": "^2.0.1", - "readable-stream": "^3.6.0", - "remove-trailing-separator": "^1.1.0", - "to-absolute-glob": "^2.0.2", - "unique-stream": "^2.3.1" - }, - "dependencies": { - "glob": { - "version": "7.2.3", - "resolved": "https://registry.npmjs.org/glob/-/glob-7.2.3.tgz", - "integrity": "sha512-nFR0zLpU2YCaRxwoCJvL6UvCH2JFyFVIvwTLsIf21AuHlMskA1hhTdk+LlYJtOlYt9v6dvszD2BGRqBL+iQK9Q==", - "requires": { - "fs.realpath": "^1.0.0", - "inflight": "^1.0.4", - "inherits": "2", - "minimatch": "^3.1.1", - "once": "^1.3.0", - "path-is-absolute": "^1.0.0" - } - } - } - }, - "gopd": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/gopd/-/gopd-1.0.1.tgz", - "integrity": "sha512-d65bNlIadxvpb/A2abVdlqKqV563juRnZ1Wtk6s1sIR8uNsXR70xqIzVqxVf1eTqDunwT2MkczEeaezCKTZhwA==", - "requires": { - "get-intrinsic": "^1.1.3" - } - }, - "graceful-fs": { - "version": "4.2.11", - "resolved": "https://registry.npmjs.org/graceful-fs/-/graceful-fs-4.2.11.tgz", - "integrity": "sha512-RbJ5/jmFcNNCcDV5o9eTnBLJ/HszWV0P73bc+Ff4nS/rJj+YaS6IGyiOL0VoBYX+l1Wrl3k63h/KrH+nhJ0XvQ==" - }, - "handlebars": { - "version": "4.7.8", - "resolved": "https://registry.npmjs.org/handlebars/-/handlebars-4.7.8.tgz", - "integrity": "sha512-vafaFqs8MZkRrSX7sFVUdo3ap/eNiLnb4IakshzvP56X5Nr1iGKAIqdX6tMlm6HcNRIkr6AxO5jFEoJzzpT8aQ==", - "requires": { - "minimist": "^1.2.5", - "neo-async": "^2.6.2", - "source-map": "^0.6.1", - "uglify-js": "^3.1.4", - "wordwrap": "^1.0.0" - } - }, - "has-flag": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-3.0.0.tgz", - "integrity": "sha512-sKJf1+ceQBr4SMkvQnBDNDtf4TXpVhVGateu0t918bl30FnbE2m4vNLX+VWe/dpjlb+HugGYzW7uQXH98HPEYw==", - "dev": true - }, - "has-property-descriptors": { - "version": "1.0.2", - "resolved": "https://registry.npmjs.org/has-property-descriptors/-/has-property-descriptors-1.0.2.tgz", - "integrity": "sha512-55JNKuIW+vq4Ke1BjOTjM2YctQIvCT7GFzHwmfZPGo5wnrgkid0YQtnAleFSqumZm4az3n2BS+erby5ipJdgrg==", - "requires": { - "es-define-property": "^1.0.0" - } - }, - "has-proto": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/has-proto/-/has-proto-1.0.1.tgz", - "integrity": "sha512-7qE+iP+O+bgF9clE5+UoBFzE65mlBiVj3tKCrlNQ0Ogwm0BjpT/gK4SlLYDMybDh5I3TCTKnPPa0oMG7JDYrhg==" - }, - "has-symbols": { - "version": "1.0.3", - "resolved": "https://registry.npmjs.org/has-symbols/-/has-symbols-1.0.3.tgz", - "integrity": "sha512-l3LCuF6MgDNwTDKkdYGEihYjt5pRPbEg46rtlmnSPlUbgmB8LOIrKJbYYFBSbnPaJexMKtiPO8hmeRjRz2Td+A==" - }, - "hasown": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/hasown/-/hasown-2.0.0.tgz", - "integrity": "sha512-vUptKVTpIJhcczKBbgnS+RtcuYMB8+oNzPK2/Hp3hanz8JmpATdmmgLgSaadVREkDm+e2giHwY3ZRkyjSIDDFA==", - "requires": { - "function-bind": "^1.1.2" - } - }, - "help-me": { - "version": "4.2.0", - "resolved": "https://registry.npmjs.org/help-me/-/help-me-4.2.0.tgz", - "integrity": "sha512-TAOnTB8Tz5Dw8penUuzHVrKNKlCIbwwbHnXraNJxPwf8LRtE2HlM84RYuezMFcwOJmoYOCWVDyJ8TQGxn9PgxA==", - "requires": { - "glob": "^8.0.0", - "readable-stream": "^3.6.0" - }, - "dependencies": { - "brace-expansion": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/brace-expansion/-/brace-expansion-2.0.1.tgz", - "integrity": "sha512-XnAIvQ8eM+kC6aULx6wuQiwVsnzsi9d3WxzV3FpWTGA19F621kwdbsAcFKXgKUHZWsy+mY6iL1sHTxWEFCytDA==", - "requires": { - "balanced-match": "^1.0.0" - } - }, - "glob": { - "version": "8.1.0", - "resolved": "https://registry.npmjs.org/glob/-/glob-8.1.0.tgz", - "integrity": "sha512-r8hpEjiQEYlF2QU0df3dS+nxxSIreXQS1qRhMJM0Q5NDdR386C7jb7Hwwod8Fgiuex+k0GFjgft18yvxm5XoCQ==", - "requires": { - "fs.realpath": "^1.0.0", - "inflight": "^1.0.4", - "inherits": "2", - "minimatch": "^5.0.1", - "once": "^1.3.0" - } - }, - "minimatch": { - "version": "5.1.6", - "resolved": "https://registry.npmjs.org/minimatch/-/minimatch-5.1.6.tgz", - "integrity": "sha512-lKwV/1brpG6mBUFHtb7NUmtABCb2WZZmm2wNiOA5hAb8VdCS4B3dtMWyvcoViccwAW/COERjXLt0zP1zXUN26g==", - "requires": { - "brace-expansion": "^2.0.1" - } - } - } - }, - "hpagent": { - "version": "1.2.0", - "resolved": "https://registry.npmjs.org/hpagent/-/hpagent-1.2.0.tgz", - "integrity": "sha512-A91dYTeIB6NoXG+PxTQpCCDDnfHsW9kc06Lvpu1TEe9gnd6ZFeiBoRO9JvzEv6xK7EX97/dUE8g/vBMTqTS3CA==" - }, - "http-errors": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/http-errors/-/http-errors-2.0.0.tgz", - "integrity": "sha512-FtwrG/euBzaEjYeRqOgly7G0qviiXoJWnvEH2Z1plBdXgbyjv34pHTSb9zoeHMyDy33+DWy5Wt9Wo+TURtOYSQ==", - "dev": true, - "requires": { - "depd": "2.0.0", - "inherits": "2.0.4", - "setprototypeof": "1.2.0", - "statuses": "2.0.1", - "toidentifier": "1.0.1" - } - }, - "iconv-lite": { - "version": "0.5.2", - "resolved": "https://registry.npmjs.org/iconv-lite/-/iconv-lite-0.5.2.tgz", - "integrity": "sha512-kERHXvpSaB4aU3eANwidg79K8FlrN77m8G9V+0vOR3HYaRifrlwMEpT7ZBJqLSEIHnEgJTHcWK82wwLwwKwtag==", - "dev": true, - "requires": { - "safer-buffer": ">= 2.1.2 < 3" - } - }, - "ieee754": { - "version": "1.2.1", - "resolved": "https://registry.npmjs.org/ieee754/-/ieee754-1.2.1.tgz", - "integrity": "sha512-dcyqhDvX1C46lXZcVqCpK+FtMRQVdIMN6/Df5js2zouUsqG7I6sFxitIC+7KYK29KdXOLHdu9zL4sFnoVQnqaA==" - }, - "ignore": { - "version": "5.3.1", - "resolved": "https://registry.npmjs.org/ignore/-/ignore-5.3.1.tgz", - "integrity": "sha512-5Fytz/IraMjqpwfd34ke28PTVMjZjJG2MPn5t7OE4eUCUNf8BAa7b5WUS9/Qvr6mwOQS7Mk6vdsMno5he+T8Xw==" - }, - "ignore-by-default": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/ignore-by-default/-/ignore-by-default-1.0.1.tgz", - "integrity": "sha512-Ius2VYcGNk7T90CppJqcIkS5ooHUZyIQK+ClZfMfMNFEF9VSE73Fq+906u/CWu92x4gzZMWOwfFYckPObzdEbA==", - "dev": true - }, - "inflight": { - "version": "1.0.6", - "resolved": "https://registry.npmjs.org/inflight/-/inflight-1.0.6.tgz", - "integrity": "sha512-k92I/b08q4wvFscXCLvqfsHCrjrF7yiXsQuIVvVE7N82W3+aqpzuUdBbfhWcy/FZR3/4IgflMgKLOsvPDrGCJA==", - "requires": { - "once": "^1.3.0", - "wrappy": "1" - } - }, - "inherits": { - "version": "2.0.4", - "resolved": "https://registry.npmjs.org/inherits/-/inherits-2.0.4.tgz", - "integrity": "sha512-k/vGaX4/Yla3WzyMCvTQOXYeIHvqOKtnqBduzTHpzpQZzAskKMhZ2K+EnBiSM9zGSoIFeMpXKxa4dYeZIQqewQ==" - }, - "ipaddr.js": { - "version": "1.9.1", - "resolved": "https://registry.npmjs.org/ipaddr.js/-/ipaddr.js-1.9.1.tgz", - "integrity": "sha512-0KI/607xoxSToH7GjN1FfSbLoU0+btTicjsQSWQlh/hZykN8KpmMf7uYwPW3R+akZ6R/w18ZlXSHBYXiYUPO3g==", - "dev": true - }, - "is-absolute": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/is-absolute/-/is-absolute-1.0.0.tgz", - "integrity": "sha512-dOWoqflvcydARa360Gvv18DZ/gRuHKi2NU/wU5X1ZFzdYfH29nkiNZsF3mp4OJ3H4yo9Mx8A/uAGNzpzPN3yBA==", - "requires": { - "is-relative": "^1.0.0", - "is-windows": "^1.0.1" - } - }, - "is-binary-path": { - "version": "2.1.0", - "resolved": "https://registry.npmjs.org/is-binary-path/-/is-binary-path-2.1.0.tgz", - "integrity": "sha512-ZMERYes6pDydyuGidse7OsHxtbI7WVeUEozgR/g7rd0xUimYNlvZRE/K2MgZTjWy725IfelLeVcEM97mmtRGXw==", - "dev": true, - "requires": { - "binary-extensions": "^2.0.0" - } - }, - "is-buffer": { - "version": "1.1.6", - "resolved": "https://registry.npmjs.org/is-buffer/-/is-buffer-1.1.6.tgz", - "integrity": "sha512-NcdALwpXkTm5Zvvbk7owOUSvVvBKDgKP5/ewfXEznmQFfs4ZRmanOeKBTjRVjka3QFoN6XJ+9F3USqfHqTaU5w==" - }, - "is-extglob": { - "version": "2.1.1", - "resolved": "https://registry.npmjs.org/is-extglob/-/is-extglob-2.1.1.tgz", - "integrity": "sha512-SbKbANkN603Vi4jEZv49LeVJMn4yGwsbzZworEoyEiutsN3nJYdbO36zfhGJ6QEDpOZIFkDtnq5JRxmvl3jsoQ==" - }, - "is-glob": { - "version": "4.0.3", - "resolved": "https://registry.npmjs.org/is-glob/-/is-glob-4.0.3.tgz", - "integrity": "sha512-xelSayHH36ZgE7ZWhli7pW34hNbNl8Ojv5KVmkJD4hBdD3th8Tfk9vYasLM+mXWOZhFkgZfxhLSnrwRr4elSSg==", - "requires": { - "is-extglob": "^2.1.1" - } - }, - "is-negated-glob": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/is-negated-glob/-/is-negated-glob-1.0.0.tgz", - "integrity": "sha512-czXVVn/QEmgvej1f50BZ648vUI+em0xqMq2Sn+QncCLN4zj1UAxlT+kw/6ggQTOaZPd1HqKQGEqbpQVtJucWug==" - }, - "is-promise": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/is-promise/-/is-promise-4.0.0.tgz", - "integrity": "sha512-hvpoI6korhJMnej285dSg6nu1+e6uxs7zG3BYAm5byqDsgJNWwxzM6z6iZiAgQR4TJ30JmBTOwqZUw3WlyH3AQ==", - "dev": true - }, - "is-relative": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/is-relative/-/is-relative-1.0.0.tgz", - "integrity": "sha512-Kw/ReK0iqwKeu0MITLFuj0jbPAmEiOsIwyIXvvbfa6QfmN9pkD1M+8pdk7Rl/dTKbH34/XBFMbgD4iMJhLQbGA==", - "requires": { - "is-unc-path": "^1.0.0" - } - }, - "is-unc-path": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/is-unc-path/-/is-unc-path-1.0.0.tgz", - "integrity": "sha512-mrGpVd0fs7WWLfVsStvgF6iEJnbjDFZh9/emhRDcGWTduTfNHd9CHeUwH3gYIjdbwo4On6hunkztwOaAw0yllQ==", - "requires": { - "unc-path-regex": "^0.1.2" - } - }, - "is-utf8": { - "version": "0.2.1", - "resolved": "https://registry.npmjs.org/is-utf8/-/is-utf8-0.2.1.tgz", - "integrity": "sha512-rMYPYvCzsXywIsldgLaSoPlw5PfoB/ssr7hY4pLfcodrA5M/eArza1a9VmTiNIBNMjOGr1Ow9mTyU2o69U6U9Q==" - }, - "is-valid-glob": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/is-valid-glob/-/is-valid-glob-1.0.0.tgz", - "integrity": "sha512-AhiROmoEFDSsjx8hW+5sGwgKVIORcXnrlAx/R0ZSeaPw70Vw0CqkGBBhHGL58Uox2eXnU1AnvXJl1XlyedO5bA==" - }, - "is-windows": { - "version": "1.0.2", - "resolved": "https://registry.npmjs.org/is-windows/-/is-windows-1.0.2.tgz", - "integrity": "sha512-eXK1UInq2bPmjyX6e3VHIzMLobc4J94i4AWn+Hpq3OU5KkrRC96OAcR3PRJ/pGu6m8TRnBHP9dkXQVsT/COVIA==" - }, - "isarray": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/isarray/-/isarray-1.0.0.tgz", - "integrity": "sha512-VLghIWNM6ELQzo7zwmcg0NmTVyWKYjvIeM83yjp0wRDTmUnrM678fQbcKBo6n2CJEF0szoG//ytg+TKla89ALQ==" - }, - "isomorphic-git": { - "version": "1.25.6", - "resolved": "https://registry.npmjs.org/isomorphic-git/-/isomorphic-git-1.25.6.tgz", - "integrity": "sha512-zA3k3QOO7doqOnBgwsaXJwHKSIIl5saEdH4xxalu082WHVES4KghsG6RE2SDwjXMCIlNa1bWocbitH6bRIrmLQ==", - "requires": { - "async-lock": "^1.1.0", - "clean-git-ref": "^2.0.1", - "crc-32": "^1.2.0", - "diff3": "0.0.3", - "ignore": "^5.1.4", - "minimisted": "^2.0.0", - "pako": "^1.0.10", - "pify": "^4.0.1", - "readable-stream": "^3.4.0", - "sha.js": "^2.4.9", - "simple-get": "^4.0.1" - } - }, - "joycon": { - "version": "3.1.1", - "resolved": "https://registry.npmjs.org/joycon/-/joycon-3.1.1.tgz", - "integrity": "sha512-34wB/Y7MW7bzjKRjUKTa46I2Z7eV62Rkhva+KkopW7Qvv/OSWBqvkSY7vusOPrNuZcUG3tApvdVgNB8POj3SPw==" - }, - "js-yaml": { - "version": "4.1.0", - "resolved": "https://registry.npmjs.org/js-yaml/-/js-yaml-4.1.0.tgz", - "integrity": "sha512-wpxZs9NoxZaJESJGIZTyDEaYpl0FKSA+FB9aJiyemKhMwkxQg63h4T1KJgUGHpTqPDNRcmmYLugrRjJlBtWvRA==", - "requires": { - "argparse": "^2.0.1" - } - }, - "json-stable-stringify-without-jsonify": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/json-stable-stringify-without-jsonify/-/json-stable-stringify-without-jsonify-1.0.1.tgz", - "integrity": "sha512-Bdboy+l7tA3OGW6FjyFHWkP5LuByj1Tk33Ljyq0axyzdk9//JSi2u3fP1QSmd1KNwq6VOKYGlAu87CisVir6Pw==" - }, - "json5": { - "version": "2.2.3", - "resolved": "https://registry.npmjs.org/json5/-/json5-2.2.3.tgz", - "integrity": "sha512-XmOWe7eyHYH14cLdVPoyg+GOH3rYX++KpzrylJwSW98t3Nk+U8XOl8FWKOgwtzdb8lXGf6zYwDUzeHMWfxasyg==" - }, - "lazystream": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/lazystream/-/lazystream-1.0.1.tgz", - "integrity": "sha512-b94GiNHQNy6JNTrt5w6zNyffMrNkXZb3KTkCZJb2V1xaEGCk093vkZ2jk3tpaeP33/OiXC+WvK9AxUebnf5nbw==", - "requires": { - "readable-stream": "^2.0.5" - }, - "dependencies": { - "readable-stream": { - "version": "2.3.8", - "resolved": "https://registry.npmjs.org/readable-stream/-/readable-stream-2.3.8.tgz", - "integrity": "sha512-8p0AUk4XODgIewSi0l8Epjs+EVnWiK7NoDIEGU0HhE7+ZyY8D1IMY7odu5lRrFXGg71L15KG8QrPmum45RTtdA==", - "requires": { - "core-util-is": "~1.0.0", - "inherits": "~2.0.3", - "isarray": "~1.0.0", - "process-nextick-args": "~2.0.0", - "safe-buffer": "~5.1.1", - "string_decoder": "~1.1.1", - "util-deprecate": "~1.0.1" - } - }, - "safe-buffer": { - "version": "5.1.2", - "resolved": "https://registry.npmjs.org/safe-buffer/-/safe-buffer-5.1.2.tgz", - "integrity": "sha512-Gd2UZBJDkXlY7GbJxfsE8/nvKkUEU1G38c1siN6QP6a9PT9MmHB8GnpscSmMJSoF8LOIrt8ud/wPtojys4G6+g==" - }, - "string_decoder": { - "version": "1.1.1", - "resolved": "https://registry.npmjs.org/string_decoder/-/string_decoder-1.1.1.tgz", - "integrity": "sha512-n/ShnvDi6FHbbVfviro+WojiFzv+s8MPMHBczVePfUpDJLwoLT0ht1l4YwBCbi8pJAveEEdnkHyPyTP/mzRfwg==", - "requires": { - "safe-buffer": "~5.1.0" - } - } - } - }, - "lead": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/lead/-/lead-1.0.0.tgz", - "integrity": "sha512-IpSVCk9AYvLHo5ctcIXxOBpMWUe+4TKN3VPWAKUbJikkmsGp0VrSM8IttVc32D6J4WUsiPE6aEFRNmIoF/gdow==", - "requires": { - "flush-write-stream": "^1.0.2" - } - }, - "lodash.clonedeep": { - "version": "4.5.0", - "resolved": "https://registry.npmjs.org/lodash.clonedeep/-/lodash.clonedeep-4.5.0.tgz", - "integrity": "sha512-H5ZhCF25riFd9uB5UCkVKo61m3S/xZk1x4wA6yp/L3RFP6Z/eHH1ymQcGLo7J3GMPfm0V/7m1tryHuGVxpqEBQ==" - }, - "lru-cache": { - "version": "6.0.0", - "resolved": "https://registry.npmjs.org/lru-cache/-/lru-cache-6.0.0.tgz", - "integrity": "sha512-Jo6dJ04CmSjuznwJSS3pUeWmd/H0ffTlkXXgwZi+eq1UCmqQwCh+eLsYOYCwY991i2Fah4h1BEMCx4qThGbsiA==", - "dev": true, - "requires": { - "yallist": "^4.0.0" - } - }, - "media-typer": { - "version": "1.1.0", - "resolved": "https://registry.npmjs.org/media-typer/-/media-typer-1.1.0.tgz", - "integrity": "sha512-aisnrDP4GNe06UcKFnV5bfMNPBUw4jsLGaWwWfnH3v02GnBuXX2MCVn5RbrWo0j3pczUilYblq7fQ7Nw2t5XKw==", - "dev": true - }, - "merge-descriptors": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/merge-descriptors/-/merge-descriptors-2.0.0.tgz", - "integrity": "sha512-Snk314V5ayFLhp3fkUREub6WtjBfPdCPY1Ln8/8munuLuiYhsABgBVWsozAG+MWMbVEvcdcpbi9R7ww22l9Q3g==", - "dev": true - }, - "methods": { - "version": "1.1.2", - "resolved": "https://registry.npmjs.org/methods/-/methods-1.1.2.tgz", - "integrity": "sha512-iclAHeNqNm68zFtnZ0e+1L2yUIdvzNoauKU4WBA3VvH/vPFieF7qfRlwUZU+DA9P9bPXIS90ulxoUoCH23sV2w==", - "dev": true - }, - "mime-db": { - "version": "1.52.0", - "resolved": "https://registry.npmjs.org/mime-db/-/mime-db-1.52.0.tgz", - "integrity": "sha512-sPU4uV7dYlvtWJxwwxHD0PuihVNiE7TyAbQ5SWxDCB9mUYvOgroQOwYQQOKPJ8CIbE+1ETVlOoK1UC2nU3gYvg==" - }, - "mime-types": { - "version": "2.1.35", - "resolved": "https://registry.npmjs.org/mime-types/-/mime-types-2.1.35.tgz", - "integrity": "sha512-ZDY+bPm5zTTF+YpCrAU9nK0UgICYPT0QtT1NZWFv4s++TNkcgVaT0g6+4R2uI4MjQjzysHB1zxuWL50hzaeXiw==", - "requires": { - "mime-db": "1.52.0" - } - }, - "mimic-response": { - "version": "3.1.0", - "resolved": "https://registry.npmjs.org/mimic-response/-/mimic-response-3.1.0.tgz", - "integrity": "sha512-z0yWI+4FDrrweS8Zmt4Ej5HdJmky15+L2e6Wgn3+iK5fWzb6T3fhNFq2+MeTRb064c6Wr4N/wv0DzQTjNzHNGQ==" - }, - "minimatch": { - "version": "3.1.2", - "resolved": "https://registry.npmjs.org/minimatch/-/minimatch-3.1.2.tgz", - "integrity": "sha512-J7p63hRiAjw1NDEww1W7i37+ByIrOWO5XQQAzZ3VOcL0PNybwpfmV/N05zFAzwQ9USyEcX6t3UO+K5aqBQOIHw==", - "requires": { - "brace-expansion": "^1.1.7" - } - }, - "minimist": { - "version": "1.2.8", - "resolved": "https://registry.npmjs.org/minimist/-/minimist-1.2.8.tgz", - "integrity": "sha512-2yyAR8qBkN3YuheJanUpWC5U3bb5osDywNB8RzDVlDwDHbocAJveqqj1u8+SVD7jkWT4yvsHCpWqqWqAxb0zCA==" - }, - "minimisted": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/minimisted/-/minimisted-2.0.1.tgz", - "integrity": "sha512-1oPjfuLQa2caorJUM8HV8lGgWCc0qqAO1MNv/k05G4qslmsndV/5WdNZrqCiyqiz3wohia2Ij2B7w2Dr7/IyrA==", - "requires": { - "minimist": "^1.2.5" - } - }, - "ms": { - "version": "2.1.2", - "resolved": "https://registry.npmjs.org/ms/-/ms-2.1.2.tgz", - "integrity": "sha512-sGkPx+VjMtmA6MX27oA4FBFELFCZZ4S4XqeGOXCv68tT+jb3vk/RyaKWP0PTKyWtmLSM0b+adUTEvbs1PEaH2w==", - "dev": true - }, - "multi-progress": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/multi-progress/-/multi-progress-4.0.0.tgz", - "integrity": "sha512-9zcjyOou3FFCKPXsmkbC3ethv51SFPoA4dJD6TscIp2pUmy26kBDZW6h9XofPELrzseSkuD7r0V+emGEeo39Pg==", - "requires": {} - }, - "negotiator": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/negotiator/-/negotiator-1.0.0.tgz", - "integrity": "sha512-8Ofs/AUQh8MaEcrlq5xOX0CQ9ypTF5dl78mjlMNfOK08fzpgTHQRQPBxcPlEtIw0yRpws+Zo/3r+5WRby7u3Gg==", - "dev": true - }, - "neo-async": { - "version": "2.6.2", - "resolved": "https://registry.npmjs.org/neo-async/-/neo-async-2.6.2.tgz", - "integrity": "sha512-Yd3UES5mWCSqR+qNT93S3UoYUkqAZ9lLg8a7g9rimsWmYGK8cVToA4/sF3RrshdyV3sAGMXVUmpMYOw+dLpOuw==" - }, - "nodemon": { - "version": "3.1.0", - "resolved": "https://registry.npmjs.org/nodemon/-/nodemon-3.1.0.tgz", - "integrity": "sha512-xqlktYlDMCepBJd43ZQhjWwMw2obW/JRvkrLxq5RCNcuDDX1DbcPT+qT1IlIIdf+DhnWs90JpTMe+Y5KxOchvA==", - "dev": true, - "requires": { - "chokidar": "^3.5.2", - "debug": "^4", - "ignore-by-default": "^1.0.1", - "minimatch": "^3.1.2", - "pstree.remy": "^1.1.8", - "semver": "^7.5.3", - "simple-update-notifier": "^2.0.0", - "supports-color": "^5.5.0", - "touch": "^3.1.0", - "undefsafe": "^2.0.5" - } - }, - "nopt": { - "version": "1.0.10", - "resolved": "https://registry.npmjs.org/nopt/-/nopt-1.0.10.tgz", - "integrity": "sha512-NWmpvLSqUrgrAC9HCuxEvb+PSloHpqVu+FqcO4eeF2h5qYRhA7ev6KvelyQAKtegUbC6RypJnlEOhd8vloNKYg==", - "dev": true, - "requires": { - "abbrev": "1" - } - }, - "normalize-path": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/normalize-path/-/normalize-path-3.0.0.tgz", - "integrity": "sha512-6eZs5Ls3WtCisHWp9S2GUy8dqkpGi4BVSz3GaqiE6ezub0512ESztXUwUB6C6IKbQkY2Pnb/mD4WYojCRwcwLA==", - "dev": true - }, - "now-and-later": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/now-and-later/-/now-and-later-2.0.1.tgz", - "integrity": "sha512-KGvQ0cB70AQfg107Xvs/Fbu+dGmZoTRJp2TaPwcwQm3/7PteUyN2BCgk8KBMPGBUXZdVwyWS8fDCGFygBm19UQ==", - "requires": { - "once": "^1.3.2" - } - }, - "object-inspect": { - "version": "1.13.2", - "resolved": "https://registry.npmjs.org/object-inspect/-/object-inspect-1.13.2.tgz", - "integrity": "sha512-IRZSRuzJiynemAXPYtPe5BoI/RESNYR7TYm50MC5Mqbd3Jmw5y790sErYw3V6SryFJD64b74qQQs9wn5Bg/k3g==", - "dev": true - }, - "object-keys": { - "version": "1.1.1", - "resolved": "https://registry.npmjs.org/object-keys/-/object-keys-1.1.1.tgz", - "integrity": "sha512-NuAESUOUMrlIXOfHKzD6bpPu3tYt3xvjNdRIQ+FeT0lNb4K8WR70CaDxhuNguS2XG+GjkyMwOzsN5ZktImfhLA==" - }, - "object.assign": { - "version": "4.1.5", - "resolved": "https://registry.npmjs.org/object.assign/-/object.assign-4.1.5.tgz", - "integrity": "sha512-byy+U7gp+FVwmyzKPYhW2h5l3crpmGsxl7X2s8y43IgxvG4g3QZ6CffDtsNQy1WsmZpQbO+ybo0AlW7TY6DcBQ==", - "requires": { - "call-bind": "^1.0.5", - "define-properties": "^1.2.1", - "has-symbols": "^1.0.3", - "object-keys": "^1.1.1" - } - }, - "on-exit-leak-free": { - "version": "2.1.2", - "resolved": "https://registry.npmjs.org/on-exit-leak-free/-/on-exit-leak-free-2.1.2.tgz", - "integrity": "sha512-0eJJY6hXLGf1udHwfNftBqH+g73EU4B504nZeKpz1sYRKafAghwxEJunB2O7rDZkL4PGfsMVnTXZ2EjibbqcsA==" - }, - "on-finished": { - "version": "2.4.1", - "resolved": "https://registry.npmjs.org/on-finished/-/on-finished-2.4.1.tgz", - "integrity": "sha512-oVlzkg3ENAhCk2zdv7IJwd/QUD4z2RxRwpkcGY8psCVcCYZNq4wYnVWALHM+brtuJjePWiYF/ClmuDr8Ch5+kg==", - "dev": true, - "requires": { - "ee-first": "1.1.1" - } - }, - "once": { - "version": "1.4.0", - "resolved": "https://registry.npmjs.org/once/-/once-1.4.0.tgz", - "integrity": "sha512-lNaJgI+2Q5URQBkccEKHTQOPaXdUxnZZElQTZY0MFUAuaEqe1E+Nyvgdz/aIyNi6Z9MzO5dv1H8n58/GELp3+w==", - "requires": { - "wrappy": "1" - } - }, - "ordered-read-streams": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/ordered-read-streams/-/ordered-read-streams-1.0.1.tgz", - "integrity": "sha512-Z87aSjx3r5c0ZB7bcJqIgIRX5bxR7A4aSzvIbaxd0oTkWBCOoKfuGHiKj60CHVUgg1Phm5yMZzBdt8XqRs73Mw==", - "requires": { - "readable-stream": "^2.0.1" - }, - "dependencies": { - "readable-stream": { - "version": "2.3.8", - "resolved": "https://registry.npmjs.org/readable-stream/-/readable-stream-2.3.8.tgz", - "integrity": "sha512-8p0AUk4XODgIewSi0l8Epjs+EVnWiK7NoDIEGU0HhE7+ZyY8D1IMY7odu5lRrFXGg71L15KG8QrPmum45RTtdA==", - "requires": { - "core-util-is": "~1.0.0", - "inherits": "~2.0.3", - "isarray": "~1.0.0", - "process-nextick-args": "~2.0.0", - "safe-buffer": "~5.1.1", - "string_decoder": "~1.1.1", - "util-deprecate": "~1.0.1" - } - }, - "safe-buffer": { - "version": "5.1.2", - "resolved": "https://registry.npmjs.org/safe-buffer/-/safe-buffer-5.1.2.tgz", - "integrity": "sha512-Gd2UZBJDkXlY7GbJxfsE8/nvKkUEU1G38c1siN6QP6a9PT9MmHB8GnpscSmMJSoF8LOIrt8ud/wPtojys4G6+g==" - }, - "string_decoder": { - "version": "1.1.1", - "resolved": "https://registry.npmjs.org/string_decoder/-/string_decoder-1.1.1.tgz", - "integrity": "sha512-n/ShnvDi6FHbbVfviro+WojiFzv+s8MPMHBczVePfUpDJLwoLT0ht1l4YwBCbi8pJAveEEdnkHyPyTP/mzRfwg==", - "requires": { - "safe-buffer": "~5.1.0" - } - } - } - }, - "pako": { - "version": "1.0.11", - "resolved": "https://registry.npmjs.org/pako/-/pako-1.0.11.tgz", - "integrity": "sha512-4hLB8Py4zZce5s4yd9XzopqwVv/yGNhV1Bl8NTmCq1763HeK2+EwVTv+leGeL13Dnh2wfbqowVPXCIO0z4taYw==" - }, - "parseurl": { - "version": "1.3.3", - "resolved": "https://registry.npmjs.org/parseurl/-/parseurl-1.3.3.tgz", - "integrity": "sha512-CiyeOxFT/JZyN5m0z9PfXw4SCBJ6Sygz1Dpl0wqjlhDEGGBP1GnsUVEL0p63hoG1fcj3fHynXi9NYO4nWOL+qQ==", - "dev": true - }, - "path-dirname": { - "version": "1.0.2", - "resolved": "https://registry.npmjs.org/path-dirname/-/path-dirname-1.0.2.tgz", - "integrity": "sha512-ALzNPpyNq9AqXMBjeymIjFDAkAFH06mHJH/cSBHAgU0s4vfpBn6b2nf8tiRLvagKD8RbTpq2FKTBg7cl9l3c7Q==" - }, - "path-is-absolute": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/path-is-absolute/-/path-is-absolute-1.0.1.tgz", - "integrity": "sha512-AVbw3UJ2e9bq64vSaS9Am0fje1Pa8pbGqTTsmXfaIiMpnr5DlDhfJOuLj9Sf95ZPVDAUerDfEk88MPmPe7UCQg==" - }, - "path-to-regexp": { - "version": "8.2.0", - "resolved": "https://registry.npmjs.org/path-to-regexp/-/path-to-regexp-8.2.0.tgz", - "integrity": "sha512-TdrF7fW9Rphjq4RjrW0Kp2AW0Ahwu9sRGTkS6bvDi0SCwZlEZYmcfDbEsTz8RVk0EHIS/Vd1bv3JhG+1xZuAyQ==", - "dev": true - }, - "pend": { - "version": "1.2.0", - "resolved": "https://registry.npmjs.org/pend/-/pend-1.2.0.tgz", - "integrity": "sha512-F3asv42UuXchdzt+xXqfW1OGlVBe+mxa2mqI0pg5yAHZPvFmY3Y6drSf/GQ1A86WgWEN9Kzh/WrgKa6iGcHXLg==" - }, - "picomatch": { - "version": "2.3.1", - "resolved": "https://registry.npmjs.org/picomatch/-/picomatch-2.3.1.tgz", - "integrity": "sha512-JU3teHTNjmE2VCGFzuY8EXzCDVwEqB2a8fsIvwaStHhAWJEeVd1o1QD80CU6+ZdEXXSLbSsuLwJjkCBWqRQUVA==" - }, - "pify": { - "version": "4.0.1", - "resolved": "https://registry.npmjs.org/pify/-/pify-4.0.1.tgz", - "integrity": "sha512-uB80kBFb/tfd68bVleG9T5GGsGPjJrLAUpR5PZIrhBnIaRTQRjqdJSsIKkOP6OAIFbj7GOrcudc5pNjZ+geV2g==" - }, - "pino": { - "version": "8.14.2", - "resolved": "https://registry.npmjs.org/pino/-/pino-8.14.2.tgz", - "integrity": "sha512-zKu9aWeSWTy1JgvxIpZveJKKsAr4+6uNMZ0Vf0KRwzl/UNZA3XjHiIl/0WwqLMkDwuHuDkT5xAgPA2jpKq4whA==", - "requires": { - "atomic-sleep": "^1.0.0", - "fast-redact": "^3.1.1", - "on-exit-leak-free": "^2.1.0", - "pino-abstract-transport": "v1.0.0", - "pino-std-serializers": "^6.0.0", - "process-warning": "^2.0.0", - "quick-format-unescaped": "^4.0.3", - "real-require": "^0.2.0", - "safe-stable-stringify": "^2.3.1", - "sonic-boom": "^3.1.0", - "thread-stream": "^2.0.0" - } - }, - "pino-abstract-transport": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/pino-abstract-transport/-/pino-abstract-transport-1.0.0.tgz", - "integrity": "sha512-c7vo5OpW4wIS42hUVcT5REsL8ZljsUfBjqV/e2sFxmFEFZiq1XLUp5EYLtuDH6PEHq9W1egWqRbnLUP5FuZmOA==", - "requires": { - "readable-stream": "^4.0.0", - "split2": "^4.0.0" - }, - "dependencies": { - "readable-stream": { - "version": "4.5.1", - "resolved": "https://registry.npmjs.org/readable-stream/-/readable-stream-4.5.1.tgz", - "integrity": "sha512-uQjbf34vmf/asGnOHQEw07Q4llgMACQZTWWa4MmICS0IKJoHbLwKCy71H3eR99Dw5iYejc6W+pqZZEeqRtUFAw==", - "requires": { - "abort-controller": "^3.0.0", - "buffer": "^6.0.3", - "events": "^3.3.0", - "process": "^0.11.10", - "string_decoder": "^1.3.0" - } - } - } - }, - "pino-pretty": { - "version": "10.0.1", - "resolved": "https://registry.npmjs.org/pino-pretty/-/pino-pretty-10.0.1.tgz", - "integrity": "sha512-yrn00+jNpkvZX/NrPVCPIVHAfTDy3ahF0PND9tKqZk4j9s+loK8dpzrJj4dGb7i+WLuR50ussuTAiWoMWU+qeA==", - "requires": { - "colorette": "^2.0.7", - "dateformat": "^4.6.3", - "fast-copy": "^3.0.0", - "fast-safe-stringify": "^2.1.1", - "help-me": "^4.0.1", - "joycon": "^3.1.1", - "minimist": "^1.2.6", - "on-exit-leak-free": "^2.1.0", - "pino-abstract-transport": "^1.0.0", - "pump": "^3.0.0", - "readable-stream": "^4.0.0", - "secure-json-parse": "^2.4.0", - "sonic-boom": "^3.0.0", - "strip-json-comments": "^3.1.1" - }, - "dependencies": { - "readable-stream": { - "version": "4.5.1", - "resolved": "https://registry.npmjs.org/readable-stream/-/readable-stream-4.5.1.tgz", - "integrity": "sha512-uQjbf34vmf/asGnOHQEw07Q4llgMACQZTWWa4MmICS0IKJoHbLwKCy71H3eR99Dw5iYejc6W+pqZZEeqRtUFAw==", - "requires": { - "abort-controller": "^3.0.0", - "buffer": "^6.0.3", - "events": "^3.3.0", - "process": "^0.11.10", - "string_decoder": "^1.3.0" - } - } - } - }, - "pino-std-serializers": { - "version": "6.2.2", - "resolved": "https://registry.npmjs.org/pino-std-serializers/-/pino-std-serializers-6.2.2.tgz", - "integrity": "sha512-cHjPPsE+vhj/tnhCy/wiMh3M3z3h/j15zHQX+S9GkTBgqJuTuJzYJ4gUyACLhDaJ7kk9ba9iRDmbH2tJU03OiA==" - }, - "process": { - "version": "0.11.10", - "resolved": "https://registry.npmjs.org/process/-/process-0.11.10.tgz", - "integrity": "sha512-cdGef/drWFoydD1JsMzuFf8100nZl+GT+yacc2bEced5f9Rjk4z+WtFUTBu9PhOi9j/jfmBPu0mMEY4wIdAF8A==" - }, - "process-nextick-args": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/process-nextick-args/-/process-nextick-args-2.0.1.tgz", - "integrity": "sha512-3ouUOpQhtgrbOa17J7+uxOTpITYWaGP7/AhoR3+A+/1e9skrzelGi/dXzEYyvbxubEF6Wn2ypscTKiKJFFn1ag==" - }, - "process-warning": { - "version": "2.3.2", - "resolved": "https://registry.npmjs.org/process-warning/-/process-warning-2.3.2.tgz", - "integrity": "sha512-n9wh8tvBe5sFmsqlg+XQhaQLumwpqoAUruLwjCopgTmUBjJ/fjtBsJzKleCaIGBOMXYEhp1YfKl4d7rJ5ZKJGA==" - }, - "progress": { - "version": "2.0.3", - "resolved": "https://registry.npmjs.org/progress/-/progress-2.0.3.tgz", - "integrity": "sha512-7PiHtLll5LdnKIMw100I+8xJXR5gW2QwWYkT6iJva0bXitZKa/XMrSbdmg3r2Xnaidz9Qumd0VPaMrZlF9V9sA==" - }, - "proxy-addr": { - "version": "2.0.7", - "resolved": "https://registry.npmjs.org/proxy-addr/-/proxy-addr-2.0.7.tgz", - "integrity": "sha512-llQsMLSUDUPT44jdrU/O37qlnifitDP+ZwrmmZcoSKyLKvtZxpyV0n2/bD/N4tBAAZ/gJEdZU7KMraoK1+XYAg==", - "dev": true, - "requires": { - "forwarded": "0.2.0", - "ipaddr.js": "1.9.1" - } - }, - "pstree.remy": { - "version": "1.1.8", - "resolved": "https://registry.npmjs.org/pstree.remy/-/pstree.remy-1.1.8.tgz", - "integrity": "sha512-77DZwxQmxKnu3aR542U+X8FypNzbfJ+C5XQDk3uWjWxn6151aIMGthWYRXTqT1E5oJvg+ljaa2OJi+VfvCOQ8w==", - "dev": true - }, - "pump": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/pump/-/pump-3.0.0.tgz", - "integrity": "sha512-LwZy+p3SFs1Pytd/jYct4wpv49HiYCqd9Rlc5ZVdk0V+8Yzv6jR5Blk3TRmPL1ft69TxP0IMZGJ+WPFU2BFhww==", - "requires": { - "end-of-stream": "^1.1.0", - "once": "^1.3.1" - } - }, - "pumpify": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/pumpify/-/pumpify-2.0.1.tgz", - "integrity": "sha512-m7KOje7jZxrmutanlkS1daj1dS6z6BgslzOXmcSEpIlCxM3VJH7lG5QLeck/6hgF6F4crFf01UtQmNsJfweTAw==", - "requires": { - "duplexify": "^4.1.1", - "inherits": "^2.0.3", - "pump": "^3.0.0" - } - }, - "qs": { - "version": "6.13.0", - "resolved": "https://registry.npmjs.org/qs/-/qs-6.13.0.tgz", - "integrity": "sha512-+38qI9SOr8tfZ4QmJNplMUxqjbe7LKvvZgWdExBOmd+egZTtjLB67Gu0HRX3u/XOq7UU2Nx6nsjvS16Z9uwfpg==", - "dev": true, - "requires": { - "side-channel": "^1.0.6" - } - }, - "queue": { - "version": "4.5.1", - "resolved": "https://registry.npmjs.org/queue/-/queue-4.5.1.tgz", - "integrity": "sha512-AMD7w5hRXcFSb8s9u38acBZ+309u6GsiibP4/0YacJeaurRshogB7v/ZcVPxP5gD5+zIw6ixRHdutiYUJfwKHw==", - "requires": { - "inherits": "~2.0.0" - } - }, - "quick-format-unescaped": { - "version": "4.0.4", - "resolved": "https://registry.npmjs.org/quick-format-unescaped/-/quick-format-unescaped-4.0.4.tgz", - "integrity": "sha512-tYC1Q1hgyRuHgloV/YXs2w15unPVh8qfu/qCTfhTYamaw7fyhumKa2yGpdSo87vY32rIclj+4fWYQXUMs9EHvg==" - }, - "range-parser": { - "version": "1.2.1", - "resolved": "https://registry.npmjs.org/range-parser/-/range-parser-1.2.1.tgz", - "integrity": "sha512-Hrgsx+orqoygnmhFbKaHE6c296J+HTAQXoxEF6gNupROmmGJRoyzfG3ccAveqCBrwr/2yxQ5BVd/GTl5agOwSg==", - "dev": true - }, - "raw-body": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/raw-body/-/raw-body-3.0.0.tgz", - "integrity": "sha512-RmkhL8CAyCRPXCE28MMH0z2PNWQBNk2Q09ZdxM9IOOXwxwZbN+qbWaatPkdkWIKL2ZVDImrN/pK5HTRz2PcS4g==", - "dev": true, - "requires": { - "bytes": "3.1.2", - "http-errors": "2.0.0", - "iconv-lite": "0.6.3", - "unpipe": "1.0.0" - }, - "dependencies": { - "iconv-lite": { - "version": "0.6.3", - "resolved": "https://registry.npmjs.org/iconv-lite/-/iconv-lite-0.6.3.tgz", - "integrity": "sha512-4fCk79wshMdzMp2rH06qWrJE4iolqLhCUH+OiuIgU++RB0+94NlDL81atO7GX55uUKueo0txHNtvEyI6D7WdMw==", - "dev": true, - "requires": { - "safer-buffer": ">= 2.1.2 < 3.0.0" - } - } - } - }, - "readable-stream": { - "version": "3.6.2", - "resolved": "https://registry.npmjs.org/readable-stream/-/readable-stream-3.6.2.tgz", - "integrity": "sha512-9u/sniCrY3D5WdsERHzHE4G2YCXqoG5FTHUiCC4SIbr6XcLZBY05ya9EKjYek9O5xOAwjGq+1JdGBAS7Q9ScoA==", - "requires": { - "inherits": "^2.0.3", - "string_decoder": "^1.1.1", - "util-deprecate": "^1.0.1" - } - }, - "readdirp": { - "version": "3.6.0", - "resolved": "https://registry.npmjs.org/readdirp/-/readdirp-3.6.0.tgz", - "integrity": "sha512-hOS089on8RduqdbhvQ5Z37A0ESjsqz6qnRcffsMU3495FuTdqSm+7bhJ29JvIOsBDEEnan5DPu9t3To9VRlMzA==", - "dev": true, - "requires": { - "picomatch": "^2.2.1" - } - }, - "real-require": { - "version": "0.2.0", - "resolved": "https://registry.npmjs.org/real-require/-/real-require-0.2.0.tgz", - "integrity": "sha512-57frrGM/OCTLqLOAh0mhVA9VBMHd+9U7Zb2THMGdBUoZVOtGbJzjxsYGDJ3A9AYYCP4hn6y1TVbaOfzWtm5GFg==" - }, - "remove-bom-buffer": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/remove-bom-buffer/-/remove-bom-buffer-3.0.0.tgz", - "integrity": "sha512-8v2rWhaakv18qcvNeli2mZ/TMTL2nEyAKRvzo1WtnZBl15SHyEhrCu2/xKlJyUFKHiHgfXIyuY6g2dObJJycXQ==", - "requires": { - "is-buffer": "^1.1.5", - "is-utf8": "^0.2.1" - } - }, - "remove-bom-stream": { - "version": "1.2.0", - "resolved": "https://registry.npmjs.org/remove-bom-stream/-/remove-bom-stream-1.2.0.tgz", - "integrity": "sha512-wigO8/O08XHb8YPzpDDT+QmRANfW6vLqxfaXm1YXhnFf3AkSLyjfG3GEFg4McZkmgL7KvCj5u2KczkvSP6NfHA==", - "requires": { - "remove-bom-buffer": "^3.0.0", - "safe-buffer": "^5.1.0", - "through2": "^2.0.3" - } - }, - "remove-trailing-separator": { - "version": "1.1.0", - "resolved": "https://registry.npmjs.org/remove-trailing-separator/-/remove-trailing-separator-1.1.0.tgz", - "integrity": "sha512-/hS+Y0u3aOfIETiaiirUFwDBDzmXPvO+jAfKTitUngIPzdKc6Z0LoFjM/CK5PL4C+eKwHohlHAb6H0VFfmmUsw==" - }, - "replace-ext": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/replace-ext/-/replace-ext-1.0.1.tgz", - "integrity": "sha512-yD5BHCe7quCgBph4rMQ+0KkIRKwWCrHDOX1p1Gp6HwjPM5kVoCdKGNhN7ydqqsX6lJEnQDKZ/tFMiEdQ1dvPEw==" - }, - "require-from-string": { - "version": "2.0.2", - "resolved": "https://registry.npmjs.org/require-from-string/-/require-from-string-2.0.2.tgz", - "integrity": "sha512-Xf0nWe6RseziFMu+Ap9biiUbmplq6S9/p+7w7YXP/JBHhrUDDUhwa+vANyubuqfZWTveU//DYVGsDG7RKL/vEw==" - }, - "resolve-options": { - "version": "1.1.0", - "resolved": "https://registry.npmjs.org/resolve-options/-/resolve-options-1.1.0.tgz", - "integrity": "sha512-NYDgziiroVeDC29xq7bp/CacZERYsA9bXYd1ZmcJlF3BcrZv5pTb4NG7SjdyKDnXZ84aC4vo2u6sNKIA1LCu/A==", - "requires": { - "value-or-function": "^3.0.0" - } - }, - "router": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/router/-/router-2.0.0.tgz", - "integrity": "sha512-dIM5zVoG8xhC6rnSN8uoAgFARwTE7BQs8YwHEvK0VCmfxQXMaOuA1uiR1IPwsW7JyK5iTt7Od/TC9StasS2NPQ==", - "dev": true, - "requires": { - "array-flatten": "3.0.0", - "is-promise": "4.0.0", - "methods": "~1.1.2", - "parseurl": "~1.3.3", - "path-to-regexp": "^8.0.0", - "setprototypeof": "1.2.0", - "utils-merge": "1.0.1" - } - }, - "safe-buffer": { - "version": "5.2.1", - "resolved": "https://registry.npmjs.org/safe-buffer/-/safe-buffer-5.2.1.tgz", - "integrity": "sha512-rp3So07KcdmmKbGvgaNxQSJr7bGVSVk5S9Eq1F+ppbRo70+YeaDxkw5Dd8NPN+GD6bjnYm2VuPuCXmpuYvmCXQ==" - }, - "safe-stable-stringify": { - "version": "2.4.3", - "resolved": "https://registry.npmjs.org/safe-stable-stringify/-/safe-stable-stringify-2.4.3.tgz", - "integrity": "sha512-e2bDA2WJT0wxseVd4lsDP4+3ONX6HpMXQa1ZhFQ7SU+GjvORCmShbCMltrtIDfkYhVHrOcPtj+KhmDBdPdZD1g==" - }, - "safer-buffer": { - "version": "2.1.2", - "resolved": "https://registry.npmjs.org/safer-buffer/-/safer-buffer-2.1.2.tgz", - "integrity": "sha512-YZo3K82SD7Riyi0E1EQPojLz7kpepnSQI9IyPbHHg1XXXevb5dJI7tpyN2ADxGcQbHG7vcyRHk0cbwqcQriUtg==", - "dev": true - }, - "secure-json-parse": { - "version": "2.7.0", - "resolved": "https://registry.npmjs.org/secure-json-parse/-/secure-json-parse-2.7.0.tgz", - "integrity": "sha512-6aU+Rwsezw7VR8/nyvKTx8QpWH9FrcYiXXlqC4z5d5XQBDRqtbfsRjnwGyqbi3gddNtWHuEk9OANUotL26qKUw==" - }, - "semver": { - "version": "7.5.4", - "resolved": "https://registry.npmjs.org/semver/-/semver-7.5.4.tgz", - "integrity": "sha512-1bCSESV6Pv+i21Hvpxp3Dx+pSD8lIPt8uVjRrxAUt/nbswYc+tK6Y2btiULjd4+fnq15PX+nqQDC7Oft7WkwcA==", - "dev": true, - "requires": { - "lru-cache": "^6.0.0" - } - }, - "send": { - "version": "1.1.0", - "resolved": "https://registry.npmjs.org/send/-/send-1.1.0.tgz", - "integrity": "sha512-v67WcEouB5GxbTWL/4NeToqcZiAWEq90N888fczVArY8A79J0L4FD7vj5hm3eUMua5EpoQ59wa/oovY6TLvRUA==", - "dev": true, - "requires": { - "debug": "^4.3.5", - "destroy": "^1.2.0", - "encodeurl": "^2.0.0", - "escape-html": "^1.0.3", - "etag": "^1.8.1", - "fresh": "^0.5.2", - "http-errors": "^2.0.0", - "mime-types": "^2.1.35", - "ms": "^2.1.3", - "on-finished": "^2.4.1", - "range-parser": "^1.2.1", - "statuses": "^2.0.1" - }, - "dependencies": { - "fresh": { - "version": "0.5.2", - "resolved": "https://registry.npmjs.org/fresh/-/fresh-0.5.2.tgz", - "integrity": "sha512-zJ2mQYM18rEFOudeV4GShTGIQ7RbzA7ozbU9I/XBpm7kqgMywgmylMwXHxZJmkVoYkna9d2pVXVXPdYTP9ej8Q==", - "dev": true - }, - "ms": { - "version": "2.1.3", - "resolved": "https://registry.npmjs.org/ms/-/ms-2.1.3.tgz", - "integrity": "sha512-6FlzubTLZG3J2a/NVCAleEhjzq5oxgHyaCU9yYXvcLsvoVaHJq/s5xXI6/XXP6tz7R9xAOtHnSO/tXtF3WRTlA==", - "dev": true - } - } - }, - "serve-static": { - "version": "2.1.0", - "resolved": "https://registry.npmjs.org/serve-static/-/serve-static-2.1.0.tgz", - "integrity": "sha512-A3We5UfEjG8Z7VkDv6uItWw6HY2bBSBJT1KtVESn6EOoOr2jAxNhxWCLY3jDE2WcuHXByWju74ck3ZgLwL8xmA==", - "dev": true, - "requires": { - "encodeurl": "^2.0.0", - "escape-html": "^1.0.3", - "parseurl": "^1.3.3", - "send": "^1.0.0" - } - }, - "set-function-length": { - "version": "1.2.2", - "resolved": "https://registry.npmjs.org/set-function-length/-/set-function-length-1.2.2.tgz", - "integrity": "sha512-pgRc4hJ4/sNjWCSS9AmnS40x3bNMDTknHgL5UaMBTMyJnU90EgWh1Rz+MC9eFu4BuN/UwZjKQuY/1v3rM7HMfg==", - "requires": { - "define-data-property": "^1.1.4", - "es-errors": "^1.3.0", - "function-bind": "^1.1.2", - "get-intrinsic": "^1.2.4", - "gopd": "^1.0.1", - "has-property-descriptors": "^1.0.2" - } - }, - "setprototypeof": { - "version": "1.2.0", - "resolved": "https://registry.npmjs.org/setprototypeof/-/setprototypeof-1.2.0.tgz", - "integrity": "sha512-E5LDX7Wrp85Kil5bhZv46j8jOeboKq5JMmYM3gVGdGH8xFpPWXUMsNrlODCrkoxMEeNi/XZIwuRvY4XNwYMJpw==", - "dev": true - }, - "sha.js": { - "version": "2.4.11", - "resolved": "https://registry.npmjs.org/sha.js/-/sha.js-2.4.11.tgz", - "integrity": "sha512-QMEp5B7cftE7APOjk5Y6xgrbWu+WkLVQwk8JNjZ8nKRciZaByEW6MubieAiToS7+dwvrjGhH8jRXz3MVd0AYqQ==", - "requires": { - "inherits": "^2.0.1", - "safe-buffer": "^5.0.1" - } - }, - "should-proxy": { - "version": "1.0.4", - "resolved": "https://registry.npmjs.org/should-proxy/-/should-proxy-1.0.4.tgz", - "integrity": "sha512-RPQhIndEIVUCjkfkQ6rs6sOR6pkxJWCNdxtfG5pP0RVgUYbK5911kLTF0TNcCC0G3YCGd492rMollFT2aTd9iQ==" - }, - "side-channel": { - "version": "1.0.6", - "resolved": "https://registry.npmjs.org/side-channel/-/side-channel-1.0.6.tgz", - "integrity": "sha512-fDW/EZ6Q9RiO8eFG8Hj+7u/oW+XrPTIChwCOM2+th2A6OblDtYYIpve9m+KvI9Z4C9qSEXlaGR6bTEYHReuglA==", - "dev": true, - "requires": { - "call-bind": "^1.0.7", - "es-errors": "^1.3.0", - "get-intrinsic": "^1.2.4", - "object-inspect": "^1.13.1" - } - }, - "simple-concat": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/simple-concat/-/simple-concat-1.0.1.tgz", - "integrity": "sha512-cSFtAPtRhljv69IK0hTVZQ+OfE9nePi/rtJmw5UjHeVyVroEqJXP1sFztKUy1qU+xvz3u/sfYJLa947b7nAN2Q==" - }, - "simple-get": { - "version": "4.0.1", - "resolved": "https://registry.npmjs.org/simple-get/-/simple-get-4.0.1.tgz", - "integrity": "sha512-brv7p5WgH0jmQJr1ZDDfKDOSeWWg+OVypG99A/5vYGPqJ6pxiaHLy8nxtFjBA7oMa01ebA9gfh1uMCFqOuXxvA==", - "requires": { - "decompress-response": "^6.0.0", - "once": "^1.3.1", - "simple-concat": "^1.0.0" - } - }, - "simple-update-notifier": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/simple-update-notifier/-/simple-update-notifier-2.0.0.tgz", - "integrity": "sha512-a2B9Y0KlNXl9u/vsW6sTIu9vGEpfKu2wRV6l1H3XEas/0gUIzGzBoP/IouTcUQbm9JWZLH3COxyn03TYlFax6w==", - "dev": true, - "requires": { - "semver": "^7.5.3" - } - }, - "sonic-boom": { - "version": "3.3.0", - "resolved": "https://registry.npmjs.org/sonic-boom/-/sonic-boom-3.3.0.tgz", - "integrity": "sha512-LYxp34KlZ1a2Jb8ZQgFCK3niIHzibdwtwNUWKg0qQRzsDoJ3Gfgkf8KdBTFU3SkejDEIlWwnSnpVdOZIhFMl/g==", - "requires": { - "atomic-sleep": "^1.0.0" - } - }, - "source-map": { - "version": "0.6.1", - "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.6.1.tgz", - "integrity": "sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g==" - }, - "split2": { - "version": "4.2.0", - "resolved": "https://registry.npmjs.org/split2/-/split2-4.2.0.tgz", - "integrity": "sha512-UcjcJOWknrNkF6PLX83qcHM6KHgVKNkV62Y8a5uYDVv9ydGQVwAHMKqHdJje1VTWpljG0WYpCDhrCdAOYH4TWg==" - }, - "statuses": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/statuses/-/statuses-2.0.1.tgz", - "integrity": "sha512-RwNA9Z/7PrK06rYLIzFMlaF+l73iwpzsqRIFgbMLbTcLD6cOao82TaWefPXQvB2fOC4AjuYSEndS7N/mTCbkdQ==", - "dev": true - }, - "stream-shift": { - "version": "1.0.3", - "resolved": "https://registry.npmjs.org/stream-shift/-/stream-shift-1.0.3.tgz", - "integrity": "sha512-76ORR0DO1o1hlKwTbi/DM3EXWGf3ZJYO8cXX5RJwnul2DEg2oyoZyjLNoQM8WsvZiFKCRfC1O0J7iCvie3RZmQ==" - }, - "string_decoder": { - "version": "1.3.0", - "resolved": "https://registry.npmjs.org/string_decoder/-/string_decoder-1.3.0.tgz", - "integrity": "sha512-hkRX8U1WjJFd8LsDJ2yQ/wWWxaopEsABU1XfkM8A+j0+85JAGppt16cr1Whg6KIbb4okU6Mql6BOj+uup/wKeA==", - "requires": { - "safe-buffer": "~5.2.0" - } - }, - "strip-json-comments": { - "version": "3.1.1", - "resolved": "https://registry.npmjs.org/strip-json-comments/-/strip-json-comments-3.1.1.tgz", - "integrity": "sha512-6fPc+R4ihwqP6N/aIv2f1gMH8lOVtWQHoqC4yK6oSDVVocumAsfCqjkXnqiYMhmMwS/mEHLp7Vehlt3ql6lEig==" - }, - "supports-color": { - "version": "5.5.0", - "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-5.5.0.tgz", - "integrity": "sha512-QjVjwdXIt408MIiAqCX4oUKsgU2EqAGzs2Ppkm4aQYbjm+ZEWEcW4SfFNTr4uMNZma0ey4f5lgLrkB0aX0QMow==", - "dev": true, - "requires": { - "has-flag": "^3.0.0" - } - }, - "thread-stream": { - "version": "2.4.1", - "resolved": "https://registry.npmjs.org/thread-stream/-/thread-stream-2.4.1.tgz", - "integrity": "sha512-d/Ex2iWd1whipbT681JmTINKw0ZwOUBZm7+Gjs64DHuX34mmw8vJL2bFAaNacaW72zYiTJxSHi5abUuOi5nsfg==", - "requires": { - "real-require": "^0.2.0" - } - }, - "through": { - "version": "2.3.8", - "resolved": "https://registry.npmjs.org/through/-/through-2.3.8.tgz", - "integrity": "sha512-w89qg7PI8wAdvX60bMDP+bFoD5Dvhm9oLheFp5O4a2QF0cSBGsBX4qZmadPMvVqlLJBBci+WqGGOAPvcDeNSVg==" - }, - "through2": { - "version": "2.0.5", - "resolved": "https://registry.npmjs.org/through2/-/through2-2.0.5.tgz", - "integrity": "sha512-/mrRod8xqpA+IHSLyGCQ2s8SPHiCDEeQJSep1jqLYeEUClOFG2Qsh+4FU6G9VeqpZnGW/Su8LQGc4YKni5rYSQ==", - "requires": { - "readable-stream": "~2.3.6", - "xtend": "~4.0.1" - }, - "dependencies": { - "readable-stream": { - "version": "2.3.8", - "resolved": "https://registry.npmjs.org/readable-stream/-/readable-stream-2.3.8.tgz", - "integrity": "sha512-8p0AUk4XODgIewSi0l8Epjs+EVnWiK7NoDIEGU0HhE7+ZyY8D1IMY7odu5lRrFXGg71L15KG8QrPmum45RTtdA==", - "requires": { - "core-util-is": "~1.0.0", - "inherits": "~2.0.3", - "isarray": "~1.0.0", - "process-nextick-args": "~2.0.0", - "safe-buffer": "~5.1.1", - "string_decoder": "~1.1.1", - "util-deprecate": "~1.0.1" - } - }, - "safe-buffer": { - "version": "5.1.2", - "resolved": "https://registry.npmjs.org/safe-buffer/-/safe-buffer-5.1.2.tgz", - "integrity": "sha512-Gd2UZBJDkXlY7GbJxfsE8/nvKkUEU1G38c1siN6QP6a9PT9MmHB8GnpscSmMJSoF8LOIrt8ud/wPtojys4G6+g==" - }, - "string_decoder": { - "version": "1.1.1", - "resolved": "https://registry.npmjs.org/string_decoder/-/string_decoder-1.1.1.tgz", - "integrity": "sha512-n/ShnvDi6FHbbVfviro+WojiFzv+s8MPMHBczVePfUpDJLwoLT0ht1l4YwBCbi8pJAveEEdnkHyPyTP/mzRfwg==", - "requires": { - "safe-buffer": "~5.1.0" - } - } - } - }, - "through2-filter": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/through2-filter/-/through2-filter-3.0.0.tgz", - "integrity": "sha512-jaRjI2WxN3W1V8/FMZ9HKIBXixtiqs3SQSX4/YGIiP3gL6djW48VoZq9tDqeCWs3MT8YY5wb/zli8VW8snY1CA==", - "requires": { - "through2": "~2.0.0", - "xtend": "~4.0.0" - } - }, - "to-absolute-glob": { - "version": "2.0.2", - "resolved": "https://registry.npmjs.org/to-absolute-glob/-/to-absolute-glob-2.0.2.tgz", - "integrity": "sha512-rtwLUQEwT8ZeKQbyFJyomBRYXyE16U5VKuy0ftxLMK/PZb2fkOsg5r9kHdauuVDbsNdIBoC/HCthpidamQFXYA==", - "requires": { - "is-absolute": "^1.0.0", - "is-negated-glob": "^1.0.0" - } - }, - "to-regex-range": { - "version": "5.0.1", - "resolved": "https://registry.npmjs.org/to-regex-range/-/to-regex-range-5.0.1.tgz", - "integrity": "sha512-65P7iz6X5yEr1cwcgvQxbbIw7Uk3gOy5dIdtZ4rDveLqhrdJP+Li/Hx6tyK0NEb+2GCyneCMJiGqrADCSNk8sQ==", - "requires": { - "is-number": "^7.0.0" - }, - "dependencies": { - "is-number": { - "version": "7.0.0", - "resolved": "https://registry.npmjs.org/is-number/-/is-number-7.0.0.tgz", - "integrity": "sha512-41Cifkg6e8TylSpdtTpeLVMqvSBEVzTttHvERD741+pnZ8ANv0004MRL43QKPDlK9cGvNp6NZWZUBlbGXYxxng==" - } - } - }, - "to-through": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/to-through/-/to-through-2.0.0.tgz", - "integrity": "sha512-+QIz37Ly7acM4EMdw2PRN389OneM5+d844tirkGp4dPKzI5OE72V9OsbFp+CIYJDahZ41ZV05hNtcPAQUAm9/Q==", - "requires": { - "through2": "^2.0.3" - } - }, - "toidentifier": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/toidentifier/-/toidentifier-1.0.1.tgz", - "integrity": "sha512-o5sSPKEkg/DIQNmH43V0/uerLrpzVedkUh8tGNvaeXpfpuwjKenlSox/2O/BTlZUtEe+JG7s5YhEz608PlAHRA==", - "dev": true - }, - "touch": { - "version": "3.1.0", - "resolved": "https://registry.npmjs.org/touch/-/touch-3.1.0.tgz", - "integrity": "sha512-WBx8Uy5TLtOSRtIq+M03/sKDrXCLHxwDcquSP2c43Le03/9serjQBIztjRz6FkJez9D/hleyAXTBGLwwZUw9lA==", - "dev": true, - "requires": { - "nopt": "~1.0.10" - } - }, - "type-is": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/type-is/-/type-is-2.0.0.tgz", - "integrity": "sha512-gd0sGezQYCbWSbkZr75mln4YBidWUN60+devscpLF5mtRDUpiaTvKpBNrdaCvel1NdR2k6vclXybU5fBd2i+nw==", - "dev": true, - "requires": { - "content-type": "^1.0.5", - "media-typer": "^1.1.0", - "mime-types": "^3.0.0" - }, - "dependencies": { - "mime-db": { - "version": "1.53.0", - "resolved": "https://registry.npmjs.org/mime-db/-/mime-db-1.53.0.tgz", - "integrity": "sha512-oHlN/w+3MQ3rba9rqFr6V/ypF10LSkdwUysQL7GkXoTgIWeV+tcXGA852TBxH+gsh8UWoyhR1hKcoMJTuWflpg==", - "dev": true - }, - "mime-types": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/mime-types/-/mime-types-3.0.0.tgz", - "integrity": "sha512-XqoSHeCGjVClAmoGFG3lVFqQFRIrTVw2OH3axRqAcfaw+gHWIfnASS92AV+Rl/mk0MupgZTRHQOjxY6YVnzK5w==", - "dev": true, - "requires": { - "mime-db": "^1.53.0" - } - } - } - }, - "uglify-js": { - "version": "3.17.4", - "resolved": "https://registry.npmjs.org/uglify-js/-/uglify-js-3.17.4.tgz", - "integrity": "sha512-T9q82TJI9e/C1TAxYvfb16xO120tMVFZrGA3f9/P4424DNu6ypK103y0GPFVa17yotwSyZW5iYXgjYHkGrJW/g==", - "optional": true - }, - "unc-path-regex": { - "version": "0.1.2", - "resolved": "https://registry.npmjs.org/unc-path-regex/-/unc-path-regex-0.1.2.tgz", - "integrity": "sha512-eXL4nmJT7oCpkZsHZUOJo8hcX3GbsiDOa0Qu9F646fi8dT3XuSVopVqAcEiVzSKKH7UoDti23wNX3qGFxcW5Qg==" - }, - "undefsafe": { - "version": "2.0.5", - "resolved": "https://registry.npmjs.org/undefsafe/-/undefsafe-2.0.5.tgz", - "integrity": "sha512-WxONCrssBM8TSPRqN5EmsjVrsv4A8X12J4ArBiiayv3DyyG3ZlIg6yysuuSYdZsVz3TKcTg2fd//Ujd4CHV1iA==", - "dev": true - }, - "unique-stream": { - "version": "2.3.1", - "resolved": "https://registry.npmjs.org/unique-stream/-/unique-stream-2.3.1.tgz", - "integrity": "sha512-2nY4TnBE70yoxHkDli7DMazpWiP7xMdCYqU2nBRO0UB+ZpEkGsSija7MvmvnZFUeC+mrgiUfcHSr3LmRFIg4+A==", - "requires": { - "json-stable-stringify-without-jsonify": "^1.0.1", - "through2-filter": "^3.0.0" - } - }, - "unpipe": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/unpipe/-/unpipe-1.0.0.tgz", - "integrity": "sha512-pjy2bYhSsufwWlKwPc+l3cN7+wuJlK6uz0YdJEOlQDbl6jo/YlPi4mb8agUkVC8BF7V8NuzeyPNqRksA3hztKQ==", - "dev": true - }, - "unxhr": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/unxhr/-/unxhr-1.0.1.tgz", - "integrity": "sha512-MAhukhVHyaLGDjyDYhy8gVjWJyhTECCdNsLwlMoGFoNJ3o79fpQhtQuzmAE4IxCMDwraF4cW8ZjpAV0m9CRQbg==" - }, - "util-deprecate": { - "version": "1.0.2", - "resolved": "https://registry.npmjs.org/util-deprecate/-/util-deprecate-1.0.2.tgz", - "integrity": "sha512-EPD5q1uXyFxJpCrLnCc1nHnq3gOa6DZBocAIiI2TaSCA7VCJ1UJDMagCzIkXNsUYfD1daK//LTEQ8xiIbrHtcw==" - }, - "utils-merge": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/utils-merge/-/utils-merge-1.0.1.tgz", - "integrity": "sha512-pMZTvIkT1d+TFGvDOqodOclx0QWkkgi6Tdoa8gC8ffGAAqz9pzPTZWAybbsHHoED/ztMtkv/VoYTYyShUn81hA==", - "dev": true - }, - "value-or-function": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/value-or-function/-/value-or-function-3.0.0.tgz", - "integrity": "sha512-jdBB2FrWvQC/pnPtIqcLsMaQgjhdb6B7tk1MMyTKapox+tQZbdRP4uLxu/JY0t7fbfDCUMnuelzEYv5GsxHhdg==" - }, - "vary": { - "version": "1.1.2", - "resolved": "https://registry.npmjs.org/vary/-/vary-1.1.2.tgz", - "integrity": "sha512-BNGbWLfd0eUPabhkXUVm0j8uuvREyTh5ovRa/dyow/BqAbZJyC+5fU+IzQOzmAKzYqYRAISoRhdQr3eIZ/PXqg==", - "dev": true - }, - "vinyl": { - "version": "2.2.1", - "resolved": "https://registry.npmjs.org/vinyl/-/vinyl-2.2.1.tgz", - "integrity": "sha512-LII3bXRFBZLlezoG5FfZVcXflZgWP/4dCwKtxd5ky9+LOtM4CS3bIRQsmR1KMnMW07jpE8fqR2lcxPZ+8sJIcw==", - "requires": { - "clone": "^2.1.1", - "clone-buffer": "^1.0.0", - "clone-stats": "^1.0.0", - "cloneable-readable": "^1.0.0", - "remove-trailing-separator": "^1.0.1", - "replace-ext": "^1.0.0" - } - }, - "vinyl-fs": { - "version": "3.0.3", - "resolved": "https://registry.npmjs.org/vinyl-fs/-/vinyl-fs-3.0.3.tgz", - "integrity": "sha512-vIu34EkyNyJxmP0jscNzWBSygh7VWhqun6RmqVfXePrOwi9lhvRs//dOaGOTRUQr4tx7/zd26Tk5WeSVZitgng==", - "requires": { - "fs-mkdirp-stream": "^1.0.0", - "glob-stream": "^6.1.0", - "graceful-fs": "^4.0.0", - "is-valid-glob": "^1.0.0", - "lazystream": "^1.0.0", - "lead": "^1.0.0", - "object.assign": "^4.0.4", - "pumpify": "^1.3.5", - "readable-stream": "^2.3.3", - "remove-bom-buffer": "^3.0.0", - "remove-bom-stream": "^1.2.0", - "resolve-options": "^1.1.0", - "through2": "^2.0.0", - "to-through": "^2.0.0", - "value-or-function": "^3.0.0", - "vinyl": "^2.0.0", - "vinyl-sourcemap": "^1.1.0" - }, - "dependencies": { - "duplexify": { - "version": "3.7.1", - "resolved": "https://registry.npmjs.org/duplexify/-/duplexify-3.7.1.tgz", - "integrity": "sha512-07z8uv2wMyS51kKhD1KsdXJg5WQ6t93RneqRxUHnskXVtlYYkLqM0gqStQZ3pj073g687jPCHrqNfCzawLYh5g==", - "requires": { - "end-of-stream": "^1.0.0", - "inherits": "^2.0.1", - "readable-stream": "^2.0.0", - "stream-shift": "^1.0.0" - } - }, - "glob-parent": { - "version": "3.1.0", - "resolved": "https://registry.npmjs.org/glob-parent/-/glob-parent-3.1.0.tgz", - "integrity": "sha512-E8Ak/2+dZY6fnzlR7+ueWvhsH1SjHr4jjss4YS/h4py44jY9MhK/VFdaZJAWDz6BbL21KeteKxFSFpq8OS5gVA==", - "requires": { - "is-glob": "^3.1.0", - "path-dirname": "^1.0.0" - } - }, - "glob-stream": { - "version": "6.1.0", - "resolved": "https://registry.npmjs.org/glob-stream/-/glob-stream-6.1.0.tgz", - "integrity": "sha512-uMbLGAP3S2aDOHUDfdoYcdIePUCfysbAd0IAoWVZbeGU/oNQ8asHVSshLDJUPWxfzj8zsCG7/XeHPHTtow0nsw==", - "requires": { - "extend": "^3.0.0", - "glob": "^7.1.1", - "glob-parent": "^3.1.0", - "is-negated-glob": "^1.0.0", - "ordered-read-streams": "^1.0.0", - "pumpify": "^1.3.5", - "readable-stream": "^2.1.5", - "remove-trailing-separator": "^1.0.1", - "to-absolute-glob": "^2.0.0", - "unique-stream": "^2.0.2" - } - }, - "is-glob": { - "version": "3.1.0", - "resolved": "https://registry.npmjs.org/is-glob/-/is-glob-3.1.0.tgz", - "integrity": "sha512-UFpDDrPgM6qpnFNI+rh/p3bUaq9hKLZN8bMUWzxmcnZVS3omf4IPK+BrewlnWjO1WmUsMYuSjKh4UJuV4+Lqmw==", - "requires": { - "is-extglob": "^2.1.0" - } - }, - "pump": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/pump/-/pump-2.0.1.tgz", - "integrity": "sha512-ruPMNRkN3MHP1cWJc9OWr+T/xDP0jhXYCLfJcBuX54hhfIBnaQmAUMfDcG4DM5UMWByBbJY69QSphm3jtDKIkA==", - "requires": { - "end-of-stream": "^1.1.0", - "once": "^1.3.1" - } - }, - "pumpify": { - "version": "1.5.1", - "resolved": "https://registry.npmjs.org/pumpify/-/pumpify-1.5.1.tgz", - "integrity": "sha512-oClZI37HvuUJJxSKKrC17bZ9Cu0ZYhEAGPsPUy9KlMUmv9dKX2o77RUmq7f3XjIxbwyGwYzbzQ1L2Ks8sIradQ==", - "requires": { - "duplexify": "^3.6.0", - "inherits": "^2.0.3", - "pump": "^2.0.0" - } - }, - "readable-stream": { - "version": "2.3.8", - "resolved": "https://registry.npmjs.org/readable-stream/-/readable-stream-2.3.8.tgz", - "integrity": "sha512-8p0AUk4XODgIewSi0l8Epjs+EVnWiK7NoDIEGU0HhE7+ZyY8D1IMY7odu5lRrFXGg71L15KG8QrPmum45RTtdA==", - "requires": { - "core-util-is": "~1.0.0", - "inherits": "~2.0.3", - "isarray": "~1.0.0", - "process-nextick-args": "~2.0.0", - "safe-buffer": "~5.1.1", - "string_decoder": "~1.1.1", - "util-deprecate": "~1.0.1" - } - }, - "safe-buffer": { - "version": "5.1.2", - "resolved": "https://registry.npmjs.org/safe-buffer/-/safe-buffer-5.1.2.tgz", - "integrity": "sha512-Gd2UZBJDkXlY7GbJxfsE8/nvKkUEU1G38c1siN6QP6a9PT9MmHB8GnpscSmMJSoF8LOIrt8ud/wPtojys4G6+g==" - }, - "string_decoder": { - "version": "1.1.1", - "resolved": "https://registry.npmjs.org/string_decoder/-/string_decoder-1.1.1.tgz", - "integrity": "sha512-n/ShnvDi6FHbbVfviro+WojiFzv+s8MPMHBczVePfUpDJLwoLT0ht1l4YwBCbi8pJAveEEdnkHyPyTP/mzRfwg==", - "requires": { - "safe-buffer": "~5.1.0" - } - } - } - }, - "vinyl-sourcemap": { - "version": "1.1.0", - "resolved": "https://registry.npmjs.org/vinyl-sourcemap/-/vinyl-sourcemap-1.1.0.tgz", - "integrity": "sha512-NiibMgt6VJGJmyw7vtzhctDcfKch4e4n9TBeoWlirb7FMg9/1Ov9k+A5ZRAtywBpRPiyECvQRQllYM8dECegVA==", - "requires": { - "append-buffer": "^1.0.2", - "convert-source-map": "^1.5.0", - "graceful-fs": "^4.1.6", - "normalize-path": "^2.1.1", - "now-and-later": "^2.0.0", - "remove-bom-buffer": "^3.0.0", - "vinyl": "^2.0.0" - }, - "dependencies": { - "normalize-path": { - "version": "2.1.1", - "resolved": "https://registry.npmjs.org/normalize-path/-/normalize-path-2.1.1.tgz", - "integrity": "sha512-3pKJwH184Xo/lnH6oyP1q2pMd7HcypqqmRs91/6/i2CGtWwIKGCkOOMTm/zXbgTEWHw1uNpNi/igc3ePOYHb6w==", - "requires": { - "remove-trailing-separator": "^1.0.1" - } - } - } - }, - "wordwrap": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/wordwrap/-/wordwrap-1.0.0.tgz", - "integrity": "sha512-gvVzJFlPycKc5dZN4yPkP8w7Dc37BtP1yczEneOb4uq34pXZcvrtRTmWV8W+Ume+XCxKgbjM+nevkyFPMybd4Q==" - }, - "wrappy": { - "version": "1.0.2", - "resolved": "https://registry.npmjs.org/wrappy/-/wrappy-1.0.2.tgz", - "integrity": "sha512-l4Sp/DRseor9wL6EvV2+TuQn63dMkPjZ/sp9XkghTEbV9KlPS1xUsZ3u7/IQO4wxtcFB4bgpQPRcR3QCvezPcQ==" - }, - "xdg-basedir": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/xdg-basedir/-/xdg-basedir-3.0.0.tgz", - "integrity": "sha512-1Dly4xqlulvPD3fZUQJLY+FUIeqN3N2MM3uqe4rCJftAvOjFa3jFGfctOgluGx4ahPbUCsZkmJILiP0Vi4T6lQ==" - }, - "xtend": { - "version": "4.0.2", - "resolved": "https://registry.npmjs.org/xtend/-/xtend-4.0.2.tgz", - "integrity": "sha512-LKYU1iAXJXUgAXn9URjiu+MWhyUXHsvfp7mcuYm9dSUKK0/CjtrUwFAxD82/mCWbtLsGjFIad0wIsod4zrTAEQ==" - }, - "yallist": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/yallist/-/yallist-4.0.0.tgz", - "integrity": "sha512-3wdGidZyq5PB084XLES5TpOSRA3wjXAlIWMhum2kRcv/41Sn2emQ0dycQW4uZXLejwKvg6EsvbdlVL+FYEct7A==", - "dev": true - }, - "yargs-parser": { - "version": "20.2.9", - "resolved": "https://registry.npmjs.org/yargs-parser/-/yargs-parser-20.2.9.tgz", - "integrity": "sha512-y11nGElTIV+CT3Zv9t7VKl+Q3hTQoT9a1Qzezhhl6Rp21gJ/IVTW7Z3y9EWXhuUBC2Shnf+DX0antecpAwSP8w==" - }, - "yauzl": { - "version": "2.10.0", - "resolved": "https://registry.npmjs.org/yauzl/-/yauzl-2.10.0.tgz", - "integrity": "sha512-p4a9I6X6nu6IhoGmBqAcbJy1mlC4j27vEPZX9F4L4/vZT3Lyq1VkFHw/V/PUcB9Buo+DG3iHkT0x3Qya58zc3g==", - "requires": { - "buffer-crc32": "~0.2.3", - "fd-slicer": "~1.1.0" - } - }, - "yazl": { - "version": "2.5.1", - "resolved": "https://registry.npmjs.org/yazl/-/yazl-2.5.1.tgz", - "integrity": "sha512-phENi2PLiHnHb6QBVot+dJnaAZ0xosj7p3fWl+znIjBDlnMI2PsZCJZ306BPTFOaHf5qdDEI8x5qFrSOBN5vrw==", - "requires": { - "buffer-crc32": "~0.2.3" - } - } - } -} From a9ab1642a1832cfae799e4a22341c083f51b53b1 Mon Sep 17 00:00:00 2001 From: Wilco <162103508+WilcoNeo@users.noreply.github.com> Date: Mon, 11 Nov 2024 09:48:01 +0100 Subject: [PATCH 32/45] Update some GQL messages (#217) Co-authored-by: Louise Berglund --- modules/ROOT/pages/errors/gql-errors.adoc | 36 +++++++++++++++++++++-- 1 file changed, 34 insertions(+), 2 deletions(-) diff --git a/modules/ROOT/pages/errors/gql-errors.adoc b/modules/ROOT/pages/errors/gql-errors.adoc index ef0ae6eb..e6854d59 100644 --- a/modules/ROOT/pages/errors/gql-errors.adoc +++ b/modules/ROOT/pages/errors/gql-errors.adoc @@ -73,7 +73,7 @@ Status description:: error: connection exception - database unavailable. The dat === 08N10 -Status description:: error: connection exception - invalid server state. The server is not in a state that can process a message of type: `{ $boltMsgType }`. +Status description:: error: connection exception - invalid server state. Message `{ $msg }` cannot be handled by session in the `{ $boltServerState }` state. === 08N11 @@ -95,6 +95,18 @@ Status description:: error: connection exception - alias chains are not permitte Status description:: error: connection exception - no such routing policy. Policy definition of the routing policy `{ $routingPolicy }` could not be found. Verify that the spelling is correct. +=== 08N16 + +Status description:: error: connection exception - general driver client error. Remote execution failed with message `{ $msg }`. + +=== 08N17 + +Status description:: error: connection exception - general driver transient error. Remote execution failed with message `{ $msg }`. + +=== 08N18 + +Status description:: error: connection exception - general driver database error. Remote execution failed with message `{ $msg }`. + == Data exceptions Database exceptions occur when a client request contains the wrong format, types, or other unsupported input. @@ -221,7 +233,7 @@ Status description:: error: data exception - unsupported rounding mode. Unknown === 22N27 -Status description:: error: data exception - invalid entity type. Invalid input `{ $input }` for `{ $variable }`. Expected to be `{ $valueTypeList }`. +Status description:: error: data exception - invalid entity type. Invalid input `{ $input }` for `{ $context }`. Expected to be `{ $valueTypeList }`. // === 22N28 @@ -535,6 +547,10 @@ Status description:: error: data exception - parsing JSON failure. Underlying er // Status description:: error: data exception - invalid property based access control rule involving WHERE and IS NULL. The property value access rule pattern `{ $pred }` always evaluates to 'NULL'. Use `WHERE' syntax in combination with `IS NULL` instead. +=== 22NB1 + +Status description:: error: data exception - type mismatch. Type mismatch: expected to be `{ $valueTypeList }` but was `{ $input }`. + // === 22NFF // Status description:: error: data exception - referent does not exist. The referent of the specified reference does not exist. @@ -957,6 +973,10 @@ Status description:: error: general processing exception - internal error. Inter Status description:: error: general processing exception - deadlock detected. Deadlock detected while trying to acquire locks. See log for more details. +== 50N06 + +Status description:: error: general processing exception - remote execution client error. Remote execution failed. See cause for more details. + === 50N07 Status description:: error: general processing exception - execution failed. Execution failed. See cause and debug log for details. @@ -974,6 +994,14 @@ Status description:: error: general processing exception - constraint creation f Status description:: error: general processing exception - constraint drop failed. Unable to drop `{ $constrDescrOrName }`. +== 50N16 + +Status description:: error: general processing exception - remote execution transient error. Remote execution failed. See cause for more details. + +== 50N17 + +Status description:: error: general processing exception - remote execution database error. Remote execution failed. See cause for more details. + === 50N42 Status description:: error: general processing exception - unexpected error. Unexpected error has occurred. See debug log for details. @@ -1243,6 +1271,10 @@ Status description:: error: system configuration or operation exception - system Status description:: error: system configuration or operation exception - bolt is not enabled. Cannot get routing table for `{ $db }` because Bolt is not enabled. Please update your configuration such that 'server.bolt.enabled' is set to true. +=== 51N71 + +Status description:: error: system configuration or operation exception - unsupported operation of a sharded database. Feature: `{ $feat }` is not available in a sharded database. + == Procedure exception Procedure exceptions occur when there is an error in executing a procedure, such as when the procedure execution fails due to a client error, when the procedure cannot be invoked on a primary, when the number of arguments to checkConnectivity is invalid, etc. From 030024eb87770a9a69eb3055b19d66d12084c4f4 Mon Sep 17 00:00:00 2001 From: Reneta Popova Date: Mon, 11 Nov 2024 13:23:58 +0000 Subject: [PATCH 33/45] Document errors implemented in 5.26 (#213) Co-authored-by: Louise Berglund --- modules/ROOT/pages/errors/gql-errors.adoc | 74 +++++++++++++++++++++-- 1 file changed, 69 insertions(+), 5 deletions(-) diff --git a/modules/ROOT/pages/errors/gql-errors.adoc b/modules/ROOT/pages/errors/gql-errors.adoc index e6854d59..418db547 100644 --- a/modules/ROOT/pages/errors/gql-errors.adoc +++ b/modules/ROOT/pages/errors/gql-errors.adoc @@ -237,7 +237,7 @@ Status description:: error: data exception - invalid entity type. Invalid input // === 22N28 -// Status description:: error: data exception - overflow error. The result of the operation `{ $operation }` has caused an overflow. +// Status description:: error: data exception - overflow error. The result of the operation `{ $operation }` has caused an overflow. // === 22N29 @@ -289,7 +289,7 @@ Status description:: error: data exception - invalid shortest path expression. S === 22N41 -Status description:: error: data exception - merge node uniqueness constraint violation. The 'MERGE' clause did not find a matching node `{ $variable }` and cannot create a new node due to conflicts with existing uniqueness constraints. +Status description:: error: data exception - merge node uniqueness constraint violation. The 'MERGE' clause did not find a matching node `{ $variable }` and cannot create a new node due to conflicts with existing uniqueness constraints. === 22N42 @@ -317,7 +317,7 @@ Status description:: error: data exception - invalid parallel runtime configurat === 22N49 -Status description:: error: data exception - CSV buffer size overflow. Cannot read a CSV field larger than the set buffer size. Ensure the field does not have an unterminated quote, or increase the buffer size via 'dbms.import.csv.buffer_size'. +Status description:: error: data exception - CSV buffer size overflow. Cannot read a CSV field larger than the set buffer size. Ensure the field does not have an unterminated quote, or increase the buffer size via 'dbms.import.csv.buffer_size'. === 22N51 @@ -481,7 +481,7 @@ Status description:: error: data exception - cannot convert alias local to remot // === 22N94 -// Status description:: error: data exception - invalid YIELD *. 'YIELD *' is not supported in this context. Explicitly specify which columns to yield. +// Status description:: error: data exception - invalid YIELD *. 'YIELD *' is not supported in this context. Explicitly specify which columns to yield. === 22N95 @@ -509,7 +509,7 @@ Status description:: error: data exception - invalid property based access contr // === 22NA1 -// Status description:: error: data exception - invalid property based access control rule involving non-commutative expressions. The property `{ $propKey }` must appear on the left hand side of the `{ $operation }` operator. +// Status description:: error: data exception - invalid property based access control rule involving non-commutative expressions. The property `{ $propKey }` must appear on the left hand side of the `{ $operation }` operator. // === 22NA2 @@ -739,6 +739,10 @@ Status description:: error: syntax error or access rule violation - invalid comm Status description:: error: syntax error or access rule violation - invalid input. Invalid input `{ $input }`, expected: `{ $valueList }`. +=== 42I13 + +Status description:: error: syntax error or access rule violation - invalid number of procedure or function arguments. The procedure or function call does not provide the required number of arguments; expected `{ $count1 }` but got `{ $count2 }`. The procedure or function `{ $procFun }` has the signature: `{ $sig }`. + === 42I18 Status description:: error: syntax error or access rule violation - invalid reference to implicitly grouped expressions. The aggregation column contains implicit grouping expressions referenced by the variables `{ $varList }`. Implicit grouping expressions are variables not explicitly declared as grouping keys. @@ -871,10 +875,19 @@ Status description:: error: syntax error or access rule violation - unaliased re Status description:: error: syntax error or access rule violation - single return column required. A `COLLECT` subquery must end with a single return column. +=== 42N24 + +Status description:: error: syntax error or access rule violation - missing `WITH`. A `WITH` clause is required between `{ $input1 }` and `{ $input2 }`. + + === 42N29 Status description:: error: syntax error or access rule violation - unbound variables in pattern expression. Pattern expressions are not allowed to introduce new variables: `{ $var }`. +=== 42N31 + +Status description:: error: syntax error or access rule violation - specified number out of range. Expected `{ $component }` to be `{ $valueType }` in the range `{ $lower }` to `{ $upper }` but found `{ $value }`. + === 42N39 Status description:: error: syntax error or access rule violation - incompatible return columns. All subqueries in a `UNION` clause must have the same return column names. @@ -895,6 +908,10 @@ Status description:: error: syntax error or access rule violation - invalid use Status description:: error: syntax error or access rule violation - function without required WHERE clause. The function `{ $fun }` requires a WHERE clause. +=== 42N71 + +Status description:: error: syntax error or access rule violation - incomplete query. A query must conclude with a `RETURN` clause, a `FINISH` clause, an update clause, a unit subquery call, or a procedure call without a `YIELD` clause. + === 42N75 Status description:: error: syntax error or access rule violation - invalid use of graph function. A call to the graph function `{ $fun }` is only allowed as the top-level argument of a `USE` clause. @@ -903,6 +920,10 @@ Status description:: error: syntax error or access rule violation - invalid use Status description:: error: syntax error or access rule violation - unfulfillable hints. The hint(s) `{ $hintAndedList }` cannot be fulfilled. +=== 42N77 + +Status description:: error: syntax error or access rule violation - missing hint predicate. The hint `{ $hint }` cannot be fulfilled. The query does not contain a compatible predicate for `{ $entityType }` on `{ $variable }`. + === 42N78 Status description:: error: syntax error or access rule violation - variable already bound. Node `{ $var }` has already been bound and cannot be modified by the `{ $clause }` clause. @@ -948,6 +969,10 @@ Status description:: error: syntax error or access rule violation - cannot modif Status description:: error: syntax error or access rule violation - cannot delete own user. Cannot delete the user record of the current user. +=== 42NA6 + +Status description:: info: invalid alias target. Aliases are not allowed to target composite databases. + === 42NFD Status description:: error: syntax error or access rule violation - credentials expired. Permission denied. The credentials you provided were valid, but must be changed before you can use this instance. @@ -1103,6 +1128,18 @@ Status description:: error: system configuration or operation exception - invali Status description:: error: system configuration or operation exception - invalid procedure or function name. Procedures and functions cannot be defined in the root namespace, or use a reserved namespace. Use the package name instead (e.g., org.example.com.`{ $procFun })`. +=== 51N18 + +Status description:: error: system configuration or operation exception - invalid method return type. The method `{ $procMethod }` has an invalid return type. Procedures must return a stream of records, where each record is of a defined concrete class. + + +=== 51N20 + +Status description:: error: system configuration or operation exception - cannot inject field. The field `{ $procField }` is not injectable. Ensure the field is marked as public and non-final. + +=== 51N21 + +Status description:: error: system configuration or operation exception - procedure registry is busy. The procedure registration failed because the procedure registry was busy. Try again. === 51N22 @@ -1153,6 +1190,13 @@ Status description:: error: system configuration or operation exception - write Status description:: error: system configuration or operation exception - database location changed. The location of `{ $db }` has changed while the transaction was running. +=== 51N36 + +Status description:: error: system configuration or operation exception - out of memory. There is not enough memory to perform the current task. + +=== 51N37 + +Status description:: error: system configuration or operation exception - stack overflow. There is not enough stack size to perform the current task. === 51N39 @@ -1232,11 +1276,18 @@ Status description:: error: system configuration or operation exception - cannot Status description:: error: system configuration or operation exception - cannot create additional database. Failed to create the database `{ $db }`. The limit of databases is reached. Either increase the limit using the config setting `{ $cfgSetting }` or drop a database. +=== 51N56 + +Status description:: error: system configuration or operation exception - topology out of range. The number of `{ $serverType }` seeding servers `{ $count1 }` is larger than the desired number of `{ $allocType }` allocations `{ $count2 }`. + === 51N57 Status description:: error: system configuration or operation exception - generic topology modification error. Unexpected error while picking allocations. { $msg } +=== 51N59 + +Status description:: error: system configuration or operation exception - internal resource exhaustion. The DBMS is unable to handle the request, please retry later or contact the system operator. More information is present in the logs. === 51N60 @@ -1283,6 +1334,10 @@ Procedure exceptions occur when there is an error in executing a procedure, such Status description:: error: procedure exception - procedure execution client error. Execution of the procedure `{ $proc }` failed due to a client error. +=== 52N03 + +Status description:: error: procedure exception - invalid procedure execution mode. Execution of the procedure `{ $proc }` failed due to an invalid specified execution mode `{ $procExeMode }`. + === 52N05 Status description:: error: procedure exception - cannot invoke procedure on a primary. Can't invoke procedure on this member because it is not a secondary for database `{ $db }`. @@ -1331,6 +1386,15 @@ Status description:: error: procedure exception - invalid procedure argument lis Status description:: error: procedure exception - quarantine change failed. Setting/removing the quarantine marker failed. +=== 52N18 + +Status description:: error: procedure exception - too many seeders. The number of seeding servers `{ $countSeeders }` is larger than the defined number of allocations `{ $countAllocs }`. + +=== 52N19 + +Status description:: error: procedure exception - no such seeder. The specified seeding server with id `{ $server }` was not found. Verify that the spelling is correct. + + === 52N23 Status description:: error: procedure exception - non-reloadable namespace. The following namespaces are not reloadable: `{ $namespaceList }` From 62745e290320afec63d6956b4cd43c40b621f5f4 Mon Sep 17 00:00:00 2001 From: Wilco <162103508+WilcoNeo@users.noreply.github.com> Date: Tue, 12 Nov 2024 09:25:49 +0100 Subject: [PATCH 34/45] Update message for GQL code 22N82 (#218) Code update: https://github.com/neo-technology/neo4j/pull/27993/files#diff-384932958624a4a10f07c7751fd5d9840d7a721fcc8e01d0b7e93aa1711d87c7R1768 --- modules/ROOT/pages/errors/gql-errors.adoc | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/modules/ROOT/pages/errors/gql-errors.adoc b/modules/ROOT/pages/errors/gql-errors.adoc index 418db547..56edfa1c 100644 --- a/modules/ROOT/pages/errors/gql-errors.adoc +++ b/modules/ROOT/pages/errors/gql-errors.adoc @@ -431,9 +431,9 @@ Status description:: error: data exception - property type verification failed. // Status description:: error: data exception - expression type unsupported here. Invalid input: `{ $exprType }` is not supported in `{ $context }`. -// === 22N82 +=== 22N82 -// Status description:: error: data exception - input contains invalid characters. Input `{ $input }` contains invalid characters for `{ $context }`. Allowed characters are `{ $characterRangeList }`. To use these characters, the input needs to be quoted using backticks. +Status description:: error: data exception - input contains invalid characters. Input `{ $input }` contains invalid characters for `{ $context }`. Special characters may require that the input is quoted using backticks. // === 22N83 From 2ad772382400281ffdaf02bf14bddcd01a8c98fc Mon Sep 17 00:00:00 2001 From: Isak Nilsson <143806924+anderson4j@users.noreply.github.com> Date: Thu, 14 Nov 2024 15:51:43 +0100 Subject: [PATCH 35/45] remove 22G12 and remake 22N38 (#216) Will un-draft this after changes to 22N38 are merged (Edit: Changes are merged) --- modules/ROOT/pages/errors/gql-errors.adoc | 2 +- modules/ROOT/pages/errors/index.adoc | 1 - 2 files changed, 1 insertion(+), 2 deletions(-) diff --git a/modules/ROOT/pages/errors/gql-errors.adoc b/modules/ROOT/pages/errors/gql-errors.adoc index 56edfa1c..d0f3610d 100644 --- a/modules/ROOT/pages/errors/gql-errors.adoc +++ b/modules/ROOT/pages/errors/gql-errors.adoc @@ -277,7 +277,7 @@ Status description:: error: data exception - invalid shortest path expression. S // === 22N38 -// Status description:: error: data exception - invalid function argument type. Expected argument to the `{ $fun }` function to be one of `{ $valueTypeList }`, but provided argument `{ $value }` is of type `{ $valueType }`. +// Status description:: error: data exception - invalid function argument. Invalid argument to the function `{ $fun }`. // === 22N39 diff --git a/modules/ROOT/pages/errors/index.adoc b/modules/ROOT/pages/errors/index.adoc index cc20f309..2d162cb9 100644 --- a/modules/ROOT/pages/errors/index.adoc +++ b/modules/ROOT/pages/errors/index.adoc @@ -55,7 +55,6 @@ // | 22G0Z | error: data exception - malformed path // | 22G10 | error: data exception - path data, right truncation // | 22G11 | error: data exception - reference value, referent deleted -// | 22G12 | error: data exception - invalid value type // | 22G13 | error: data exception - invalid group variable value // | 22G14 | error: data exception - incompatible temporal instant unit groups // | 25000 | error: invalid transaction state From b6f490245fc053b78880acfa1e99f7cae5dfec1f Mon Sep 17 00:00:00 2001 From: NataliaIvakina <82437520+NataliaIvakina@users.noreply.github.com> Date: Tue, 19 Nov 2024 09:34:13 +0100 Subject: [PATCH 36/45] Add the rest of implemented GQLSTATUS error codes (#220) Co-authored-by: Louise Berglund --- modules/ROOT/pages/errors/gql-errors.adoc | 146 +++++++++++++++++----- 1 file changed, 112 insertions(+), 34 deletions(-) diff --git a/modules/ROOT/pages/errors/gql-errors.adoc b/modules/ROOT/pages/errors/gql-errors.adoc index d0f3610d..27ddaa68 100644 --- a/modules/ROOT/pages/errors/gql-errors.adoc +++ b/modules/ROOT/pages/errors/gql-errors.adoc @@ -120,6 +120,18 @@ Status description:: error: data exception Status description:: error: data exception - numeric value out of range. The numeric value `{ $value }` is outside the required range. +=== 22007 + +Status description:: error: data exception - invalid date, time, or datetime format + +=== 22015 + +Status description:: error: data exception - interval field overflow + +=== 22G03 + +Status description:: error: data exception - invalid value type + === 22N00 Status description:: error: data exception - unsupported value. The provided value is unsupported and cannot be processed. @@ -167,13 +179,13 @@ Status description:: error: data exception - conflicting pre-parser combination. Status description:: error: data exception - invalid pre-parser option value. Invalid pre-parser option, specified `{ $input }` is not valid for option `{ $option }`. Valid options are: `{ $optionList }`. -// === 22N11 +=== 22N11 -// Status description:: error: data exception - invalid argument. Invalid argument: cannot process `{ $input }`. +Status description:: error: data exception - invalid argument. Invalid argument: cannot process `{ $input }`. -// === 22N12 +=== 22N12 -// Status description:: error: data exception - invalid date, time, or datetime format. Invalid argument: cannot process `{ $input }`. +Status description:: error: data exception - invalid date, time, or datetime format. Invalid argument: cannot process `{ $input }`. === 22N13 @@ -223,9 +235,9 @@ Status description:: error: data exception - invalid latitude value. Cannot crea Status description:: error: data exception - invalid coordinate arguments. Cannot construct a `{ $valueType }` from `{ $coordinates }`. -// === 22N25 +=== 22N25 -// Status description:: error: data exception - invalid temporal arguments. Cannot construct a `{ $valueType }` from `{ $temporal }`. +Status description:: error: data exception - invalid temporal arguments. Cannot construct a `{ $valueType }` from `{ $temporal }`. === 22N26 @@ -235,9 +247,9 @@ Status description:: error: data exception - unsupported rounding mode. Unknown Status description:: error: data exception - invalid entity type. Invalid input `{ $input }` for `{ $context }`. Expected to be `{ $valueTypeList }`. -// === 22N28 +=== 22N28 -// Status description:: error: data exception - overflow error. The result of the operation `{ $operation }` has caused an overflow. +Status description:: error: data exception - overflow error. The result of the operation `{ $operation }` has caused an overflow. // === 22N29 @@ -263,21 +275,21 @@ Status description:: error: data exception - invalid shortest path expression. S // Status description:: error: data exception - invalid use of aggregate function. Cannot use the `{ $fun }` function inside an aggregate function. -// === 22N35 +=== 22N35 -// Status description:: error: data exception - invalid date format. Cannot parse `{ $input }` as a DATE. Calendar dates need to be specified using the format 'YYYY-MM', while ordinal dates need to be specified using the format 'YYYY-DDD'. +Status description:: error: data exception - invalid date format. Cannot parse `{ $input }` as a DATE. Calendar dates need to be specified using the format 'YYYY-MM', while ordinal dates need to be specified using the format 'YYYY-DDD'. -// === 22N36 +=== 22N36 -// Status description:: error: data exception - invalid temporal format. Cannot parse `{ $input }` as a `{ $valueType }`. +Status description:: error: data exception - invalid temporal format. Cannot parse `{ $input }` as a `{ $valueType }`. -// === 22N37 +=== 22N37 -// Status description:: error: data exception - invalid coercion. Cannot coerce `{ $value }` to `{ $valueType }`. +Status description:: error: data exception - invalid coercion. Cannot coerce `{ $value }` to `{ $valueType }`. -// === 22N38 +=== 22N38 -// Status description:: error: data exception - invalid function argument. Invalid argument to the function `{ $fun }`. +Status description:: error: data exception - invalid function argument. Invalid argument to the function `{ $fun }`. // === 22N39 @@ -427,9 +439,9 @@ Status description:: error: data exception - property type verification failed. // Status description:: error: data exception - property uniqueness constraint violated. Property uniqueness constraint violated: `{ $reasons }`. -// === 22N81 +=== 22N81 -// Status description:: error: data exception - expression type unsupported here. Invalid input: `{ $exprType }` is not supported in `{ $context }`. +Status description:: error: data exception - expression type unsupported here. Invalid input: `{ $exprType }` is not supported in `{ $context }`. === 22N82 @@ -471,17 +483,17 @@ Status description:: error: data exception - property type unsupported in constr Status description:: error: data exception - cannot convert alias local to remote or remote to local. Failed to alter the specified database alias `{ $alias }`. Altering remote alias to a local alias or vice versa is not supported. Drop and recreate the alias instead. -// === 22N92 +=== 22N92 -// Status description:: error: data exception - missing RETURN. This query requires a RETURN clause. +Status description:: error: data exception - missing RETURN. This query requires a RETURN clause. -// === 22N93 +=== 22N93 -// Status description:: error: data exception - missing YIELD. A required YIELD clause is missing. +Status description:: error: data exception - missing YIELD. A required YIELD clause is missing. -// === 22N94 +=== 22N94 -// Status description:: error: data exception - invalid YIELD *. 'YIELD *' is not supported in this context. Explicitly specify which columns to yield. +Status description:: error: data exception - invalid YIELD *. 'YIELD *' is not supported in this context. Explicitly specify which columns to yield. === 22N95 @@ -543,9 +555,9 @@ Status description:: error: data exception - parsing JSON failure. Underlying er // Status description:: error: data exception - unexpected map entry. Invalid input. Unexpected key `{ $key }`, expected keys are `{ $listAllowedKeys }`. -// === 22NB0 +=== 22NB0 -// Status description:: error: data exception - invalid property based access control rule involving WHERE and IS NULL. The property value access rule pattern `{ $pred }` always evaluates to 'NULL'. Use `WHERE' syntax in combination with `IS NULL` instead. +Status description:: error: data exception - invalid property based access control rule involving WHERE and IS NULL. The property value access rule pattern `{ $pred }` always evaluates to 'NULL'. Use `WHERE` syntax in combination with `IS NULL` instead. === 22NB1 @@ -585,9 +597,9 @@ Status description:: error: invalid transaction state - transaction terminated o Status description:: error: invalid transaction state - transaction start failed. Failed to start transaction. See debug log for details. -=== 25N07 +// === 25N07 -Status description:: error: invalid transaction state - constituent transaction start failed. Failed to start constituent transaction. See debug log for details. +// Status description:: error: invalid transaction state - constituent transaction start failed. Failed to start constituent transaction. See debug log for details. === 25N08 @@ -679,9 +691,9 @@ Status description:: error: syntax error or access rule violation - invalid synt Status description:: error: syntax error or access rule violation - invalid reference -=== 42004 +// === 42004 -Status description:: error: syntax error or access rule violation - use of visually confusable identifiers +// Status description:: error: syntax error or access rule violation - use of visually confusable identifiers === 42006 @@ -735,6 +747,10 @@ Status description:: error: syntax error or access rule violation - invalid `FOR Status description:: error: syntax error or access rule violation - invalid comment. Failed to parse comment. A comment starting with '/\*' must also have a closing '*/'. +=== 42I05 + +Status description:: error: syntax error or access rule violation - invalid FIELDTERMINATOR. The FIELDTERMINATOR specified for LOAD CSV can only be one character wide. The FIELDTERMINATOR specified for LOAD CSV can only be one character wide. + === 42I06 Status description:: error: syntax error or access rule violation - invalid input. Invalid input `{ $input }`, expected: `{ $valueList }`. @@ -777,14 +793,26 @@ Status description:: error: syntax error or access rule violation - invalid use Status description:: error: syntax error or access rule violation - invalid use of `UNION` and `UNION ALL`. `UNION` and `UNION ALL` cannot be combined. +=== 42I45 + +Status description:: error: syntax error or access rule violation - invalid use of multiple path patterns. Multiple path patterns cannot be used in the same clause in combination with a selective path selector. `{ $action }` + === 42I47 Status description:: error: syntax error or access rule violation - parser error. Parser Error: `{ $msg }`. +=== 42I48 + +Status description:: error: syntax error or access rule violation - invalid use of a subquery in MERGE. Subqueries are not allowed in a MERGE clause. + === 42I50 Status description:: error: syntax error or access rule violation - token name too long. Invalid input `{ $input }..`. A `{ $tokenType }` name cannot be longer than `{ $maxTokenLength }`. +=== 42I51 + +Status description:: info: invalid call signature. The procedure or function `{ $procFun }` must have the signature: `{ $sig }`. + === 42N00 Status description:: error: syntax error or access rule violation - no such database. The database `{ $db }` was not found. Verify that the spelling is correct. @@ -892,6 +920,14 @@ Status description:: error: syntax error or access rule violation - specified nu Status description:: error: syntax error or access rule violation - incompatible return columns. All subqueries in a `UNION` clause must have the same return column names. +=== 42N40 + +Status description:: error: syntax error or access rule violation - single relationship pattern required. The `{ $fun }` function must contain one relationship pattern. + +=== 42N42 + +Status description:: error: syntax error or access rule violation - unsupported sub-path binding. Sub-path assignment is not supported. + === 42N45 Status description:: error: syntax error or access rule violation - unexpected end of input. Unexpected end of input, expected 'CYPHER', 'EXPLAIN', 'PROFILE' or a query. @@ -900,6 +936,10 @@ Status description:: error: syntax error or access rule violation - unexpected e Status description:: error: syntax error or access rule violation - unsupported normal form. Unknown Normal Form: `{ $input }`. +=== 42N51 + +Status description:: error: syntax error or access rule violation - invalid parameter. Invalid parameter `{ $param }`. + === 42N57 Status description:: error: syntax error or access rule violation - invalid use of data-modifications in expressions. `{ $expr }` cannot contain any updating clauses. @@ -912,6 +952,14 @@ Status description:: error: syntax error or access rule violation - function wit Status description:: error: syntax error or access rule violation - incomplete query. A query must conclude with a `RETURN` clause, a `FINISH` clause, an update clause, a unit subquery call, or a procedure call without a `YIELD` clause. +=== 42N73 + +Status description:: error: syntax error or access rule violation - invalid placement of USE clause. The USE clause must be the first clause of a query or an operand to '... UNION ...' . In a CALL sub-query, it can also be the second clause if the first clause is an importing WITH. + +=== 42N74 + +Status description:: error: syntax error or access rule violation - invalid nested USE clause. Failed to access `{ $db1 }` and `{ $db2 }`. Child USE clauses must target the same graph as their parent query. Run in separate (sub)queries instead. + === 42N75 Status description:: error: syntax error or access rule violation - invalid use of graph function. A call to the graph function `{ $fun }` is only allowed as the top-level argument of a `USE` clause. @@ -969,10 +1017,18 @@ Status description:: error: syntax error or access rule violation - cannot modif Status description:: error: syntax error or access rule violation - cannot delete own user. Cannot delete the user record of the current user. +=== 42NA5 + +Status description:: info: accessing multiple graphs only supported on composite databases. Accessing multiple graphs in the same query is only supported on composite databases. Connect to a composite database with the desired constituents. + === 42NA6 Status description:: info: invalid alias target. Aliases are not allowed to target composite databases. +=== 42NA7 + +Status description:: info: referenced database not found. No database is corresponding to `{ $db }`. Verify that the elementId is correct. + === 42NFD Status description:: error: syntax error or access rule violation - credentials expired. Permission denied. The credentials you provided were valid, but must be changed before you can use this instance. @@ -998,7 +1054,7 @@ Status description:: error: general processing exception - internal error. Inter Status description:: error: general processing exception - deadlock detected. Deadlock detected while trying to acquire locks. See log for more details. -== 50N06 +=== 50N06 Status description:: error: general processing exception - remote execution client error. Remote execution failed. See cause for more details. @@ -1012,18 +1068,17 @@ Status description:: error: general processing exception - invalid server state === 50N11 - Status description:: error: general processing exception - constraint creation failed. Unable to create `{ $constrDescrOrName }`. === 50N12 Status description:: error: general processing exception - constraint drop failed. Unable to drop `{ $constrDescrOrName }`. -== 50N16 +=== 50N16 Status description:: error: general processing exception - remote execution transient error. Remote execution failed. See cause for more details. -== 50N17 +=== 50N17 Status description:: error: general processing exception - remote execution database error. Remote execution failed. See cause for more details. @@ -1036,6 +1091,7 @@ Status description:: error: general processing exception - unexpected error. Une 50N42 is the default GQLSTATUS code for exceptions without a GQL object. For more information, see link:https://neo4j.com/docs/operations-manual/current/monitoring/logging/#_use_json_format_for_the_query_log[Operations Manual -> Use JSON format for the query log]. ==== + == System configuration or operation exception System configuration or operation exception errors occur when there is an error in the system configuration or operation, such as procedure registration failure, a missing class field annotation, an unsupported injectable component type, duplicate field names, invalid map key type, etc. @@ -1198,6 +1254,10 @@ Status description:: error: system configuration or operation exception - out of Status description:: error: system configuration or operation exception - stack overflow. There is not enough stack size to perform the current task. +=== 51N38 + +Status description:: error: system configuration or operation exception - failed to acquire execution thread. There are insufficient threads available for executing the current task. + === 51N39 Status description:: error: system configuration or operation exception - raft log corrupted. Expected set of files not found on disk. Please restore from backup. @@ -1313,6 +1373,9 @@ Status description:: error: system configuration or operation exception - vector Status description:: error: system configuration or operation exception - resource exhaustion. Insufficient resources to complete the request. +=== 51N68 + +Status description:: error: system configuration or operation exception - CDC is disabled for this database. Change Data Capture is not currently enabled for this database. === 51N69 @@ -1418,3 +1481,18 @@ Status description:: error: procedure exception - wrong database. Change identif === 52N32 Status description:: error: procedure exception - invalid sequence number. Change identifier `{ $param1 }` has an invalid sequence number `{ $param2 }`. + +=== 52N33 + +Status description:: error: procedure exception - procedure invocation failed. Failed to invoke procedure/function `{ $sig }` caused by: `{ $msg }`. + +=== 52N34 + +Status description:: error: procedure exception - procedure sandboxed. `{ $sig }` is unavailable because it is sandboxed. Sandboxing is controlled by the dbms.security.procedures.unrestricted setting. Only un-restrict procedures you can trust with access to database internals. + +=== 52N35 + +Status description:: error: procedure exception - procedure compilation failed. Failed to compile procedure/function defined in `{ $procClass }`: `{ $msg }` + + + From 715218ec8f721b997edde6d0d431dda0683ebe48 Mon Sep 17 00:00:00 2001 From: Neil Dewhurst Date: Thu, 21 Nov 2024 17:18:24 +0000 Subject: [PATCH 37/45] add docs-publish workflow (#221) --- .github/workflows/docs-publish.yml | 56 ++++++++++++++++++++++++++++++ 1 file changed, 56 insertions(+) create mode 100644 .github/workflows/docs-publish.yml diff --git a/.github/workflows/docs-publish.yml b/.github/workflows/docs-publish.yml new file mode 100644 index 00000000..b4d31306 --- /dev/null +++ b/.github/workflows/docs-publish.yml @@ -0,0 +1,56 @@ + +name: "Publish Branch" + +on: + push: + branches: + - 'dev' + - '5.x' + workflow_dispatch: + # schedule: + # - cron: '00 16 * * *' + +env: + PUBLISH_TO: ${{ github.ref == 'refs/heads/5.x' && 'prod' || 'dev' }} + +jobs: + + # Generate HTML + docs-build: + uses: neo4j/docs-tools/.github/workflows/reusable-docs-build.yml@v1.1.2 + with: + deploy-id: 0 + retain-artifacts: 14 + + # Parse the json log output from the HTML build, and output warnings and errors as annotations + # Optionally, fail the build if there are warnings or errors + # By default, the job fails if there are errors, passes if there are warnings only. + docs-verify: + needs: docs-build + uses: neo4j/docs-tools/.github/workflows/reusable-docs-verify.yml@v1.1.2 + with: + failOnWarnings: true + + trigger-publish: + needs: docs-verify + runs-on: ubuntu-latest + + steps: + - name: Trigger Publish + uses: peter-evans/repository-dispatch@ff45666b9427631e3450c54a1bcbee4d9ff4d7c0 + with: + token: ${{ secrets.DOCS_DISPATCH_TOKEN }} + repository: neo4j/docs-publish + event-type: ${{ github.event.repository.name }} + client-payload: |- + { + "org": "${{ github.repository_owner }}", + "repo": "${{ github.event.repository.name }}", + "run_id": "${{ github.run_id }}", + "branch": "${{ github.ref_name }}", + "args": "--dryrun", + "publish_env": "${{ env.PUBLISH_TO }}", + "docsets": [ + "status-codes" + ] + } From bc9b2e253b101e9f88c33d9f1d983afbbe21f102 Mon Sep 17 00:00:00 2001 From: Neil Dewhurst Date: Fri, 22 Nov 2024 12:19:21 +0000 Subject: [PATCH 38/45] Use publish-verify script in publish build (#222) --- .github/workflows/docs-publish.yml | 3 ++- package.json | 2 +- 2 files changed, 3 insertions(+), 2 deletions(-) diff --git a/.github/workflows/docs-publish.yml b/.github/workflows/docs-publish.yml index b4d31306..36e4e76f 100644 --- a/.github/workflows/docs-publish.yml +++ b/.github/workflows/docs-publish.yml @@ -20,7 +20,8 @@ jobs: uses: neo4j/docs-tools/.github/workflows/reusable-docs-build.yml@v1.1.2 with: deploy-id: 0 - retain-artifacts: 14 + retain-artifacts: 28 + package-script: 'publish-verify' # Parse the json log output from the HTML build, and output warnings and errors as annotations # Optionally, fail the build if there are warnings or errors diff --git a/package.json b/package.json index 16f39e43..0c41faeb 100644 --- a/package.json +++ b/package.json @@ -9,7 +9,7 @@ "serve": "node server.js", "build": "antora --stacktrace preview.yml", "build-verify": "antora --stacktrace --fetch preview.yml --log-format=json --log-level=info --log-file ./build/log/log.json", - "publish-verify": "antora --stacktrace --fetch publish.yml --log-format=json --log-file ./build/log/log.json" + "publish-verify": "antora --stacktrace --fetch publish.yml --log-format=json --log-level=info --log-file ./build/log/log.json" }, "repository": { "type": "git", From e97a31af16f52f434841d67c8907ed94419ccd1f Mon Sep 17 00:00:00 2001 From: Louise Berglund Date: Tue, 26 Nov 2024 10:17:40 +0100 Subject: [PATCH 39/45] Update status description of 52N05 (#225) Changes in product here: https://github.com/neo-technology/neo4j/pull/28377 --------- Co-authored-by: Reneta Popova --- modules/ROOT/pages/errors/gql-errors.adoc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/modules/ROOT/pages/errors/gql-errors.adoc b/modules/ROOT/pages/errors/gql-errors.adoc index 27ddaa68..6a2810be 100644 --- a/modules/ROOT/pages/errors/gql-errors.adoc +++ b/modules/ROOT/pages/errors/gql-errors.adoc @@ -1403,7 +1403,7 @@ Status description:: error: procedure exception - invalid procedure execution mo === 52N05 -Status description:: error: procedure exception - cannot invoke procedure on a primary. Can't invoke procedure on this member because it is not a secondary for database `{ $db }`. +Status description:: error: procedure exception - must invoke procedure on secondary. Cannot invoke procedure on this member because it is not a secondary for the database `{ $db }`. === 52N06 From 0076963a0ec477334b6b6d78f57eb6f0588fa0f0 Mon Sep 17 00:00:00 2001 From: NataliaIvakina <82437520+NataliaIvakina@users.noreply.github.com> Date: Wed, 27 Nov 2024 08:54:15 +0100 Subject: [PATCH 40/45] Clarify situation around the UNION reordering deprecation (#224) Supersedes #219 --------- Co-authored-by: Reneta Popova --- .../notifications/all-notifications.adoc | 29 +++++-------------- 1 file changed, 7 insertions(+), 22 deletions(-) diff --git a/modules/ROOT/pages/notifications/all-notifications.adoc b/modules/ROOT/pages/notifications/all-notifications.adoc index f7c0a2f2..46315143 100644 --- a/modules/ROOT/pages/notifications/all-notifications.adoc +++ b/modules/ROOT/pages/notifications/all-notifications.adoc @@ -1373,7 +1373,7 @@ a| To continue using it, escape the identifier by adding backticks around the identifier `%s`. - The character with the Unicode representation `%s` is deprecated for unescaped identifiers and will not be supported in the future. To continue using it, escape the identifier by adding backticks around the identifier `%s`. -- All subqueries in a UNION [ALL] should have the same ordering for the return columns. +- label:new[Valid for Neo4j 5.5-5.25] All subqueries in a UNION [ALL] should have the same ordering for the return columns. Using differently ordered return items in a UNION [ALL] clause is deprecated and will be removed in a future version. - Databases and aliases with unescaped `.` are deprecated unless to indicate that they belong to a composite database. Names containing `.` should be escaped. (`%s`) @@ -1458,17 +1458,6 @@ Description of the returned code:: All subqueries in a UNION [ALL] should have the same ordering for the return columns. Using differently ordered return items in a UNION [ALL] clause is deprecated and will be removed in a future version. -Suggestions for improvement:: -Use the same order for the return columns in all subqueries combined by a `UNION` clause. - -+ -[source,cypher] ----- -RETURN 'val' as one, 'val' as two -UNION -RETURN 'val' as one, 'val' as two ----- - ====== [.include-with-GQLSTATUS-code] ====== @@ -1489,19 +1478,15 @@ warn: feature deprecated. All subqueries in a UNION [ALL] should have the same ordering for the return columns. Using differently ordered return items in a UNION [ALL] clause is deprecated and will be removed in a future version. -Suggestions for improvement:: -Use the same order for the return columns in all subqueries combined by a `UNION` clause. - -+ -[source,cypher] ----- -RETURN 'val' as one, 'val' as two -UNION -RETURN 'val' as one, 'val' as two ----- ====== ===== +[NOTE] +==== +Using differently ordered return items in a UNION [ALL] clause is deprecated in versions 5.5 to 5.25. +However, starting from version 5.26, the deprecation has been withdrawn following cost-benefit analysis and valuable user feedback. +==== + .Using the Unicode \u0085 in an unescaped identifier [.tabbed-example] ===== From 2b83650bbc98bfc7e6abf3aa5ef501ae991b6d42 Mon Sep 17 00:00:00 2001 From: Reneta Popova Date: Fri, 29 Nov 2024 11:54:06 +0000 Subject: [PATCH 41/45] GQL framework (#212) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Co-authored-by: Louise Berglund Co-authored-by: Antonio Barcélos Co-authored-by: Hannes Voigt <30618026+hvub@users.noreply.github.com> --- README.adoc | 2 +- antora.yml | 2 +- modules/ROOT/content-nav.adoc | 2 +- modules/ROOT/pages/changelogs.adoc | 5 + modules/ROOT/pages/errors/all-errors.adoc | 29 +- modules/ROOT/pages/errors/gql-errors.adoc | 4 +- modules/ROOT/pages/errors/index.adoc | 294 +++- modules/ROOT/pages/index.adoc | 67 +- .../notifications/all-notifications.adoc | 1495 ++++++++--------- modules/ROOT/pages/notifications/index.adoc | 92 +- 10 files changed, 1042 insertions(+), 950 deletions(-) diff --git a/README.adoc b/README.adoc index 8a1a1fd5..e4c11f22 100644 --- a/README.adoc +++ b/README.adoc @@ -2,7 +2,7 @@ = docs-status-codes -This repository contains the AsciiDoc and other sources to build the link:{docs-uri}/status-codes[Neo4j Status Codes]. +This repository contains the AsciiDoc and other sources to build the link:{docs-uri}/status-codes[Status Codes for Errors & Notifications]. [[local-build]] == Installation diff --git a/antora.yml b/antora.yml index adc29f5f..f2cce874 100644 --- a/antora.yml +++ b/antora.yml @@ -1,5 +1,5 @@ name: status-codes -title: Status Codes +title: Status Codes for Errors & Notifications version: '5' start_page: ROOT:index.adoc nav: diff --git a/modules/ROOT/content-nav.adoc b/modules/ROOT/content-nav.adoc index 0f0c9656..cfc4736f 100644 --- a/modules/ROOT/content-nav.adoc +++ b/modules/ROOT/content-nav.adoc @@ -1,7 +1,7 @@ * xref:index.adoc[] * xref:errors/index.adoc[] -** xref:errors/all-errors.adoc[] ** xref:errors/gql-errors.adoc[] +** xref:errors/all-errors.adoc[] * xref:notifications/index.adoc[] ** xref:notifications/all-notifications.adoc[] * xref:changelogs.adoc[] diff --git a/modules/ROOT/pages/changelogs.adoc b/modules/ROOT/pages/changelogs.adoc index dc20db84..64aba7d4 100644 --- a/modules/ROOT/pages/changelogs.adoc +++ b/modules/ROOT/pages/changelogs.adoc @@ -1,6 +1,11 @@ :description: This page lists all changes to status codes per Neo4j version. = Changes to status codes per Neo4j version +== Neo4j 5.25 + +Starting from 5.25, the query log includes the GQL error information under the JSON object `errorInfo`. +For more information, see link:https://neo4j.com/docs/operations-manual/current/monitoring/logging/#gql-error-information[Operations Manual -> GQL error information]. + == Neo4j 5.24 **New:** diff --git a/modules/ROOT/pages/errors/all-errors.adoc b/modules/ROOT/pages/errors/all-errors.adoc index 28942cd0..8e119cc3 100644 --- a/modules/ROOT/pages/errors/all-errors.adoc +++ b/modules/ROOT/pages/errors/all-errors.adoc @@ -1,8 +1,27 @@ -:description: The Neo4j error codes for Neo4j version {neo4j-version}. +:description: The error codes for Neo4j 5. [[neo4j-errors]] -= List of all server error codes += List of Neo4j error codes + +This page lists the current Neo4j error codes, which which are returned along side xref:errors/gql-errors.adoc[GQLSTATUS error codes]. + +Error codes are returned by the server when the execution of a query fails. +They always have the severity level `ERROR`. +Errors are grouped based on the type of the Neo4j code: + +Client errors:: +These errors are caused by the client (user input or user application) and are usually related to the request itself. +The Neo4j codes for client errors have the prefix `Neo.ClientError`. + +Transient errors:: +These errors are detected by the server and are usually related to some kind of database unavailability, such as limits reached, out-of-memory, timeouts, etc. +The error can be temporary, and the request could succeed if retried. +The Neo4j codes for transient errors have the prefix `Neo.TransientError`. + +Database errors:: +These errors are caused by the database and are usually related to the database state. +The Neo4j codes for database errors have the prefix `Neo.DatabaseError`. This page contains lists of all Neo4j errors, grouped by type. @@ -13,7 +32,7 @@ This is a complete list of all client errors Neo4j may return, and what they mea [options="header", cols="<1m,<1"] |=== -| Neo4j status code +| Neo4j code | Description | Neo.ClientError.ChangeDataCapture.InvalidIdentifier @@ -279,7 +298,7 @@ This is a complete list of all transient errors Neo4j may return, and what they [options="header", cols="<1m,<1"] |=== -| Neo4j status code +| Neo4j code | Description | Neo.TransientError.ChangeDataCapture.FutureIdentifier @@ -386,7 +405,7 @@ This is a complete list of all database errors Neo4j may return, and what they m [options="header", cols="<1m,<1"] |=== -| Neo4j status code +| Neo4j code | Description | Neo.DatabaseError.ChangeDataCapture.Disabled diff --git a/modules/ROOT/pages/errors/gql-errors.adoc b/modules/ROOT/pages/errors/gql-errors.adoc index 6a2810be..2a56cc7e 100644 --- a/modules/ROOT/pages/errors/gql-errors.adoc +++ b/modules/ROOT/pages/errors/gql-errors.adoc @@ -1,7 +1,7 @@ :description: This section describes the GQLSTATUS errors that Neo4j can return, grouped by category, and an example of when they can occur. [[neo4j-gqlstatus-errors]] -= List of all GQLSTATUS server error codes += List of GQLSTATUS error codes //The following page provides an overview of all server errors in Neo4j, along with some scenarios and their possible solutions. The following page provides an overview of all GQLSTATUS server error codes in Neo4j. @@ -9,7 +9,7 @@ All errors in Neo4j have severity level `ERROR`. == Connection exceptions -Connection exceptions occur when the client is unable to connect to the server for various reasons such as network issues, server-side routing being disabled, or the database being unavailable, etc. +Connection exceptions occur when the client (e.g. Browser/Bloom/Cypher Shell) is unable to connect to the server for various reasons such as network issues, server-side routing being disabled, or the database being unavailable, etc. === 08000 diff --git a/modules/ROOT/pages/errors/index.adoc b/modules/ROOT/pages/errors/index.adoc index 2d162cb9..c9bc77b9 100644 --- a/modules/ROOT/pages/errors/index.adoc +++ b/modules/ROOT/pages/errors/index.adoc @@ -1,91 +1,211 @@ -:description: The Neo4j error codes for Neo4j version. +:description: This page describes the structure of the error objects, the error codes, and how to interpret them. [[neo4j-errors]] = Server errors -// [role=label--version-5.25] -// [[gqlstatus-error-object]] -// == GQL-status error object - -// [[gqlstatus-standard-defined-codes]] -// === Standard-defined GQLSTATUS codes - -// .Standard-defined GQLSTATUS error codes -// [options="header", cols="<1s,<4"] -// [%collapsible] -// |=== -// |GQLSTATUS code | StatusDescription -// | 08000 | error: connection exception -// | 08007 | error: connection exception - transaction resolution unknown -// | 22000 | error: data exception -// | 22001 | error: data exception - string data, right truncation -// | 22003 | error: data exception - numeric value out of range. The numeric value `$value` is outside the required range. -// | 22004 | error: data exception - null value not allowed -// | 22007 | error: data exception - invalid date, time, or datetime format -// | 22008 | error: data exception - datetime field overflow -// | 22011 | error: data exception - substring error -// | 22012 | error: data exception - division by zero -// | 22015 | error: data exception - interval field overflow -// | 22018 | error: data exception - invalid character value for cast. The character value `$value` is an invalid argument for the specified cast. -// | 2201E | error: data exception - invalid argument for natural logarithm. The value `$value` is an invalid argument for the specified natural logarithm. -// | 2201F | error: data exception - invalid argument for power function. The value `$value` is an invalid argument for the specified power function. -// | 22027 | error: data exception - trim error -// | 2202F | error: data exception - array data, right truncation -// | 22G02 | error: data exception - negative limit value -// | 22G03 | error: data exception - invalid value type -// | 22G04 | error: data exception - values not comparable -// | 22G05 | error: data exception - invalid date, time, or datetime function field name -// | 22G06 | error: data exception - invalid datetime function value -// | 22G07 | error: data exception - invalid duration function field name -// | 22G0B | error: data exception - list data, right truncation -// | 22G0C | error: data exception - list element error -// | 22G0F | error: data exception - invalid number of paths or groups -// | 22G0H | error: data exception - invalid duration format. The duration format `$format` is invalid. -// | 22G0M | error: data exception - multiple assignments to a graph element property -// | 22G0N | error: data exception - number of node labels below supported minimum -// | 22G0P | error: data exception - number of node labels exceeds supported maximum -// | 22G0Q | error: data exception - number of edge labels below supported minimum -// | 22G0R | error: data exception - number of edge labels exceeds supported maximum -// | 22G0S | error: data exception - number of node properties exceeds supported maximum -// | 22G0T | error: data exception - number of edge properties exceeds supported maximum -// | 22G0U | error: data exception - record fields do not match -// | 22G0V | error: data exception - reference value, invalid base type -// | 22G0W | error: data exception - reference value, invalid constrained type -// | 22G0X | error: data exception - record data, field unassignable -// | 22G0Y | error: data exception - record data, field missing -// | 22G0Z | error: data exception - malformed path -// | 22G10 | error: data exception - path data, right truncation -// | 22G11 | error: data exception - reference value, referent deleted -// | 22G13 | error: data exception - invalid group variable value -// | 22G14 | error: data exception - incompatible temporal instant unit groups -// | 25000 | error: invalid transaction state -// | 25G01 | error: invalid transaction state - active GQL-transaction -// | 25G02 | error: invalid transaction state - catalog and data statement mixing not supported -// | 25G03 | error: invalid transaction state - read-only GQL-transaction -// | 25G04 | error: invalid transaction state - accessing multiple graphs not supported -// | 2D000 | error: invalid transaction termination -// | 40000 | error: transaction rollback -// | 40003 | error: transaction rollback - statement completion unknown -// | 42000 | error: syntax error or access rule violation -// | 42001 | error: syntax error or access rule violation - invalid syntax -// | 42002 | error: syntax error or access rule violation - invalid reference -// | 42004 | error: syntax error or access rule violation - use of visually confusable identifiers -// | 42006 | error: syntax error or access rule violation - number of edge labels below supported minimum -// | 42007 | error: syntax error or access rule violation - number of edge labels exceeds supported maximum -// | 42008 | error: syntax error or access rule violation - number of edge properties exceeds supported maximum -// | 42009 | error: syntax error or access rule violation - number of node labels below supported minimum -// | 42010 | error: syntax error or access rule violation - number of node labels exceeds supported maximum -// | 42011 | error: syntax error or access rule violation - number of node properties exceeds supported maximum -// | 42012 | error: syntax error or access rule violation - number of node type key labels below supported minimum -// | 42013 | error: syntax error or access rule violation - number of node type key labels exceeds supported maximum -// | 42014 | error: syntax error or access rule violation - number of edge type key labels below supported minimum -// | 42015 | error: syntax error or access rule violation - number of edge type key labels exceeds supported maximum -// | G1000 | error: dependent object error -// | G1001 | error: dependent object error - edges still exist -// | G1002 | error: dependent object error - endpoint node is deleted -// | G1003 | error: dependent object error - endpoint node not in current working graph -// | G2000 | error: graph type violation -// |=== - -// [[gqlstatus-neo4j-defined-codes]] -// === Neo4j-defined GQLSTATUS error codes +Neo4j returns a server error to indicate that the outcome of a Cypher query or command execution is unsuccessful. +The driver receives these erors and sends them to the Neo4j tools (e.g. Browser, Bloom, Cypher Shell) or the user application, which display them to the user. + +Starting from version 5.26, the Neo4j error codes have an additional GQL-status object along with the Neo4j exception that provides information about the status of a Cypher query or command execution in compliance with the link:https://www.iso.org/standard/76120.html[ISO/IEC 39075:2024(en) - Information technology - Database languages - GQL Standard]. +This additional GQL-status object is also displayed in the query log from Neo4j 5.25 onwards. +For more information, see link:https://neo4j.com/docs/operations-manual/current/monitoring/logging/#gql-error-information[Operations Manual -> GQL error information]. + +[NOTE] +==== +The default GQLSTATUS code 50N42 is returned when an exception does not have a GQL-status object. +Starting from Neo4j 5.25, we started adding GQL objects to exceptions. +Therefore, you can expect many 50N42 codes during this transition period. +However, it is important not to rely on this default code, as future Neo4j versions might change it by adding an appropriate GQL object to the exception. +Additionally, GQL codes for external procedures are not yet stable. +==== + +This page describes the GQL-status and the Neo4j-status object frameworks for errors, their structure, the objects they provide for errors, and how to interpret them. +It also explains the error internals and the server-driver compatibility for both the GQLSTATUS and errors. + +[role=label--version-5.25] +[[gqlstatus-error-object]] +== GQL-status error object + +In the GQL-status object framework, when a user executes a query to the server, it always produces a result known as the _execution outcome_. +If an error occurs during execution, the outcome is recorded as an exception condition, indicating a failed outcome with no result. +The execution outcome for errors is represented as a list of GQL-status objects with a failed outcome, which are organized according to the following precedence rules: + +. Every exception that results in a transaction rollback takes precedence over other exceptions. +. Every exception takes precedence over any completion condition. +For completion conditions, see the xref:notifications/index.adoc#gqlstatus-notification-object[GQL-status notification object]. + +The GQL-status object also includes Neo4j-specific information, such as severity level and error classification. + +Each GQL-status object consists of the following fields: + +.GQLSTATUS error object +[cols="<1s,<4"] +|=== +|GQLSTATUS code +a| A 5-character string that is the concatenation of a 2-character class code followed by a 3-character subclass code, which identifies the condition of the error. +|StatusDescription +a| A human-readable description of the GQLSTATUS, which consists of a condition, a subcondition, and an optional additional text about the condition. +The condition and subcondition are textual representations of the class and subclass codes, respectively. +The format is `error: condition - subcondition. AdditionalInfo`. +The subcondition for the subclass 000 is empty. +| DiagnosticRecord +a| Extra information about the status, given as key-value pairs, both on the server and driver side. +To retrieve the full diagnostic record, you can use the `diagnosticRecord()` on the server side or the corresponding method on the driver sides. +Additional helper methods are exposed for some useful fields. +[cols="<1s,<4"] +!=== +! Field ! Description +! `OPERATION` ! The operation that the error is related to. Always defaults to empty. +! `OPERATION_CODE` ! The operation code that the error is related to. Always defaults to `0`. +! `CURRENT_SCHEMA` ! The current schema that the error is related to. Always defaults to `/`. +//! `_severity` a! The Neo4j severity level of the error, which is always `ERROR`. +!`_classification` ! The Neo4j error classification, which can be `CLIENT_ERROR`, `TRANSIENT_ERROR`, or `DATABASE_ERROR`. +! `_position` ! (Optional) The position, given by offset, line and column, where the error is relevant in the query text. +//! `_status_parameters`! A map that contains all variable parts of the status description. +!=== +|=== + +A GQL-status error object can also contain an optional GQL-status object that represents the cause of the error and is used to provide additional, more specific diagnostic information. + +[[gqlstatus-neo4j-defined-codes]] +== Classes of GQLSTATUS error codes + +The GQLSTATUS codes are divided into classes and subclasses. +The class code is a 2-character string that indicates the general condition of the status, such as connection exception, data exception, etc. +The subclass code is a 3-character string that provides more detailed information about the condition. +//Currently, the Neo4j-defined subclasses start with N or I, followed by a 2-digit number, while the standard-defined subclasses start with 0-4 or A, B, C, D, E, F, G, or H and a 2-digit number. + +The following table lists the GQLSTATUS classes and their meanings: + +.GQLSTATUS code classes +[frame="topbot", stripes=odd, grid="cols", cols="<1s,<4"] +|=== +|Class +|*Condition* + +| 08 +| connection exception +| 22 +| data exception +| 25 +| invalid transaction state +| 40 +| transaction rollback +| 42 +| syntax error or access rule violation +| 50 +| general processing exception +| 51 +| system configuration or operation exception +| 52 +| procedure exception +|=== + +[[neo4j-error-object]] +== Neo4j-status error object + +The Neo4j-status object for errors contains diagnostic information representing the *unsuccessful* outcome of a Cypher query or command execution, including severity, status code, category, description, message, and position in the query text where the error is relevant. +Depending on the application, some of the fields from the error object might not be visible. + +The error object consists of the following fields: + +.Neo4j error object +[cols="<1s,<4"] +|=== +|Neo4j code +a|The Neo4j code in the form of `Neo.[Type].[SubType].[Name]`. +|Description +a|The description of the specific error. +|Message +a|The error message. +|Severity level +a|`ERROR` +|Category +a|The category of the error. +Available categories are `CLIENT_ERROR`, `TRANSIENT_ERROR`, and `DATABASE_ERROR`. +|Position +a|(Optional) The position, given by offset, line and column, where the error is relevant in the query text. +|=== + +For more information, see the xref:errors/all-errors.adoc[List of Neo4j error codes]. + +[[error-types]] +== Types of server errors + +The fact that an error is returned by the server does not always mean that it is a fatal error. +Status codes can also indicate transient problems that may go away if you retry the request. +The server error group determines the effect on the transaction. + +.Server error types +[options="header", cols="<1m,<2,<1"] +|=== + +| Type +| Description +| Effect on the transaction + +| ClientError +| These errors are caused by the client (user input or user application) and are usually related to the request itself. +Changing the request might yield a successful outcome. + Neo4j codes have the prefix `Neo.ClientError`, while the GQLSTATUS codes have `ErrorClassification` of type `CLIENT_ERROR`. +| Rollback + +| TransientError +| These errors are detected by the server and are usually related to some kind of database unavailability, such as limits reached, out-of-memory, timeouts, etc. +The error can be temporary, therefore retrying later might yield a successful outcome. +Neo4j codes have the prefix `Neo.TransientError`, while the GQLSTATUS codes have `ErrorClassification` of type `TRANSIENT_ERROR`. +| Rollback + +| DatabaseError +| These errors are caused by the database and are usually related to the database state and mean that the database failed to service the request. +Neo4j codes have the prefix `Neo.DatabaseError`, while the GQLSTATUS codes have `ErrorClassification` of type `DATABASE_ERROR`. +| Rollback + +// | Database configuration errors +// | Something a DBA can fix +// | Rollback +|=== + +[[error-internals]] +== Error internals + +Neo4j supports server errors in the form of Java exceptions. +Most of these implement the `HasStatus` interface, which means they have a status code in addition to the exception message. + +On the server side, an exception contains normal Java constructors and methods like `getMessage()`, `getCause()`, etc., and additionally the `status()` method from the `HasStatus` API, which returns the status code. + +The exceptions also get new compulsary fields for `gqlStatus`, `statusDescription`, `diagnosticRecord`, and an optional field for `cause`. +The cause field in turn has its own GQLSTATUS, status description, diagnostic record, and message. + +The `getMessage()` method is kept as Java exceptions inherently have this method. +And a new classification field is added to cover the division of client errors, transient errors, and database errors, which today is part of the Neo4j code. +All of these fields construct the GQLSTATUS object, which is sent to the driver as part of the Failure Bolt message. +Exactly how this looks, depends on the combination of driver and server versions. +See <> for more information. + +On the driver side, the Neo4jException is extended with the corresponding methods as on the server side. +The driver receives the Failure Bolt message and extracts the status code and the error message. +Then, it constructs an exception with the status code, error message, and other relevant information, and sends it to the client. + +// Starting from 2025.01, the diagnostic record also contains a `_status_parameters` field, which represens a map that contains all variable parts of the status description, such as labels, database names, Cypher clauses, etc. +// This field is used to provide more detailed information about the error. + +== Query logging + +Since the query log is server-side and DBMS wide, multiple clients connected to the same DBMS write to the same query log. +As the clients can have separate driver versions, they may have different error framework formats. + +In Neo4j 5.25, the default JSON template for the query log is updated to include an `errorInfo` entry. +This entry contains `GQLSTATUS`, `statusDescription`, `classification`, `position` (if applicable), and `cause` (if applicable) with the same entries. +//The `failureReason` entry is deprecated from ... + +// Starting from Neo4j 2025.01, a new JSON template is available for the query log, which is the default set in _server_log.xml_. +// It contains the `errorInfo` entry, but not the `failureReason` entry, which is switched off by default. + + +[[server-driver-compatibility]] +== Server-driver version compatibility + +The server and driver communicate with each other through the Bolt protocol. +During the handshake process, they agree on using the newest possible Bolt protocol version that both the server and the driver support. +For more information on the Bolt versions supported by different server versions, see the link:https://neo4j.com/docs/bolt/current/bolt-compatibility[Bolt Protocol documentation]. + diff --git a/modules/ROOT/pages/index.adoc b/modules/ROOT/pages/index.adoc index f24b4167..e67ac011 100644 --- a/modules/ROOT/pages/index.adoc +++ b/modules/ROOT/pages/index.adoc @@ -1,72 +1,23 @@ [[status-codes]] ifdef::backend-pdf[] -= Neo4j 5 Status Codes += Status Codes for Errors and Notifications endif::[] ifndef::backend-pdf[] = Introduction endif::[] -:description: The Neo4j status codes for Neo4j version {neo4j-version}. +:description: Status codes for errors and notifications Neo4j 5 :neo4j-buildnumber: {neo4j-version} +This manual covers all status codes for errors and notifications that a Neo4j server may return to indicate the result of a Cypher request. -This document details all status codes that a Neo4j DBMS may return to indicate the outcome of a request. +Starting from 5.23 for notifications and 5.25 for errors, Neo4j supports the GQL standard. + +GQL is the new link:https://www.iso.org/home.html[ISO] International Standard query language for graph databases. +Cypher®, Neo4j’s query language, supports most mandatory and a substantial portion of the optional GQL features (as defined by the link:https://www.iso.org/standard/76120.html[ISO/IEC 39075:2024(en) - Information technology - Database languages - GQL Standard]). +For more information, see link:https://neo4j.com/docs/cypher-manual/current/appendix/gql-conformance/[Cypher Manual -> GQL conformance]. -//== GQL status codes - - -== Neo4j status codes - -=== Format - -Each Neo4j status code follows the same format: - -[source, status code format, role="noheader"] ------ -Neo.[Type].[SubType].[Name] ------ - - -=== Types of Neo4j status codes - -The fact that a Neo4j status code is returned by the server does not always mean there is a fatal error. -Neo4j status codes can also indicate transient problems that may go away if you retry the request. -The type of the status code determines the effect on the transaction. - -.Neo4j status code types -[options="header", cols="<1m,<2,<1"] -|=== - -| Type -| Description -| Effect on the transaction - -| xref:errors/all-errors.adoc#_client_errors[ClientError] -| The client sent a bad request - changing the request might yield a successful outcome. -| Rollback - -| xref:errors/all-errors#_transient_errors[TransientError] -| The database cannot service the request right now, retrying later might yield a successful outcome. -| Rollback - -| xref:errors/all-errors#_database_error[DatabaseError] -| The database failed to service the request. -| Rollback - -| xref:notifications/index.adoc[ClientNotifications] -| The query execution was successful, but there are notifications about the request sent by the client. -| None - -|=== - -[NOTE] -==== -From version 5.23, Neo4j has a new GqlStatusObject API in addition to the existing Notification API. - -The GqlStatusObject API provides information about the status of a Cypher query or command execution in compliance with the GQL standard. -It includes GQLSTATUS code, StatusDescription, and DiagnosticRecord. -For more information, see xref:notifications/index.adoc#gqlstatus-notification-object[GQL-status notification object]. -==== +As part of this GQL compliance, Cypher also includes status codes that a GQL-compliant DBMS returns to indicate the outcome of a request. +For more information on the GQL-status object framework for notifications and errors, see xref:notifications/index.adoc[] and xref:errors/index.adoc[]. ifndef::backend-pdf[] License: link:{common-license-page-uri}[Creative Commons 4.0] diff --git a/modules/ROOT/pages/notifications/all-notifications.adoc b/modules/ROOT/pages/notifications/all-notifications.adoc index f7c0a2f2..602a1237 100644 --- a/modules/ROOT/pages/notifications/all-notifications.adoc +++ b/modules/ROOT/pages/notifications/all-notifications.adoc @@ -1,9 +1,9 @@ :description: This section describes the notifications that Neo4j can return, grouped by category, and an example of when they can occur. [[listOfNnotifications]] -= List of all server notification codes += List of notification codes -The following page provides an overview of all notifications in Neo4j, along with some scenarios and their possible solutions. +The following page provides an overview of all notifications in Neo4j, including the GQLSTATUS codes and Neo4j codes, along with some scenarios and their possible solutions. * <<_performance_notifications, `PERFORMANCE` notifications>> * <<_hint_notifications, `HINT` notifications>> @@ -53,7 +53,7 @@ m|INFORMATION .A query that contains many disconnected patterns [.tabbed-example] ===== -[.include-with-neo4j-code] +[.include-with-GQLSTATUS-code] ====== Query:: @@ -63,12 +63,13 @@ Query:: MATCH (c:Child), (p:Parent) RETURN c, p ---- -Description of the returned code:: -If a part of a query contains multiple disconnected patterns, -this will build a cartesian product between all those parts. -This may produce a large amount of data and slow down query processing. -While occasionally intended, it may often be possible to reformulate the query that avoids the use of this cross product, -perhaps by adding a relationship between the different parts or by using `OPTIONAL MATCH` (identifier is: (`p`)) +Returned GQLSTATUS code:: +03N90 + +Returned status description:: +info: cartesian product. +The disconnected patterns `(c:Child), (p:Parent)` build a cartesian product. +A cartesian product may produce a large amount of data and slow down query processing. Suggestions for improvement:: In case a Cartesian product is needed, nothing can be done to improve this query. @@ -81,7 +82,7 @@ MATCH (c:Child)-[:ChildOf]->(p:Parent) RETURN c, p ---- ====== -[.include-with-GQLSTATUS-code] +[.include-with-neo4j--code] ====== Query:: @@ -91,13 +92,12 @@ Query:: MATCH (c:Child), (p:Parent) RETURN c, p ---- -Returned GQLSTATUS code:: -03N90 - -Returned status description:: -info: cartesian product. -The disconnected patterns `(c:Child), (p:Parent)` build a cartesian product. -A cartesian product may produce a large amount of data and slow down query processing. +Description of the returned code:: +If a part of a query contains multiple disconnected patterns, +this will build a cartesian product between all those parts. +This may produce a large amount of data and slow down query processing. +While occasionally intended, it may often be possible to reformulate the query that avoids the use of this cross product, +perhaps by adding a relationship between the different parts or by using `OPTIONAL MATCH` (identifier is: (`p`)) Suggestions for improvement:: In case a Cartesian product is needed, nothing can be done to improve this query. @@ -120,7 +120,7 @@ This notification is returned when there is no upper bound specified on the vari .Notification details [cols="<1s,<4"] |=== -|Neo4j code +|Neo4j code m|Neo.ClientNotification.Statement.UnboundedVariableLengthPattern |Title a|The provided pattern is unbounded, consider adding an upper limit to the number of node hops. @@ -144,7 +144,7 @@ m|INFORMATION .Shortest path with an unbounded pattern [.tabbed-example] ===== -[.include-with-neo4j-code] +[.include-with-GQLSTATUS-code] ====== Query:: @@ -156,9 +156,14 @@ WHERE n <> m RETURN p ---- -Description of the returned code:: -Using shortest path with an unbounded pattern will likely result in long execution times. -It is recommended to use an upper limit to the number of node hops in your pattern. +Returned GQLSTATUS code:: +03N91 + +Returned status description:: +info: unbounded variable length pattern. +The provided pattern `(n)-[\*]->(m)` is unbounded. +Shortest path with an unbounded pattern may result in long execution times. +Use an upper limit (e.g. `[*..5]`) on the number of node hops in your pattern. Suggestions for improvement:: If you have a big graph, this query might be very slow. @@ -171,26 +176,19 @@ WHERE n <> m RETURN p ---- ====== -[.include-with-GQLSTATUS-code] +[.include-with-neo4j--code] ====== Query:: + [source, cypher, role="noplay"] ---- -MATCH p=shortestPath((n)-[*]->(m)) -WHERE n <> m -RETURN p +MATCH p=shortestPath((n)-[*]->(m)) RETURN p ---- -Returned GQLSTATUS code:: -03N91 - -Returned status description:: -info: unbounded variable length pattern. -The provided pattern `(n)-[\*]->(m)` is unbounded. -Shortest path with an unbounded pattern may result in long execution times. -Use an upper limit (e.g. `[*..5]`) on the number of node hops in your pattern. +Description of the returned code:: +Using shortest path with an unbounded pattern will likely result in long execution times. +It is recommended to use an upper limit to the number of node hops in your pattern. Suggestions for improvement:: If you have a big graph, this query might be very slow. @@ -198,9 +196,7 @@ Consider adding an upper limit. + [source, cypher, role="noplay"] ---- -MATCH p=shortestPath((n)-[*..8]->(m)) -WHERE n <> m -RETURN p +MATCH p=shortestPath((n)-[*..8]->(m)) RETURN p ---- ====== ===== @@ -214,7 +210,7 @@ For more information, see link:https://neo4j.com/docs/cypher-manual/current/exec .Notification details [cols="<1s,<4"] |=== -|Neo4j code +|Neo4j code m|Neo.ClientNotification.Statement.ExhaustiveShortestPath |Title a|Exhaustive shortest path has been planned for your query that means that shortest path graph algorithm might not be used to find the shortest path. @@ -239,7 +235,7 @@ m|INFORMATION .A query that runs with an exhaustive shortest path [.tabbed-example] ===== -[.include-with-neo4j-code] +[.include-with-GQLSTATUS-code] ====== Query:: + @@ -250,9 +246,13 @@ WHERE ANY(n in nodes(p) WHERE n:Label) RETURN p ---- -Description of the returned code:: -Using shortest path with an exhaustive search fallback might cause query slow down since shortest path graph algorithms might not work for this use case. -It is recommended to introduce a `WITH` to separate the `MATCH` containing the shortest path from the existential predicates on that path. +Returned GQLSTATUS code:: +03N92 + +Returned status description:: +info: exhaustive shortest path. +The query runs with exhaustive shortest path due to the existential predicate(s) `ANY(n in nodes(p) WHERE n:Label)`. +It may be possible to use `WITH` to separate the `MATCH` from the existential predicate(s). Suggestions for improvement:: Separate the predicate by introducing a `WITH` after the `MATCH` clause. @@ -265,7 +265,7 @@ WHERE ANY(n in nodes(p) WHERE n:Label) RETURN p ---- ====== -[.include-with-GQLSTATUS-code] +[.include-with-neo4j--code] ====== Query:: + @@ -276,13 +276,9 @@ WHERE ANY(n in nodes(p) WHERE n:Label) RETURN p ---- -Returned GQLSTATUS code:: -03N92 - -Returned status description:: -info: exhaustive shortest path. -The query runs with exhaustive shortest path due to the existential predicate(s) `ANY(n in nodes(p) WHERE n:Label)`. -It may be possible to use `WITH` to separate the `MATCH` from the existential predicate(s). +Description of the returned code:: +Using shortest path with an exhaustive search fallback might cause query slow down since shortest path graph algorithms might not work for this use case. +It is recommended to introduce a `WITH` to separate the `MATCH` containing the shortest path from the existential predicates on that path. Suggestions for improvement:: Separate the predicate by introducing a `WITH` after the `MATCH` clause. @@ -307,7 +303,7 @@ Adding an index could improve the query speed. .Notification details [cols="<1s,<4"] |=== -|Neo4j code +|Neo4j code m|Neo.ClientNotification.Statement.NoApplicableIndex |Title a|Adding a schema index may speed up this query. @@ -331,7 +327,7 @@ m|INFORMATION .`LOAD CSV` with `MATCH` or `MERGE` [.tabbed-example] ===== -[.include-with-neo4j-code] +[.include-with-GQLSTATUS-code] ====== Query:: @@ -341,9 +337,13 @@ Query:: LOAD CSV FROM 'file:///ignore/ignore.csv' AS line WITH * MATCH (n:Person{name:line[0]}) RETURN line, n ---- -Description of the returned code:: -Using `LOAD CSV` followed by a `MATCH` or `MERGE` that matches a non-indexed label will most likely not perform well on large data sets. -Please consider using a schema index. +Returned GQLSTATUS code:: +03N93 + +Returned status description:: +info: no applicable index. +`LOAD CSV` in combination with `MATCH` or `MERGE` on a label that does not have an index may result in long execution times. +Consider adding an index for label `Person`. Suggestions for improvement:: Create an index on the label and property you match. @@ -352,9 +352,8 @@ Create an index on the label and property you match. ---- CREATE INDEX FOR (n:Person) ON (n.name) ---- - ====== -[.include-with-GQLSTATUS-code] +[.include-with-neo4j--code] ====== Query:: @@ -364,13 +363,9 @@ Query:: LOAD CSV FROM 'file:///ignore/ignore.csv' AS line WITH * MATCH (n:Person{name:line[0]}) RETURN line, n ---- -Returned GQLSTATUS code:: -03N93 - -Returned status description:: -info: no applicable index. -`LOAD CSV` in combination with `MATCH` or `MERGE` on a label that does not have an index may result in long execution times. -Consider adding an index for label `Person`. +Description of the returned code:: +Using `LOAD CSV` followed by a `MATCH` or `MERGE` that matches a non-indexed label will most likely not perform well on large data sets. +Please consider using a schema index. Suggestions for improvement:: Create an index on the label and property you match. @@ -379,6 +374,7 @@ Create an index on the label and property you match. ---- CREATE INDEX FOR (n:Person) ON (n.name) ---- + ====== ===== @@ -390,7 +386,7 @@ This notification is returned when the execution plan for a query contains the ` .Notification details [cols="<1s,<4"] |=== -|Neo4j code +|Neo4j code m|Neo.ClientNotification.Statement.EagerOperator |Title a|The execution plan for this query contains the Eager operator, which forces all dependent data to be materialized in main memory before proceeding @@ -414,11 +410,9 @@ m|INFORMATION .`LOAD CSV` with an Eager operator [.tabbed-example] ===== -[.include-with-neo4j-code] +[.include-with-GQLSTATUS-code] ====== -`LOAD CSV` together with an Eager operator can take up a lot of memory. - Query:: + [source, cypher, role="noplay"] @@ -426,9 +420,13 @@ Query:: LOAD CSV FROM 'file:///ignore/ignore.csv' AS line MATCH (n:Person{name:line[0]}) DELETE n RETURN line ---- -Description of the returned code:: -Using `LOAD CSV` with a large data set in a query where the execution plan contains the Eager operator could potentially consume a lot of memory and is likely to not perform well. -See the Neo4j Manual entry on the Eager operator for more information and hints on how problems could be avoided. +Returned GQLSTATUS code:: +03N94 + +Returned status description:: +info: eager operator. +The query execution plan contains the `Eager` operator. +`LOAD CSV` in combination with `Eager` can consume a lot of memory. Suggestions for improvement:: See the link:https://neo4j.com/docs/cypher-manual/current/planning-and-tuning/operators/operators-detail/#query-plan-eager[Cypher Manual -> Eager operator] for more information and hints on how to avoid problems. @@ -443,11 +441,12 @@ CALL { } RETURN line ---- - ====== -[.include-with-GQLSTATUS-code] +[.include-with-neo4j--code] ====== +`LOAD CSV` together with an Eager operator can take up a lot of memory. + Query:: + [source, cypher, role="noplay"] @@ -455,13 +454,9 @@ Query:: LOAD CSV FROM 'file:///ignore/ignore.csv' AS line MATCH (n:Person{name:line[0]}) DELETE n RETURN line ---- -Returned GQLSTATUS code:: -03N94 - -Returned status description:: -info: eager operator. -The query execution plan contains the `Eager` operator. -`LOAD CSV` in combination with `Eager` can consume a lot of memory. +Description of the returned code:: +Using `LOAD CSV` with a large data set in a query where the execution plan contains the Eager operator could potentially consume a lot of memory and is likely to not perform well. +See the Neo4j Manual entry on the Eager operator for more information and hints on how problems could be avoided. Suggestions for improvement:: See the link:https://neo4j.com/docs/cypher-manual/current/planning-and-tuning/operators/operators-detail/#query-plan-eager[Cypher Manual -> Eager operator] for more information and hints on how to avoid problems. @@ -476,6 +471,7 @@ CALL { } RETURN line ---- + ====== ===== @@ -486,7 +482,7 @@ RETURN line .Notification details [cols="<1s,<4"] |=== -|Neo4j code +|Neo4j code m|Neo.ClientNotification.Statement.DynamicProperty |Title a|Queries using dynamic properties will use neither index seeks nor index scans for those properties @@ -510,7 +506,7 @@ m|INFORMATION .A dynamic node property key makes it impossible to use indexes [.tabbed-example] ===== -[.include-with-neo4j-code] +[.include-with-GQLSTATUS-code] ====== Query:: @@ -520,8 +516,14 @@ Query:: MATCH (n:Person) WHERE n[$prop] IS NOT NULL RETURN n; ---- -Description of the returned code:: -Using a dynamic property makes it impossible to use an index lookup for this query (indexed label is: `Person`) +Returned GQLSTATUS code:: +03N95 + +Returned status description:: +info: dynamic property. +An index exists on label/type(s) `Person`. +It is not possible to use indexes for dynamic properties. +Consider using static properties. Suggestions for improvement:: If there is an index for `(n:Person) ON (n.name)`, it will not be used for the above query because the query is using a dynamic property. @@ -534,7 +536,7 @@ MATCH (n:Person) WHERE n.name IS NOT NULL RETURN n; ---- ====== -[.include-with-GQLSTATUS-code] +[.include-with-neo4j--code] ====== Query:: @@ -544,14 +546,8 @@ Query:: MATCH (n:Person) WHERE n[$prop] IS NOT NULL RETURN n; ---- -Returned GQLSTATUS code:: -03N95 - -Returned status description:: -info: dynamic property. -An index exists on label/type(s) `Person`. -It is not possible to use indexes for dynamic properties. -Consider using static properties. +Description of the returned code:: +Using a dynamic property makes it impossible to use an index lookup for this query (indexed label is: `Person`) Suggestions for improvement:: If there is an index for `(n:Person) ON (n.name)`, it will not be used for the above query because the query is using a dynamic property. @@ -569,7 +565,7 @@ MATCH (n:Person) WHERE n.name IS NOT NULL RETURN n; .A dynamic relationship property key makes it impossible to use indexes [.tabbed-example] ===== -[.include-with-neo4j-code] +[.include-with-GQLSTATUS-code] ====== Query:: @@ -579,8 +575,14 @@ Query:: MATCH ()-[r: KNOWS]->() WHERE r[$prop] IS NOT NULL RETURN r ---- -Description of the returned code:: -Using a dynamic property makes it impossible to use an index lookup for this query (indexed type is: `KNOWS`) +Returned GQLSTATUS code:: +03N95 + +Returned status description:: +info: dynamic property. +An index exists on label/type(s) `KNOWS`. +It is not possible to use indexes for dynamic properties. +Consider using static properties. Suggestions for improvement:: Similar to dynamic node properties, use a constant value if possible, especially when there is an index on the relationship property. @@ -592,7 +594,7 @@ MATCH ()-[r: KNOWS]->() WHERE r.since IS NOT NULL RETURN r ---- ====== -[.include-with-GQLSTATUS-code] +[.include-with-neo4j--code] ====== Query:: @@ -602,18 +604,12 @@ Query:: MATCH ()-[r: KNOWS]->() WHERE r[$prop] IS NOT NULL RETURN r ---- -Returned GQLSTATUS code:: -03N95 - -Returned status description:: -info: dynamic property. -An index exists on label/type(s) `KNOWS`. -It is not possible to use indexes for dynamic properties. -Consider using static properties. +Description of the returned code:: +Using a dynamic property makes it impossible to use an index lookup for this query (indexed type is: `KNOWS`) Suggestions for improvement:: Similar to dynamic node properties, use a constant value if possible, especially when there is an index on the relationship property. -For example, if `{ $prop }` is equal to `since`, you can rewrite the query to: +For example, if `$prop` is equal to `since`, you can rewrite the query to: + [source, cypher] ---- @@ -632,7 +628,7 @@ For more information about the specific query, see the stack trace in the _debug .Notification details [cols="<1s,<4"] |=== -|Neo4j code +|Neo4j code m|Neo.ClientNotification.Statement.CodeGenerationFailed |Title a|The database was unable to generate code for the query. A stacktrace can be found in the _debug.log_. @@ -667,7 +663,7 @@ In this case, the query will return an error. .Notification details [cols="<1s,<4"] |=== -|Neo4j code +|Neo4j code m|Neo.ClientNotification.Statement.JoinHintUnfulfillableWarning |Title a|The database was unable to plan a hinted join. @@ -690,7 +686,7 @@ m|WARNING .Inability to fulfill the hint despite the given `JOIN` hint [.tabbed-example] ===== -[.include-with-neo4j-code] +[.include-with-GQLSTATUS-code] ====== Query:: @@ -705,17 +701,20 @@ OPTIONAL MATCH (a)--(c) RETURN * ---- -Description of the returned code:: -The hinted join was not planned. -This could happen because no generated plan contained the join key, -please try using a different join key or restructure your query. (hinted join key identifier is: `a`) +Returned GQLSTATUS code:: +01N30 + +Returned status description:: +warn: joint hint unfulfillable. +Unable to create a plan with `JOIN ON a`. +Try to change the join key(s) or restructure your query. Suggestions for improvement:: The `JOIN` hint cannot be applied because its specified variable is before the `OPTIONAL MATCH` and, therefore, is already bound. The only option for this query is to either remove the hint or modify the query to allow it to be used. ====== -[.include-with-GQLSTATUS-code] +[.include-with-neo4j--code] ====== Query:: @@ -730,13 +729,10 @@ OPTIONAL MATCH (a)--(c) RETURN * ---- -Returned GQLSTATUS code:: -01N30 - -Returned status description:: -warn: joint hint unfulfillable. -Unable to create a plan with `JOIN ON a`. -Try to change the join key(s) or restructure your query. +Description of the returned code:: +The hinted join was not planned. +This could happen because no generated plan contained the join key, +please try using a different join key or restructure your query. (hinted join key identifier is: `a`) Suggestions for improvement:: The `JOIN` hint cannot be applied because its specified variable is before the `OPTIONAL MATCH` and, therefore, is already bound. @@ -752,7 +748,7 @@ The only option for this query is to either remove the hint or modify the query .Notification details [cols="<1s,<4"] |=== -|Neo4j code +|Neo4j code m|Neo.ClientNotification.Schema.HintedIndexNotFound |Title a|The request (directly or indirectly) referred to an index that does not exist. @@ -774,7 +770,7 @@ m|WARNING .Inability to use the label index despite the given index hint [.tabbed-example] ===== -[.include-with-neo4j-code] +[.include-with-GQLSTATUS-code] ====== Query:: @@ -787,15 +783,18 @@ WHERE a.id = 1 RETURN a ---- -Description of the returned code:: -The hinted index does not exist, please check the schema (index is: INDEX FOR (`a`:`Label`) ON (`a`.`id`)) +Returned GQLSTATUS code:: +01N31 + +Returned status description:: +warn: hinted index not found. +Unable to create a plan with `INDEX :Label(id)` because the index does not exist. Suggestions for improvement:: The hinted index does not exist, make sure the label and property are spelled correctly. If the spelling is correct, either create the index or remove the hint from the query. - ====== -[.include-with-GQLSTATUS-code] +[.include-with-neo4j--code] ====== Query:: @@ -808,23 +807,20 @@ WHERE a.id = 1 RETURN a ---- -Returned GQLSTATUS code:: -01N31 - -Returned status description:: -warn: hinted index not found. -Unable to create a plan with `INDEX :Label(id)` because the index does not exist. +Description of the returned code:: +The hinted index does not exist, please check the schema (index is: INDEX FOR (`a`:`Label`) ON (`a`.`id`)) Suggestions for improvement:: The hinted index does not exist, make sure the label and property are spelled correctly. If the spelling is correct, either create the index or remove the hint from the query. + ====== ===== .Inability to use the relationship index despite the given index hint [.tabbed-example] ===== -[.include-with-neo4j-code] +[.include-with-GQLSTATUS-code] ====== Query:: @@ -837,15 +833,18 @@ WHERE r.id = 1 RETURN r ---- -Description of the returned code:: -The hinted index does not exist, please check the schema (index is: INDEX FOR ()-[`r`:`Rel`]-() ON (`r`.`id`)) +Returned GQLSTATUS code:: +01N31 + +Returned status description:: +warn: hinted index not found. +Unable to create a plan with `INDEX :Rel(id)` because the index does not exist. Suggestions for improvement:: The hinted index does not exist, make sure the relationship type and property are spelled correctly. If the spelling is correct, either create the index or remove the hint from the query. - ====== -[.include-with-GQLSTATUS-code] +[.include-with-neo4j--code] ====== Query:: @@ -858,16 +857,13 @@ WHERE r.id = 1 RETURN r ---- -Returned GQLSTATUS code:: -01N31 - -Returned status description:: -warn: hinted index not found. -Unable to create a plan with `INDEX :Rel(id)` because the index does not exist. +Description of the returned code:: +The hinted index does not exist, please check the schema (index is: INDEX FOR ()-[`r`:`Rel`]-() ON (`r`.`id`)) Suggestions for improvement:: The hinted index does not exist, make sure the relationship type and property are spelled correctly. If the spelling is correct, either create the index or remove the hint from the query. + ====== ===== @@ -882,7 +878,7 @@ Unrecognized notifications are returned when the query or command mentions entit .Notification details [cols="<1s,<4"] |=== -|Neo4j code +|Neo4j code m|Neo.ClientNotification.Database.HomeDatabaseNotFound |Title a|The request referred to a home database that does not exist. @@ -906,7 +902,7 @@ m|INFORMATION .Setting the `home` database to a database that does not exist [.tabbed-example] ===== -[.include-with-neo4j-code] +[.include-with-GQLSTATUS-code] ====== Query:: @@ -916,15 +912,18 @@ Query:: CREATE USER john SET PASSWORD "secret" SET HOME DATABASE nej4 ---- -Description of the returned code:: -The home database provided does not currently exist in the DBMS. -This command will not take effect until this database is created. (HOME DATABASE: `nej4`) +Returned GQLSTATUS code:: +00N50 + +Returned status description:: +note: successful completion - home database not found. +The database `ne4j` does not exist. +Verify that the spelling is correct or create the database for the command to take effect. Suggestions for improvement:: Verify that the home database name is not misspelled. - ====== -[.include-with-GQLSTATUS-code] +[.include-with-neo4j--code] ====== Query:: @@ -934,16 +933,13 @@ Query:: CREATE USER john SET PASSWORD "secret" SET HOME DATABASE nej4 ---- -Returned GQLSTATUS code:: -00N50 - -Returned status description:: -note: successful completion - home database not found. -The database `ne4j` does not exist. -Verify that the spelling is correct or create the database for the command to take effect. +Description of the returned code:: +The home database provided does not currently exist in the DBMS. +This command will not take effect until this database is created. (HOME DATABASE: `nej4`) Suggestions for improvement:: Verify that the home database name is not misspelled. + ====== ===== @@ -953,7 +949,7 @@ Verify that the home database name is not misspelled. .Notification details [cols="<1s,<4"] |=== -|Neo4j code +|Neo4j code m|Neo.ClientNotification.Statement.UnknownLabelWarning |Title a|The provided label is not in the database. @@ -976,7 +972,7 @@ m|WARNING .Matching on a node with a label that does not exist in the database [.tabbed-example] ===== -[.include-with-neo4j-code] +[.include-with-GQLSTATUS-code] ====== Query:: @@ -986,15 +982,19 @@ Query:: MATCH (n:Perso) RETURN n ---- -Description of the returned code:: -One of the labels in your query is not available in the database, make sure you didn't misspell it or that the label is available when you run this statement in your application (the missing label name is: `Perso`) +Returned GQLSTATUS code:: +01N50 + +Returned status description:: +warn: unknown label. +The label `Perso` does not exist. +Verify that the spelling is correct. Suggestions for improvement:: Verify that the label is not misspelled. -If you plan to create nodes with that label in the future, then no change is needed. - +If you plan to create nodes with that label in the future, no change is needed. ====== -[.include-with-GQLSTATUS-code] +[.include-with-neo4j--code] ====== Query:: @@ -1004,17 +1004,13 @@ Query:: MATCH (n:Perso) RETURN n ---- -Returned GQLSTATUS code:: -01N50 - -Returned status description:: -warn: unknown label. -The label `Perso` does not exist. -Verify that the spelling is correct. +Description of the returned code:: +One of the labels in your query is not available in the database, make sure you didn't misspell it or that the label is available when you run this statement in your application (the missing label name is: `Perso`) Suggestions for improvement:: Verify that the label is not misspelled. -If you plan to create nodes with that label in the future, no change is needed. +If you plan to create nodes with that label in the future, then no change is needed. + ====== ===== @@ -1024,7 +1020,7 @@ If you plan to create nodes with that label in the future, no change is needed. .Notification details [cols="<1s,<4"] |=== -|Neo4j code +|Neo4j code m|Neo.ClientNotification.Statement.UnknownRelationshipTypeWarning |Title a|The provided relationship type is not in the database. @@ -1048,7 +1044,7 @@ m|WARNING .Matching a relationship with a type that does not exist [.tabbed-example] ===== -[.include-with-neo4j-code] +[.include-with-GQLSTATUS-code] ====== Query:: + @@ -1057,16 +1053,19 @@ Query:: MATCH (n)-[:NonExistingType]->() RETURN n ---- -Description of the returned code:: -One of the relationship types in your query is not available in the database, -make sure you didn't misspell it or that the label is available when you run this statement in your application (the missing relationship type is: `NonExistingType`) +Returned GQLSTATUS code:: +01N51 + +Returned status description:: +warn: unknown relationship type. +The relationship type `NonExistingType` does not exist. +Verify that the spelling is correct. Suggestions for improvement:: Verify that the relationship type is not misspelled. If you plan to create relationships of this type in the future, no change is needed. - ====== -[.include-with-GQLSTATUS-code] +[.include-with-neo4j--code] ====== Query:: + @@ -1075,17 +1074,14 @@ Query:: MATCH (n)-[:NonExistingType]->() RETURN n ---- -Returned GQLSTATUS code:: -01N51 - -Returned status description:: -warn: unknown relationship type. -The relationship type `NonExistingType` does not exist. -Verify that the spelling is correct. +Description of the returned code:: +One of the relationship types in your query is not available in the database, +make sure you didn't misspell it or that the label is available when you run this statement in your application (the missing relationship type is: `NonExistingType`) Suggestions for improvement:: Verify that the relationship type is not misspelled. If you plan to create relationships of this type in the future, no change is needed. + ====== ===== @@ -1095,7 +1091,7 @@ If you plan to create relationships of this type in the future, no change is nee .Notification details [cols="<1s,<4"] |=== -|Neo4j code +|Neo4j code m|Neo.ClientNotification.Statement.UnknownPropertyKeyWarning |Title a|The provided property key is not in the database @@ -1119,7 +1115,7 @@ m|WARNING .Matching a property key that does not exist [.tabbed-example] ===== -[.include-with-neo4j-code] +[.include-with-GQLSTATUS-code] ====== Query:: + @@ -1129,16 +1125,19 @@ MATCH (n:Person {nme:”Tom”}) RETURN n ---- -Description of the returned code:: -One of the property names in your query is not available in the database, -make sure you didn't misspell it or that the label is available when you run this statement in your application (the missing property name is: `nme`) +Returned GQLSTATUS code:: +01N52 + +Returned status description:: +warn: unknown property key. +The property `nme` does not exist. +Verify that the spelling is correct. Suggestions for improvement:: Verify that the property key is not misspelled. If you plan to create that property key in the future, no change is needed. - ====== -[.include-with-GQLSTATUS-code] +[.include-with-neo4j--code] ====== Query:: + @@ -1148,17 +1147,14 @@ MATCH (n:Person {nme:”Tom”}) RETURN n ---- -Returned GQLSTATUS code:: -01N52 - -Returned status description:: -warn: unknown property key. -The property `nme` does not exist. -Verify that the spelling is correct. +Description of the returned code:: +One of the property names in your query is not available in the database, +make sure you didn't misspell it or that the label is available when you run this statement in your application (the missing property name is: `nme`) Suggestions for improvement:: Verify that the property key is not misspelled. If you plan to create that property key in the future, no change is needed. + ====== ===== @@ -1168,7 +1164,7 @@ If you plan to create that property key in the future, no change is needed. .Notification details [cols="<1s,<4"] |=== -|Neo4j code +|Neo4j code m|Neo.ClientNotification.Statement.AggregationSkippedNull |Title a|The query contains an aggregation function that skips null values. @@ -1189,17 +1185,6 @@ m|WARNING .Aggregation skipping a NULL value [.tabbed-example] ===== -[.include-with-neo4j-code] -====== -Query:: - -[source,cypher] ----- -UNWIND [1, NULL, 2] AS i RETURN count(i) AS sum ----- -Description of the returned code:: -The query contains an aggregation function that skips null values. -====== [.include-with-GQLSTATUS-code] ====== Query:: @@ -1215,6 +1200,17 @@ Returned GQLSTATUS code:: Returned status description:: warn: null value eliminated in set function. ====== +[.include-with-neo4j--code] +====== +Query:: + +[source,cypher] +---- +UNWIND [1, NULL, 2] AS i RETURN count(i) AS sum +---- +Description of the returned code:: +The query contains an aggregation function that skips null values. +====== ===== [#_unsupported_notifications] @@ -1228,7 +1224,7 @@ Unsupported notifications are returned when the query or command is trying to us .Notification details [cols="<1s,<4"] |=== -|Neo4j code +|Neo4j code m|Neo.ClientNotification.Statement.RuntimeUnsupportedWarning |Title a|This query is not supported by the chosen runtime. @@ -1252,19 +1248,22 @@ m|WARNING .A runtime is not supported by a Cypher command [.tabbed-example] ===== -[.include-with-neo4j-code] +[.include-with-GQLSTATUS-code] ====== - Query:: + [source,cypher] ---- -CYPHER runtime=pipelined SHOW INDEXES YIELD * +EXPLAIN CYPHER runtime=pipelined SHOW INDEXES YIELD * ---- -Description of the returned code:: -Selected runtime is unsupported for this query, please use a different runtime instead or fallback to default. -(Pipelined does not yet support the plans including `ShowIndexes`, use another runtime.) +Returned GQLSTATUS code:: +01N40 + +Returned status description:: +warn: unsupported runtime. +The query cannot be executed with `runtime=pipelined`, `runtime=slotted` is used. +Cause: Pipelined does not yet support the plans including `ShowIndexes`, use another runtime. Suggestions for improvement:: Use a different runtime or remove the runtime option to run the query with the default runtime: @@ -1273,24 +1272,20 @@ Use a different runtime or remove the runtime option to run the query with the d ---- SHOW INDEXES YIELD * ---- - ====== -[.include-with-GQLSTATUS-code] +[.include-with-neo4j--code] ====== + Query:: + [source,cypher] ---- -EXPLAIN CYPHER runtime=pipelined SHOW INDEXES YIELD * +CYPHER runtime=pipelined SHOW INDEXES YIELD * ---- -Returned GQLSTATUS code:: -01N40 - -Returned status description:: -warn: unsupported runtime. -The query cannot be executed with `runtime=pipelined`, `runtime=slotted` is used. -Cause: Pipelined does not yet support the plans including `ShowIndexes`, use another runtime. +Description of the returned code:: +Selected runtime is unsupported for this query, please use a different runtime instead or fallback to default. +(Pipelined does not yet support the plans including `ShowIndexes`, use another runtime.) Suggestions for improvement:: Use a different runtime or remove the runtime option to run the query with the default runtime: @@ -1299,6 +1294,7 @@ Use a different runtime or remove the runtime option to run the query with the d ---- SHOW INDEXES YIELD * ---- + ====== ===== @@ -1314,7 +1310,7 @@ The usage of this notification has been removed since Neo4j 5.14. .Notification details [cols="<1s,<4"] |=== -|Neo4j code +|Neo4j code m|Neo.ClientNotification.Statement.RuntimeExperimental |Title a|This feature is experimental and should not be used in production systems. @@ -1359,7 +1355,7 @@ It is important to change to the new functionality, otherwise, the query might b .Notification details [cols="<1s,<4"] |=== -|Neo4j code +|Neo4j code m|Neo.ClientNotification.Statement.FeatureDeprecationWarning |Title a|This feature is deprecated and will be removed in future versions. @@ -1392,7 +1388,7 @@ m|WARNING .Create a database with an unescaped name containing a dot [.tabbed-example] ===== -[.include-with-neo4j-code] +[.include-with-GQLSTATUS-code] ====== Query:: + @@ -1401,9 +1397,12 @@ Query:: CREATE DATABASE foo.bar ---- -Description of the returned code:: -Databases and aliases with unescaped `.` are deprecated unless to indicate that they belong to a composite database. -Names containing `.` should be escaped. (Name: `foo.bar`) +Returned GQLSTATUS code:: +01N00 + +Returned status description:: +warn: feature deprecated. +Databases and aliases with unescaped `.` are deprecated unless to indicate that they belong to a composite database. Names containing `.` should be escaped. (Name: foo.bar) Suggestions for improvement:: If not intended for a composite database, escape the name with the character ```. @@ -1412,9 +1411,8 @@ If not intended for a composite database, escape the name with the character ``` ---- CREATE DATABASE `foo.bar` ---- - ====== -[.include-with-GQLSTATUS-code] +[.include-with-neo4j--code] ====== Query:: + @@ -1423,12 +1421,9 @@ Query:: CREATE DATABASE foo.bar ---- -Returned GQLSTATUS code:: -01N00 - -Returned status description:: -warn: feature deprecated. -Databases and aliases with unescaped `.` are deprecated unless to indicate that they belong to a composite database. Names containing `.` should be escaped. (Name: foo.bar) +Description of the returned code:: +Databases and aliases with unescaped `.` are deprecated unless to indicate that they belong to a composite database. +Names containing `.` should be escaped. (Name: `foo.bar`) Suggestions for improvement:: If not intended for a composite database, escape the name with the character ```. @@ -1437,13 +1432,14 @@ If not intended for a composite database, escape the name with the character ``` ---- CREATE DATABASE `foo.bar` ---- + ====== ===== .Using differently ordered return items in a `UNION` clause [.tabbed-example] ===== -[.include-with-neo4j-code] +[.include-with-GQLSTATUS-code] ====== Query:: + @@ -1454,7 +1450,11 @@ UNION RETURN 'val' as two, 'val' as one ---- -Description of the returned code:: +Returned GQLSTATUS code:: +01N00 + +Returned status description:: +warn: feature deprecated. All subqueries in a UNION [ALL] should have the same ordering for the return columns. Using differently ordered return items in a UNION [ALL] clause is deprecated and will be removed in a future version. @@ -1468,9 +1468,8 @@ RETURN 'val' as one, 'val' as two UNION RETURN 'val' as one, 'val' as two ---- - ====== -[.include-with-GQLSTATUS-code] +[.include-with-neo4j--code] ====== Query:: + @@ -1481,11 +1480,7 @@ UNION RETURN 'val' as two, 'val' as one ---- -Returned GQLSTATUS code:: -01N00 - -Returned status description:: -warn: feature deprecated. +Description of the returned code:: All subqueries in a UNION [ALL] should have the same ordering for the return columns. Using differently ordered return items in a UNION [ALL] clause is deprecated and will be removed in a future version. @@ -1499,13 +1494,14 @@ RETURN 'val' as one, 'val' as two UNION RETURN 'val' as one, 'val' as two ---- + ====== ===== .Using the Unicode \u0085 in an unescaped identifier [.tabbed-example] ===== -[.include-with-neo4j-code] +[.include-with-GQLSTATUS-code] ====== Query:: + @@ -1513,11 +1509,16 @@ Query:: ---- RETURN 1 as my\u0085identifier ---- -Description of the returned code:: -The Unicode character `\u0085` is deprecated for unescaped identifiers and will be considered as a whitespace character in the future. To continue using it, escape the identifier by adding backticks around the identifier `my\u0085identifier`. +Returned GQLSTATUS code:: +01N00 + +Returned status description:: +warn: feature deprecated. +The Unicode character `\u0085` is deprecated for unescaped identifiers and will be considered as a whitespace character in the future. +To continue using it, escape the identifier by adding backticks around the identifier `my\u0085identifier`. ====== -[.include-with-GQLSTATUS-code] +[.include-with-neo4j--code] ====== Query:: + @@ -1525,14 +1526,9 @@ Query:: ---- RETURN 1 as my\u0085identifier ---- +Description of the returned code:: +The Unicode character `\u0085` is deprecated for unescaped identifiers and will be considered as a whitespace character in the future. To continue using it, escape the identifier by adding backticks around the identifier `my\u0085identifier`. -Returned GQLSTATUS code:: -01N00 - -Returned status description:: -warn: feature deprecated. -The Unicode character `\u0085` is deprecated for unescaped identifiers and will be considered as a whitespace character in the future. -To continue using it, escape the identifier by adding backticks around the identifier `my\u0085identifier`. ====== ===== @@ -1542,7 +1538,7 @@ To continue using it, escape the identifier by adding backticks around the ident .Notification details [cols="<1s,<4"] |=== -|Neo4j code +|Neo4j code m|Neo.ClientNotification.Statement.FeatureDeprecationWarning |Title a|This feature is deprecated and will be removed in future versions. @@ -1575,7 +1571,7 @@ m|WARNING .Colon after the vertical bar `|:` in a relationship pattern [.tabbed-example] ===== -[.include-with-neo4j-code] +[.include-with-GQLSTATUS-code] ====== Query:: + @@ -1584,8 +1580,13 @@ Query:: MATCH (a)-[:A|:B|:C]-() RETURN * ---- -Description of the returned code:: -The semantics of using colon in the separation of alternative relationship types will change in a future version. (Please use ':A|B|C' instead) +Returned GQLSTATUS code:: +01N01 + +Returned status description:: +warn: feature deprecated with replacement. +`:A|:B|:C` is deprecated. +It is replaced by `:A|B|C`. Suggestions for improvement:: Remove the colon inside the relationship type expression. @@ -1596,7 +1597,7 @@ MATCH (a)-[:A|B|C]-() RETURN * ---- ====== -[.include-with-GQLSTATUS-code] +[.include-with-neo4j--code] ====== Query:: + @@ -1605,13 +1606,8 @@ Query:: MATCH (a)-[:A|:B|:C]-() RETURN * ---- -Returned GQLSTATUS code:: -01N01 - -Returned status description:: -warn: feature deprecated with replacement. -`:A|:B|:C` is deprecated. -It is replaced by `:A|B|C`. +Description of the returned code:: +The semantics of using colon in the separation of alternative relationship types will change in a future version. (Please use ':A|B|C' instead) Suggestions for improvement:: Remove the colon inside the relationship type expression. @@ -1627,7 +1623,7 @@ MATCH (a)-[:A|B|C]-() RETURN * .Setting properties using a node [.tabbed-example] ===== -[.include-with-neo4j-code] +[.include-with-GQLSTATUS-code] ====== Query:: + @@ -1637,9 +1633,13 @@ MATCH (a)-[]-(b) SET a = b ---- -Description of the returned code:: -The use of nodes or relationships for setting properties is deprecated and will be removed in a future version. -Please use `properties()` instead. +Returned GQLSTATUS code:: +01N01 + +Returned status description:: +warn: feature deprecated with replacement. +`SET a = b` is deprecated. +It is replaced by `SET a = properties(b)`. Suggestions for improvement:: Use the `properties()` function to get all properties from `b`. @@ -1651,7 +1651,7 @@ SET a = properties(b) ---- ====== -[.include-with-GQLSTATUS-code] +[.include-with-neo4j--code] ====== Query:: + @@ -1661,13 +1661,9 @@ MATCH (a)-[]-(b) SET a = b ---- -Returned GQLSTATUS code:: -01N01 - -Returned status description:: -warn: feature deprecated with replacement. -`SET a = b` is deprecated. -It is replaced by `SET a = properties(b)`. +Description of the returned code:: +The use of nodes or relationships for setting properties is deprecated and will be removed in a future version. +Please use `properties()` instead. Suggestions for improvement:: Use the `properties()` function to get all properties from `b`. @@ -1685,7 +1681,7 @@ SET a = properties(b) .Setting properties using a relationship [.tabbed-example] ===== -[.include-with-neo4j-code] +[.include-with-GQLSTATUS-code] ====== Query:: + @@ -1695,9 +1691,13 @@ MATCH (a)-[r]-(b) SET a += r ---- -Description of the returned code:: -The use of nodes or relationships for setting properties is deprecated and will be removed in a future version. -Please use `properties()` instead. +Returned GQLSTATUS code:: +01N01 + +Returned status description:: +warn: feature deprecated with replacement. +`SET a += r` is deprecated. +It is replaced by `SET a += properties(r)`. Suggestions for improvement:: Use the `properties()` function to get all properties from `r`. @@ -1707,9 +1707,8 @@ Use the `properties()` function to get all properties from `r`. MATCH (a)-[r]-(b) SET a += properties(r) ---- - ====== -[.include-with-GQLSTATUS-code] +[.include-with-neo4j--code] ====== Query:: + @@ -1719,13 +1718,9 @@ MATCH (a)-[r]-(b) SET a += r ---- -Returned GQLSTATUS code:: -01N01 - -Returned status description:: -warn: feature deprecated with replacement. -`SET a += r` is deprecated. -It is replaced by `SET a += properties(r)`. +Description of the returned code:: +The use of nodes or relationships for setting properties is deprecated and will be removed in a future version. +Please use `properties()` instead. Suggestions for improvement:: Use the `properties()` function to get all properties from `r`. @@ -1735,6 +1730,7 @@ Use the `properties()` function to get all properties from `r`. MATCH (a)-[r]-(b) SET a += properties(r) ---- + ====== ===== @@ -1742,7 +1738,7 @@ SET a += properties(r) .Shortest path with a fixed relationship length [.tabbed-example] ===== -[.include-with-neo4j-code] +[.include-with-GQLSTATUS-code] ====== Query:: + @@ -1751,9 +1747,13 @@ Query:: MATCH (a:Start), shortestPath((a)-[r]->()) RETURN a ---- -Description of the returned code:: -The use of `shortestPath` and `allShortestPaths` with fixed length relationships is deprecated and will be removed in a future version. -Please use a path with a length of `1 [r*1..1]` instead or a `Match` with a `limit`. +Returned GQLSTATUS code:: +01N01 + +Returned status description:: +warn: feature deprecated with replacement. +`shortestPath\((a)-[r]->())` is deprecated. +It is replaced by `shortestPath\((n)-[r*1..1]->(m))`. Suggestions for improvement:: If the relationship length is fixed, there is no reason to search for the shortest path. @@ -1763,9 +1763,8 @@ Instead, you can rewrite it to the following: ---- MATCH (a: Start)-[r]->(b: End) RETURN b LIMIT 1 ---- - ====== -[.include-with-GQLSTATUS-code] +[.include-with-neo4j--code] ====== Query:: + @@ -1774,13 +1773,9 @@ Query:: MATCH (a:Start), shortestPath((a)-[r]->()) RETURN a ---- -Returned GQLSTATUS code:: -01N01 - -Returned status description:: -warn: feature deprecated with replacement. -`shortestPath\((a)-[r]->())` is deprecated. -It is replaced by `shortestPath\((n)-[r*1..1]->(m))`. +Description of the returned code:: +The use of `shortestPath` and `allShortestPaths` with fixed length relationships is deprecated and will be removed in a future version. +Please use a path with a length of `1 [r*1..1]` instead or a `Match` with a `limit`. Suggestions for improvement:: If the relationship length is fixed, there is no reason to search for the shortest path. @@ -1790,13 +1785,14 @@ Instead, you can rewrite it to the following: ---- MATCH (a: Start)-[r]->(b: End) RETURN b LIMIT 1 ---- + ====== ===== .Using a deprecated runtime option [.tabbed-example] ===== -[.include-with-neo4j-code] +[.include-with-GQLSTATUS-code] ====== Query:: + @@ -1805,8 +1801,13 @@ Query:: CYPHER runtime = interpreted MATCH (n) RETURN n ---- -Description of the returned code:: -The query used a deprecated runtime option. (`'runtime=interpreted'` is deprecated, please use `'runtime=slotted'` instead) +Returned GQLSTATUS code:: +01N01 + +Returned status description:: +warn: feature deprecated with replacement. +`runtime=interpreted` is deprecated. +It is replaced by `runtime=slotted`. Suggestions for improvement:: Runtime `interpreted` is deprecated and another runtime is used instead. @@ -1816,9 +1817,8 @@ Alternatively, you can remove the runtime option to use the default runtime. ---- MATCH (n) RETURN n ---- - ====== -[.include-with-GQLSTATUS-code] +[.include-with-neo4j--code] ====== Query:: + @@ -1827,13 +1827,8 @@ Query:: CYPHER runtime = interpreted MATCH (n) RETURN n ---- -Returned GQLSTATUS code:: -01N01 - -Returned status description:: -warn: feature deprecated with replacement. -`runtime=interpreted` is deprecated. -It is replaced by `runtime=slotted`. +Description of the returned code:: +The query used a deprecated runtime option. (`'runtime=interpreted'` is deprecated, please use `'runtime=slotted'` instead) Suggestions for improvement:: Runtime `interpreted` is deprecated and another runtime is used instead. @@ -1843,13 +1838,14 @@ Alternatively, you can remove the runtime option to use the default runtime. ---- MATCH (n) RETURN n ---- + ====== ===== .Using the `text-1.0` index provider when creating a text index [.tabbed-example] ===== -[.include-with-neo4j-code] +[.include-with-GQLSTATUS-code] ====== Query:: + @@ -1858,9 +1854,13 @@ Query:: CREATE TEXT INDEX FOR (n:Label) ON (n.prop) OPTIONS {indexProvider : 'text-1.0'} ---- -Description of the returned code:: -The `text-1.0` provider for text indexes is deprecated and will be removed in a future version. -Please use `text-2.0` instead. +Returned GQLSTATUS code:: +01N01 + +Returned status description:: +warn: feature deprecated with replacement. +`text-1.0` is deprecated. +It is replaced by `text-2.0`. Suggestions for improvement:: Update the option `indexProvider` with the value `text-2.0`. @@ -1869,24 +1869,19 @@ Update the option `indexProvider` with the value `text-2.0`. ---- CREATE TEXT INDEX FOR (n:Label) ON (n.prop) OPTIONS {indexProvider : 'text-2.0'} ---- - ====== -[.include-with-GQLSTATUS-code] +[.include-with-neo4j--code] ====== Query:: + [source,cypher] ---- -CREATE TEXT INDEX FOR (n:Label) ON (n.prop) OPTIONS {indexProvider : 'text-1.0'} ----- - -Returned GQLSTATUS code:: -01N01 - -Returned status description:: -warn: feature deprecated with replacement. -`text-1.0` is deprecated. -It is replaced by `text-2.0`. +CREATE TEXT INDEX FOR (n:Label) ON (n.prop) OPTIONS {indexProvider : 'text-1.0'} +---- + +Description of the returned code:: +The `text-1.0` provider for text indexes is deprecated and will be removed in a future version. +Please use `text-2.0` instead. Suggestions for improvement:: Update the option `indexProvider` with the value `text-2.0`. @@ -1895,28 +1890,13 @@ Update the option `indexProvider` with the value `text-2.0`. ---- CREATE TEXT INDEX FOR (n:Label) ON (n.prop) OPTIONS {indexProvider : 'text-2.0'} ---- + ====== ===== .Using a renamed or a deprecated procedure [.tabbed-example] ===== -[.include-with-neo4j-code] -====== - -[source,cypher] ----- -CALL unsupported.dbms.shutdown ----- - -Description of the returned code:: -The query used a deprecated procedure: `'unsupported.dbms.shutdown'`. - -Suggestions for improvement:: -Remove the use of the deprecated procedure. -If there is a suggested replacement, update to use the replacement instead. - -====== [.include-with-GQLSTATUS-deprecated-with-replacement] ====== [source,cypher] @@ -1947,34 +1927,27 @@ Returned status description:: warn: feature deprecated without replacement. `unsupported.dbms.shutdown` is deprecated and will be removed without a replacement. ====== -===== - -.Using id() function -[.tabbed-example] -===== -[.include-with-neo4j-code] +[.include-with-neo4j--code] ====== -Query:: -+ [source,cypher] ---- -MATCH (a) -RETURN id(a) +CALL unsupported.dbms.shutdown ---- Description of the returned code:: -The query used a deprecated function: `id`. +The query used a deprecated procedure: `'unsupported.dbms.shutdown'`. Suggestions for improvement:: -Use the function `elementId()` instead. -+ -[source,cypher] ----- -MATCH (a) -RETURN elementId(a) ----- +Remove the use of the deprecated procedure. +If there is a suggested replacement, update to use the replacement instead. + ====== +===== + +.Using id() function +[.tabbed-example] +===== [.include-with-GQLSTATUS-deprecated-with-replacement] ====== Query:: @@ -2019,6 +1992,29 @@ Returned status description:: warn: feature deprecated without replacement. `id` is deprecated and will be removed without a replacement. ====== +[.include-with-neo4j--code] +====== + +Query:: ++ +[source,cypher] +---- +MATCH (a) +RETURN id(a) +---- + +Description of the returned code:: +The query used a deprecated function: `id`. + +Suggestions for improvement:: +Use the function `elementId()` instead. ++ +[source,cypher] +---- +MATCH (a) +RETURN elementId(a) +---- +====== ===== .Using an unescaped variable named 'where' in a node pattern @@ -2605,7 +2601,7 @@ END AS check .Notification details [cols="<1s,<4"] |=== -|Neo4j code +|Neo4j code m|Neo.ClientNotification.Statement.FeatureDeprecationWarning |Title a|This feature is deprecated and will be removed in future versions. @@ -2632,7 +2628,7 @@ m|WARNING .Using Cypher query option `connectComponentsPlanner` [.tabbed-example] ===== -[.include-with-neo4j-code] +[.include-with-GQLSTATUS-code] ====== Query:: + @@ -2640,13 +2636,15 @@ Query:: ---- CYPHER connectComponentsPlanner=greedy MATCH (a), (b) RETURN * ---- -Description of the returned code:: -The Cypher query option `connectComponentsPlanner` is deprecated and will be removed without a replacement. -The product's default behavior of using a cost-based IDP search algorithm when combining sub-plans will be kept. -For more information, see link:https://neo4j.com/docs/cypher-manual/current/query-tuning/query-options/#cypher-planner[Cypher manual -> Cypher planner]. +Returned GQLSTATUS code:: +01N02 + +Returned status description:: +warn: feature deprecated without replacement. +`connectComponentsPlanner` is deprecated and will be removed without a replacement. ====== -[.include-with-GQLSTATUS-code] +[.include-with-neo4j--code] ====== Query:: + @@ -2654,13 +2652,11 @@ Query:: ---- CYPHER connectComponentsPlanner=greedy MATCH (a), (b) RETURN * ---- +Description of the returned code:: +The Cypher query option `connectComponentsPlanner` is deprecated and will be removed without a replacement. +The product's default behavior of using a cost-based IDP search algorithm when combining sub-plans will be kept. +For more information, see link:https://neo4j.com/docs/cypher-manual/current/query-tuning/query-options/#cypher-planner[Cypher manual -> Cypher planner]. -Returned GQLSTATUS code:: -01N02 - -Returned status description:: -warn: feature deprecated without replacement. -`connectComponentsPlanner` is deprecated and will be removed without a replacement. ====== ===== @@ -2670,7 +2666,7 @@ warn: feature deprecated without replacement. .Notification details [cols="<1s,<4"] |=== -|Neo4j code +|Neo4j code m|Neo.ClientNotification.Statement.FeatureDeprecationWarning |Title a|This feature is deprecated and will be removed in future versions. @@ -2695,7 +2691,7 @@ m|WARNING .Notification details [cols="<1s,<4"] |=== -|Neo4j code +|Neo4j code m|Neo.ClientNotification.Request.DeprecatedFormat |Title a|The client made a request for a format which has been deprecated. @@ -2727,7 +2723,7 @@ Verify that this is the intended behavior of your query or command. .Notification details [cols="<1s,<4"] |=== -|Neo4j code +|Neo4j code m|Neo.ClientNotification.Security.CommandHasNoEffect |Title a|`` has no effect.* @@ -2755,7 +2751,7 @@ m|INFORMATION .Revoking a role from a user who does not have that role [.tabbed-example] ===== -[.include-with-neo4j-code] +[.include-with-GQLSTATUS-code] ====== Command:: + @@ -2764,16 +2760,18 @@ Command:: REVOKE ROLE admin, reader FROM jane ---- -Title of the returned code:: -`REVOKE ROLE reader FROM jane` has no effect. +Returned GQLSTATUS code:: +00N71 -Description of the returned code:: -The user does not have the role. See Status Codes documentation for more information. +Returned status description:: +note: successful completion - role or privilege not assigned. +`REVOKE ROLE reader FROM jane` has no effect. +The role or privilege is not assigned. Suggestions for improvement:: Verify that this is the intended role and user. ====== -[.include-with-GQLSTATUS-code] +[.include-with-neo4j--code] ====== Command:: + @@ -2782,13 +2780,11 @@ Command:: REVOKE ROLE admin, reader FROM jane ---- -Returned GQLSTATUS code:: -00N71 - -Returned status description:: -note: successful completion - role or privilege not assigned. +Title of the returned code:: `REVOKE ROLE reader FROM jane` has no effect. -The role or privilege is not assigned. + +Description of the returned code:: +The user does not have the role. See Status Codes documentation for more information. Suggestions for improvement:: Verify that this is the intended role and user. @@ -2798,8 +2794,9 @@ Verify that this is the intended role and user. .Revoking a privilege from a role that does not have that privilege [.tabbed-example] ===== -[.include-with-neo4j-code] +[.include-with-GQLSTATUS-code] ====== + Command:: + [source, cypher] @@ -2807,18 +2804,20 @@ Command:: REVOKE WRITE ON GRAPH * FROM reader ---- -Title of the returned code:: -`REVOKE DENY WRITE ON GRAPH * FROM reader` has no effect. +Returned GQLSTATUS code:: +00N71 -Description of the returned code:: -The role does not have the privilege. See Status Codes documentation for more information. +Returned status description:: +note: successful completion - role or privilege not assigned. +`REVOKE DENY WRITE ON GRAPH * FROM reader` has no effect. +The role or privilege is not assigned. Suggestions for improvement:: Verify that this is the intended privilege and role. + ====== -[.include-with-GQLSTATUS-code] +[.include-with-neo4j--code] ====== - Command:: + [source, cypher] @@ -2826,17 +2825,14 @@ Command:: REVOKE WRITE ON GRAPH * FROM reader ---- -Returned GQLSTATUS code:: -00N71 - -Returned status description:: -note: successful completion - role or privilege not assigned. +Title of the returned code:: `REVOKE DENY WRITE ON GRAPH * FROM reader` has no effect. -The role or privilege is not assigned. + +Description of the returned code:: +The role does not have the privilege. See Status Codes documentation for more information. Suggestions for improvement:: Verify that this is the intended privilege and role. - ====== ===== @@ -2847,7 +2843,7 @@ Verify that this is the intended privilege and role. .Notification details [cols="<1s,<4"] |=== -|Neo4j code +|Neo4j code m|Neo.ClientNotification.Security.CommandHasNoEffect |Title a|`` has no effect.* @@ -2875,7 +2871,7 @@ m|INFORMATION .Granting a role to a user who already has that role [.tabbed-example] ===== -[.include-with-neo4j-code] +[.include-with-GQLSTATUS-code] ====== Command:: + @@ -2883,17 +2879,20 @@ Command:: ---- GRANT ROLE admin TO john ---- -Title of the returned code:: -`GRANT ROLE admin TO john` has no effect. -Description of the returned code:: -The user already has the role. See Status Codes documentation for more information. +Returned GQLSTATUS code:: +00N70 + +Returned status description:: +note: successful completion - role or privilege already assigned. +`GRANT ROLE admin TO john` has no effect. +The role or privilege is already assigned. Suggestions for improvement:: Verify that this is the intended role and user. ====== -[.include-with-GQLSTATUS-code] +[.include-with-neo4j--code] ====== Command:: + @@ -2901,14 +2900,11 @@ Command:: ---- GRANT ROLE admin TO john ---- - -Returned GQLSTATUS code:: -00N70 - -Returned status description:: -note: successful completion - role or privilege already assigned. +Title of the returned code:: `GRANT ROLE admin TO john` has no effect. -The role or privilege is already assigned. + +Description of the returned code:: +The user already has the role. See Status Codes documentation for more information. Suggestions for improvement:: Verify that this is the intended role and user. @@ -2921,7 +2917,7 @@ Verify that this is the intended role and user. // This command returns 2 notifications, one for NODES and one for RELATIONSHIPS. [.tabbed-example] ===== -[.include-with-neo4j-code] +[.include-with-GQLSTATUS-code] ====== Command:: + @@ -2930,17 +2926,18 @@ Command:: GRANT TRAVERSE ON GRAPH * TO reader ---- -Title of the returned code:: -`GRANT TRAVERSE ON GRAPH * NODE * TO reader` has no effect. +Returned GQLSTATUS code:: +00N70 -Description of the returned code:: -The role already has the privilege. See Status Codes documentation for more information. +Returned status description:: +note: successful completion - role or privilege already assigned. +`GRANT TRAVERSE ON GRAPH * TO reader` has no effect. +The role or privilege is already assigned. Suggestions for improvement:: Verify that this is the intended privilege and role. - ====== -[.include-with-GQLSTATUS-code] +[.include-with-neo4j--code] ====== Command:: + @@ -2949,16 +2946,15 @@ Command:: GRANT TRAVERSE ON GRAPH * TO reader ---- -Returned GQLSTATUS code:: -00N70 +Title of the returned code:: +`GRANT TRAVERSE ON GRAPH * NODE * TO reader` has no effect. -Returned status description:: -note: successful completion - role or privilege already assigned. -`GRANT TRAVERSE ON GRAPH * TO reader` has no effect. -The role or privilege is already assigned. +Description of the returned code:: +The role already has the privilege. See Status Codes documentation for more information. Suggestions for improvement:: Verify that this is the intended privilege and role. + ====== ===== @@ -2970,7 +2966,7 @@ Verify that this is the intended privilege and role. .Notification details [cols="<1s,<4"] |=== -|Neo4j code +|Neo4j code m|Neo.ClientNotification.Security.ImpossibleRevokeCommand |Title a|`` has no effect.* @@ -2997,26 +2993,6 @@ m|WARNING .Revoking a non-existing role from a user [.tabbed-example] ===== -[.include-with-neo4j-code] -====== -Command:: -+ -[source, cypher] ----- -REVOKE ROLE manager, reader FROM jane ----- - -Title of the returned code:: -`REVOKE ROLE manager FROM jane` has no effect. - -Description of the returned code:: -Role does not exist. Make sure nothing is misspelled. -This notification will become an error in a future major version. -See Status Codes documentation for more information. - -Suggestions for improvement:: -Verify that this is the intended role and that it is spelled correctly. -====== [.include-with-GQLSTATUS-code] ====== Command:: @@ -3039,31 +3015,31 @@ This notification will become an error in a future major version. Suggestions for improvement:: Verify that this is the intended role and that it is spelled correctly. ====== -===== - -.Revoking a role from a non-existing user -[.tabbed-example] -===== -[.include-with-neo4j-code] +[.include-with-neo4j--code] ====== Command:: + [source, cypher] ---- -REVOKE ROLE reader FROM alice +REVOKE ROLE manager, reader FROM jane ---- Title of the returned code:: -`REVOKE ROLE reader FROM alice` has no effect. +`REVOKE ROLE manager FROM jane` has no effect. Description of the returned code:: -User does not exist. -Make sure nothing is misspelled. +Role does not exist. Make sure nothing is misspelled. This notification will become an error in a future major version. +See Status Codes documentation for more information. Suggestions for improvement:: -Verify that this is the intended user and that it is spelled correctly. +Verify that this is the intended role and that it is spelled correctly. ====== +===== + +.Revoking a role from a non-existing user +[.tabbed-example] +===== [.include-with-GQLSTATUS-code] ====== @@ -3082,38 +3058,38 @@ warn: impossible revoke command. `REVOKE ROLE reader FROM alice` has no effect. User does not exist. Make sure nothing is misspelled. -This notification will become an error in a future major version. -See Status Codes documentation for more information. -o -Suggestions for improvement:: -Verify that this is the intended user and that it is spelled correctly. -====== -===== - - -.Revoking a privilege from a non-existing role -[.tabbed-example] -===== -[.include-with-neo4j-code] +This notification will become an error in a future major version. +See Status Codes documentation for more information. +o +Suggestions for improvement:: +Verify that this is the intended user and that it is spelled correctly. +====== +[.include-with-neo4j--code] ====== Command:: + [source, cypher] ---- -REVOKE GRANT WRITE ON GRAPH * FROM manager +REVOKE ROLE reader FROM alice ---- Title of the returned code:: -`REVOKE GRANT WRITE ON GRAPH * FROM manager` has no effect. +`REVOKE ROLE reader FROM alice` has no effect. Description of the returned code:: -Role does not exist. Make sure nothing is misspelled. +User does not exist. +Make sure nothing is misspelled. This notification will become an error in a future major version. -See Status Codes documentation for more information. Suggestions for improvement:: -Verify that this is the intended role and that it is spelled correctly. +Verify that this is the intended user and that it is spelled correctly. ====== +===== + + +.Revoking a privilege from a non-existing role +[.tabbed-example] +===== [.include-with-GQLSTATUS-code] ====== @@ -3137,31 +3113,31 @@ This notification will become an error in a future major version. Suggestions for improvement:: Verify that this is the intended role and that it is spelled correctly. ====== -===== - -.Revoking a privilege on a non-existing graph from a role -[.tabbed-example] -===== -[.include-with-neo4j-code] +[.include-with-neo4j--code] ====== Command:: + [source, cypher] ---- -REVOKE GRANT WRITE ON GRAPH neo3j FROM editor +REVOKE GRANT WRITE ON GRAPH * FROM manager ---- Title of the returned code:: -`REVOKE GRANT WRITE ON GRAPH neo3j FROM editor` has no effect. +`REVOKE GRANT WRITE ON GRAPH * FROM manager` has no effect. Description of the returned code:: -Database `neo3j` does not exist. Make sure nothing is misspelled. +Role does not exist. Make sure nothing is misspelled. This notification will become an error in a future major version. See Status Codes documentation for more information. Suggestions for improvement:: -Verify that this is the intended graph and that it is spelled correctly. +Verify that this is the intended role and that it is spelled correctly. ====== +===== + +.Revoking a privilege on a non-existing graph from a role +[.tabbed-example] +===== [.include-with-GQLSTATUS-code] ====== Command:: @@ -3184,22 +3160,17 @@ This notification will become an error in a future major version. Suggestions for improvement:: Verify that this is the intended graph and that it is spelled correctly. ====== -===== - -.Revoking a privilege on a non-existing database from a role -[.tabbed-example] -===== -[.include-with-neo4j-code] +[.include-with-neo4j--code] ====== Command:: + [source, cypher] ---- -REVOKE GRANT ACCESS ON DATABASE neo3j FROM editor +REVOKE GRANT WRITE ON GRAPH neo3j FROM editor ---- Title of the returned code:: -`REVOKE GRANT ACCESS ON DATABASE neo3j FROM editor` has no effect. +`REVOKE GRANT WRITE ON GRAPH neo3j FROM editor` has no effect. Description of the returned code:: Database `neo3j` does not exist. Make sure nothing is misspelled. @@ -3207,8 +3178,13 @@ This notification will become an error in a future major version. See Status Codes documentation for more information. Suggestions for improvement:: -Verify that this is the intended database and that it is spelled correctly. +Verify that this is the intended graph and that it is spelled correctly. ====== +===== + +.Revoking a privilege on a non-existing database from a role +[.tabbed-example] +===== [.include-with-GQLSTATUS-code] ====== Command:: @@ -3232,41 +3208,32 @@ Suggestions for improvement:: Verify that this is the intended database and that it is spelled correctly. ====== -===== - - -.Revoking a privilege from a role with wildcard graph parameter -[.tabbed-example] -===== -[.include-with-neo4j-code] +[.include-with-neo4j--code] ====== -Parameter:: -+ -[source, javascript] ----- -{ - "graph": "*" -} ----- Command:: + [source, cypher] ---- -REVOKE GRANT CREATE ON GRAPH $graph FROM PUBLIC +REVOKE GRANT ACCESS ON DATABASE neo3j FROM editor ---- Title of the returned code:: -`REVOKE GRANT CREATE ON GRAPH $graph FROM PUBLIC` has no effect. +`REVOKE GRANT ACCESS ON DATABASE neo3j FROM editor` has no effect. Description of the returned code:: -Parameterized database and graph names do not support wildcards. -Make sure nothing is misspelled. +Database `neo3j` does not exist. Make sure nothing is misspelled. This notification will become an error in a future major version. See Status Codes documentation for more information. Suggestions for improvement:: -Use `GRAPH *` without the parameter to revoke the privilege on all graphs. +Verify that this is the intended database and that it is spelled correctly. ====== +===== + + +.Revoking a privilege from a role with wildcard graph parameter +[.tabbed-example] +===== [.include-with-GQLSTATUS-code] ====== Parameter:: @@ -3299,30 +3266,25 @@ Use `GRAPH *` without the parameter to revoke the privilege on all graphs. ====== -===== - -.Revoking a privilege from a role with a wildcard database parameter -[.tabbed-example] -===== -[.include-with-neo4j-code] +[.include-with-neo4j--code] ====== Parameter:: + [source, javascript] ---- { - "database": "*" + "graph": "*" } ---- Command:: + [source, cypher] ---- -REVOKE GRANT ACCESS ON DATABASE $database FROM PUBLIC +REVOKE GRANT CREATE ON GRAPH $graph FROM PUBLIC ---- Title of the returned code:: -`REVOKE GRANT ACCESS ON DATABASE $database FROM PUBLIC` has no effect. +`REVOKE GRANT CREATE ON GRAPH $graph FROM PUBLIC` has no effect. Description of the returned code:: Parameterized database and graph names do not support wildcards. @@ -3331,8 +3293,13 @@ This notification will become an error in a future major version. See Status Codes documentation for more information. Suggestions for improvement:: -Use `DATABASE *` without the parameter to revoke the privilege on all databases. +Use `GRAPH *` without the parameter to revoke the privilege on all graphs. ====== +===== + +.Revoking a privilege from a role with a wildcard database parameter +[.tabbed-example] +===== [.include-with-GQLSTATUS-code] ====== @@ -3364,6 +3331,35 @@ This notification will become an error in a future major version. Suggestions for improvement:: Use `DATABASE *` without the parameter to revoke the privilege on all databases. +====== +[.include-with-neo4j--code] +====== +Parameter:: ++ +[source, javascript] +---- +{ + "database": "*" +} +---- +Command:: ++ +[source, cypher] +---- +REVOKE GRANT ACCESS ON DATABASE $database FROM PUBLIC +---- + +Title of the returned code:: +`REVOKE GRANT ACCESS ON DATABASE $database FROM PUBLIC` has no effect. + +Description of the returned code:: +Parameterized database and graph names do not support wildcards. +Make sure nothing is misspelled. +This notification will become an error in a future major version. +See Status Codes documentation for more information. + +Suggestions for improvement:: +Use `DATABASE *` without the parameter to revoke the privilege on all databases. ====== ===== @@ -3373,7 +3369,7 @@ Use `DATABASE *` without the parameter to revoke the privilege on all databases. .Notification details [cols="<1s,<4"] |=== -|Neo4j code +|Neo4j code m|Neo.ClientNotification.Security.AuthProviderNotDefined |Title a|The auth provider is not defined. @@ -3489,7 +3485,7 @@ If it is correct, make sure to add it as a known auth provider in one or both of .Notification details [cols="<1s,<4"] |=== -|Neo4j code +|Neo4j code m|Neo.ClientNotification.Security.ExternalAuthNotEnabled |Title a|External auth for user is not enabled. @@ -3600,7 +3596,7 @@ Topology notifications provide additional information related to managing databa .Notification details [cols="<1s,<4"] |=== -|Neo4j code +|Neo4j code m|Neo.ClientNotification.Cluster.ServerAlreadyEnabled |Title a| `` has no effect. @@ -3625,7 +3621,7 @@ m|INFORMATION .Enabling an already enabled server [.tabbed-example] ===== -[.include-with-neo4j-code] +[.include-with-GQLSTATUS-code] ====== Command:: + @@ -3634,12 +3630,17 @@ Command:: ENABLE SERVER "123e4567-e89b-12d3-a456-426614174000" ---- -Description of the returned code:: +Returned GQLSTATUS code:: +00N80 + +Returned status description:: +note: successful completion - server already enabled. +`ENABLE SERVER` has no effect. Server `123e4567-e89b-12d3-a456-426614174000` is already enabled. Verify that this is the intended server. ====== -[.include-with-GQLSTATUS-code] +[.include-with-neo4j--code] ====== Command:: + @@ -3648,12 +3649,7 @@ Command:: ENABLE SERVER "123e4567-e89b-12d3-a456-426614174000" ---- -Returned GQLSTATUS code:: -00N80 - -Returned status description:: -note: successful completion - server already enabled. -`ENABLE SERVER` has no effect. +Description of the returned code:: Server `123e4567-e89b-12d3-a456-426614174000` is already enabled. Verify that this is the intended server. @@ -3666,7 +3662,7 @@ Verify that this is the intended server. .Notification details [cols="<1s,<4"] |=== -|Neo4j code +|Neo4j code m|Neo.ClientNotification.Cluster.ServerAlreadyCordoned |Title a| `` has no effect. @@ -3691,7 +3687,7 @@ m|INFORMATION .Cordoning an already cordoned server [.tabbed-example] ===== -[.include-with-neo4j-code] +[.include-with-GQLSTATUS-code] ====== Command:: + @@ -3700,12 +3696,17 @@ Command:: CORDON SERVER "123e4567-e89b-12d3-a456-426614174000" ---- -Description of the returned code:: +Returned GQLSTATUS code:: +00N81 + +Returned status description:: +note: successful completion - server already cordoned. +`CORDON SERVER` has no effect. Server `123e4567-e89b-12d3-a456-426614174000` is already cordoned. Verify that this is the intended server. ====== -[.include-with-GQLSTATUS-code] +[.include-with-neo4j--code] ====== Command:: + @@ -3714,12 +3715,7 @@ Command:: CORDON SERVER "123e4567-e89b-12d3-a456-426614174000" ---- -Returned GQLSTATUS code:: -00N81 - -Returned status description:: -note: successful completion - server already cordoned. -`CORDON SERVER` has no effect. +Description of the returned code:: Server `123e4567-e89b-12d3-a456-426614174000` is already cordoned. Verify that this is the intended server. @@ -3732,7 +3728,7 @@ Verify that this is the intended server. .Notification details [cols="<1s,<4"] |=== -|Neo4j code +|Neo4j code m|Neo.ClientNotification.Cluster.NoDatabasesReallocated |Title a| `` has no effect. @@ -3756,7 +3752,7 @@ m|INFORMATION .Reallocating databases resulted in no allocation changes [.tabbed-example] ===== -[.include-with-neo4j-code] +[.include-with-GQLSTATUS-code] ====== Command:: + @@ -3765,9 +3761,14 @@ Command:: REALLOCATE DATABASES ---- -Description of the returned code:: -No databases were reallocated. No better allocation is currently possible. +Returned GQLSTATUS code:: +00N82 +Returned status description:: +note: successful completion - no databases reallocated. +`REALLOCATE DATABASES` has no effect. +No databases were reallocated. +No better allocation is currently possible. Example scenarios:: **Scenario 1:** The cluster is already balanced. @@ -3778,7 +3779,7 @@ For example, when there are three servers, each hosting databases `foo` and `bar For example, assuming server 1 hosts databases `foo` and `bar`, server 2 hosts only `foo`, and server 3 hosts no databases. Then, a better allocation would move `foo` from server 1 to server 3, but if server 3 has the constraint `deniedDatabases:['foo']}`, then the cluster is already balanced subject to this constraint. ====== -[.include-with-GQLSTATUS-code] +[.include-with-neo4j--code] ====== Command:: + @@ -3787,14 +3788,9 @@ Command:: REALLOCATE DATABASES ---- -Returned GQLSTATUS code:: -00N82 +Description of the returned code:: +No databases were reallocated. No better allocation is currently possible. -Returned status description:: -note: successful completion - no databases reallocated. -`REALLOCATE DATABASES` has no effect. -No databases were reallocated. -No better allocation is currently possible. Example scenarios:: **Scenario 1:** The cluster is already balanced. @@ -3816,7 +3812,7 @@ For example, `CREATE DATABASE`, `ALTER DATABASE`, `DEALLOCATE DATABASES FROM SER .Notification details [cols="<1s,<4"] |=== -|Neo4j code +|Neo4j code m|Neo.ClientNotification.Cluster.CordonedServersExistedDuringAllocation |Title a| Cordoned servers existed when making an allocation decision. @@ -3840,7 +3836,7 @@ m|INFORMATION .Cordoned servers existed during an allocation decision [.tabbed-example] ===== -[.include-with-neo4j-code] +[.include-with-GQLSTATUS-code] ====== The example assumes that you have a cluster with three servers, of which server `123e4567-e89b-12d3-a456-426614174000` is cordoned using the `dbms.cluster.cordonServer` procedure. Then the below command will return this notification. @@ -3851,10 +3847,16 @@ Command:: CREATE DATABASE foo TOPOLOGY 2 PRIMARIES ---- -Description of the returned code:: -Server(s) `123e4567-e89b-12d3-a456-426614174000` are cordoned. This can impact allocation decisions. +Returned GQLSTATUS code:: +00N83 + +Returned status description:: +note: successful completion - cordoned servers existed during allocation. +Cordoned servers existed when making an allocation decision. +Server(s) `123e4567-e89b-12d3-a456-426614174000` are cordoned. +This can impact allocation decisions. ====== -[.include-with-GQLSTATUS-code] +[.include-with-neo4j--code] ====== The example assumes that you have a cluster with three servers, of which server `123e4567-e89b-12d3-a456-426614174000` is cordoned using the `dbms.cluster.cordonServer` procedure. Then the below command will return this notification. @@ -3865,14 +3867,8 @@ Command:: CREATE DATABASE foo TOPOLOGY 2 PRIMARIES ---- -Returned GQLSTATUS code:: -00N83 - -Returned status description:: -note: successful completion - cordoned servers existed during allocation. -Cordoned servers existed when making an allocation decision. -Server(s) `123e4567-e89b-12d3-a456-426614174000` are cordoned. -This can impact allocation decisions. +Description of the returned code:: +Server(s) `123e4567-e89b-12d3-a456-426614174000` are cordoned. This can impact allocation decisions. ====== ===== @@ -3883,7 +3879,7 @@ This can impact allocation decisions. .Notification details [cols="<1s,<4"] |=== -|Neo4j code +|Neo4j code m|Neo.ClientNotification.Cluster.RequestedTopologyMatchedCurrentTopology |Title a| `` has no effect. @@ -3908,7 +3904,7 @@ m|INFORMATION .Requested topology matched current topology [.tabbed-example] ===== -[.include-with-neo4j-code] +[.include-with-GQLSTATUS-code] ====== The example assumes that you have a cluster with three servers and a database `foo` with a topology of two primaries and one secondary. @@ -3919,10 +3915,17 @@ Command:: ALTER DATABASE foo SET TOPOLOGY 2 PRIMARIES 1 SECONDARY ---- -Description of the returned code:: -The requested topology matched the current topology. No allocations were changed. +Returned GQLSTATUS code:: +00N84 + +Returned status description:: +note: successful completion - requested topology matched current topology. +`ALTER DATABASE` has no effect. +The requested topology matched the current topology. +No allocations were changed. + ====== -[.include-with-GQLSTATUS-code] +[.include-with-neo4j--code] ====== The example assumes that you have a cluster with three servers and a database `foo` with a topology of two primaries and one secondary. @@ -3933,15 +3936,8 @@ Command:: ALTER DATABASE foo SET TOPOLOGY 2 PRIMARIES 1 SECONDARY ---- -Returned GQLSTATUS code:: -00N84 - -Returned status description:: -note: successful completion - requested topology matched current topology. -`ALTER DATABASE` has no effect. -The requested topology matched the current topology. -No allocations were changed. - +Description of the returned code:: +The requested topology matched the current topology. No allocations were changed. ====== ===== @@ -3956,7 +3952,7 @@ Schema notifications provide additional information related to indexes and const .Notification details [cols="<1s,<4"] |=== -|Neo4j code +|Neo4j code m|Neo.ClientNotification.Schema.IndexOrConstraintAlreadyExists |Title a|`` has no effect. @@ -3981,7 +3977,7 @@ m|INFORMATION .Creating an index when an equivalent index already exists [.tabbed-example] ===== -[.include-with-neo4j-code] +[.include-with-GQLSTATUS-code] ====== Given a range index on `(:Label \{property})` named `existingRangeIndex`. @@ -3992,14 +3988,16 @@ Command:: CREATE INDEX labelProperyRangeIndex IF NOT EXISTS FOR (n:Label) ON (n.property) ---- -Title of the returned code:: -`CREATE RANGE INDEX labelProperyRangeIndex IF NOT EXISTS FOR (e:Label) ON (e.property)` has no effect. +Returned GQLSTATUS code:: +00NA0 -Full description of the returned code:: +Returned status description:: +note: successful completion - index or constraint already exists. +`CREATE RANGE INDEX labelProperyRangeIndex IF NOT EXISTS FOR (e:Label) ON (e.property)` has no effect. `RANGE INDEX existingRangeIndex FOR (e:Label) ON (e.property)` already exists. ====== -[.include-with-GQLSTATUS-code] +[.include-with-neo4j--code] ====== Given a range index on `(:Label \{property})` named `existingRangeIndex`. @@ -4010,12 +4008,10 @@ Command:: CREATE INDEX labelProperyRangeIndex IF NOT EXISTS FOR (n:Label) ON (n.property) ---- -Returned GQLSTATUS code:: -00NA0 - -Returned status description:: -note: successful completion - index or constraint already exists. +Title of the returned code:: `CREATE RANGE INDEX labelProperyRangeIndex IF NOT EXISTS FOR (e:Label) ON (e.property)` has no effect. + +Full description of the returned code:: `RANGE INDEX existingRangeIndex FOR (e:Label) ON (e.property)` already exists. ====== @@ -4024,7 +4020,7 @@ note: successful completion - index or constraint already exists. .Creating an index when another unrelated index using that name already exists [.tabbed-example] ===== -[.include-with-neo4j-code] +[.include-with-GQLSTATUS-code] ====== Given a range index on `(:Label \{property})` named `myIndex`. @@ -4035,10 +4031,12 @@ Command:: CREATE TEXT INDEX myIndex IF NOT EXISTS FOR ()-[r:REL_TYPE]-() ON (r.property) ---- -Title of the returned code:: -`CREATE TEXT INDEX myIndex IF NOT EXISTS FOR ()-[e:REL_TYPE]-() ON (e.property)` has no effect. +Returned GQLSTATUS code:: +00NA0 -Full description of the returned code:: +Returned status description:: +note: successful completion - index or constraint already exists. +`CREATE TEXT INDEX myIndex IF NOT EXISTS FOR ()-[e:REL_TYPE]-() ON (e.property)` has no effect. `RANGE INDEX myIndex FOR (e:Label) ON (e.property)` already exists. Suggestions for improvement:: @@ -4050,7 +4048,7 @@ CREATE TEXT INDEX myIndex2 IF NOT EXISTS FOR ()-[r:REL_TYPE]-() ON (r.property) ---- ====== -[.include-with-GQLSTATUS-code] +[.include-with-neo4j--code] ====== Given a range index on `(:Label \{property})` named `myIndex`. @@ -4061,12 +4059,10 @@ Command:: CREATE TEXT INDEX myIndex IF NOT EXISTS FOR ()-[r:REL_TYPE]-() ON (r.property) ---- -Returned GQLSTATUS code:: -00NA0 - -Returned status description:: -note: successful completion - index or constraint already exists. +Title of the returned code:: `CREATE TEXT INDEX myIndex IF NOT EXISTS FOR ()-[e:REL_TYPE]-() ON (e.property)` has no effect. + +Full description of the returned code:: `RANGE INDEX myIndex FOR (e:Label) ON (e.property)` already exists. Suggestions for improvement:: @@ -4083,7 +4079,7 @@ CREATE TEXT INDEX myIndex2 IF NOT EXISTS FOR ()-[r:REL_TYPE]-() ON (r.property) .Creating a constraint when an identical constraint already exists [.tabbed-example] ===== -[.include-with-neo4j-code] +[.include-with-GQLSTATUS-code] ====== Given a node key constraint on `(:Label \{property})` named `nodeKeyLabelPropertyConstraint`. @@ -4094,14 +4090,16 @@ Command:: CREATE CONSTRAINT nodeKeyLabelPropertyConstraint IF NOT EXISTS FOR (n:Label) REQUIRE (n.property) IS NODE KEY ---- -Title of the returned code:: -`CREATE CONSTRAINT nodeKeyLabelPropertyConstraint IF NOT EXISTS FOR (e:Label) REQUIRE (e.property) IS NODE KEY` has no effect. +Returned GQLSTATUS code:: +00NA0 -Full description of the returned code:: +Returned status description:: +note: successful completion - index or constraint already exists. +`CREATE CONSTRAINT nodeKeyLabelPropertyConstraint IF NOT EXISTS FOR (e:Label) REQUIRE (e.property) IS NODE KEY` has no effect. `CONSTRAINT nodeKeyLabelPropertyConstraint FOR (e:Label) REQUIRE (e.property) IS NODE KEY` already exists. ====== -[.include-with-GQLSTATUS-code] +[.include-with-neo4j--code] ====== Given a node key constraint on `(:Label \{property})` named `nodeKeyLabelPropertyConstraint`. @@ -4112,12 +4110,10 @@ Command:: CREATE CONSTRAINT nodeKeyLabelPropertyConstraint IF NOT EXISTS FOR (n:Label) REQUIRE (n.property) IS NODE KEY ---- -Returned GQLSTATUS code:: -00NA0 - -Returned status description:: -note: successful completion - index or constraint already exists. +Title of the returned code:: `CREATE CONSTRAINT nodeKeyLabelPropertyConstraint IF NOT EXISTS FOR (e:Label) REQUIRE (e.property) IS NODE KEY` has no effect. + +Full description of the returned code:: `CONSTRAINT nodeKeyLabelPropertyConstraint FOR (e:Label) REQUIRE (e.property) IS NODE KEY` already exists. ====== @@ -4127,7 +4123,7 @@ note: successful completion - index or constraint already exists. .Creating a constraint when another unrelated constraint using that name already exists [.tabbed-example] ===== -[.include-with-neo4j-code] +[.include-with-GQLSTATUS-code] ====== Given a node key constraint on `(:Label \{property})` named `myConstraint`. @@ -4138,10 +4134,12 @@ Command:: CREATE CONSTRAINT myConstraint IF NOT EXISTS FOR (n:Label2) REQUIRE (n.property2) IS NOT NULL ---- -Title of the returned code:: -`CREATE CONSTRAINT myConstraint IF NOT EXISTS FOR (e:Label2) REQUIRE (e.property2) IS NOT NULL` has no effect. +Returned GQLSTATUS code:: +00NA0 -Full description of the returned code:: +Returned status description:: +note: successful completion - index or constraint already exists. +`CREATE CONSTRAINT myConstraint IF NOT EXISTS FOR (e:Label2) REQUIRE (e.property2) IS NOT NULL` has no effect. `CONSTRAINT myConstraint FOR (e:Label) REQUIRE (e.property) IS NODE KEY` already exists. Suggestions for improvement:: @@ -4153,7 +4151,7 @@ CREATE CONSTRAINT myConstraint2 IF NOT EXISTS FOR (n:Label2) REQUIRE (n.property ---- ====== -[.include-with-GQLSTATUS-code] +[.include-with-neo4j--code] ====== Given a node key constraint on `(:Label \{property})` named `myConstraint`. @@ -4164,12 +4162,10 @@ Command:: CREATE CONSTRAINT myConstraint IF NOT EXISTS FOR (n:Label2) REQUIRE (n.property2) IS NOT NULL ---- -Returned GQLSTATUS code:: -00NA0 - -Returned status description:: -note: successful completion - index or constraint already exists. +Title of the returned code:: `CREATE CONSTRAINT myConstraint IF NOT EXISTS FOR (e:Label2) REQUIRE (e.property2) IS NOT NULL` has no effect. + +Full description of the returned code:: `CONSTRAINT myConstraint FOR (e:Label) REQUIRE (e.property) IS NODE KEY` already exists. Suggestions for improvement:: @@ -4189,7 +4185,7 @@ CREATE CONSTRAINT myConstraint2 IF NOT EXISTS FOR (n:Label2) REQUIRE (n.property .Notification details [cols="<1s,<4"] |=== -|Neo4j code +|Neo4j code m|Neo.ClientNotification.Schema.IndexOrConstraintDoesNotExist |Title a|`` has no effect. @@ -4210,9 +4206,8 @@ m|INFORMATION .Attempting to drop a non-existing index [.tabbed-example] ===== -[.include-with-neo4j-code] +[.include-with-GQLSTATUS-code] ====== - Command:: + [source, cypher] @@ -4220,18 +4215,21 @@ Command:: DROP INDEX nonExistingIndex IF EXISTS ---- -Title of the returned code:: -`DROP INDEX nonExistingIndex IF EXISTS` has no effect. +Returned GQLSTATUS code:: +00NA1 -Full description of the returned code:: +Returned status description:: +note: successful completion - index or constraint does not exist. +`DROP INDEX nonExistingIndex IF EXISTS` has no effect. `nonExistingIndex` does not exist. Suggestions for improvement:: Verify that this is the intended index and that it is spelled correctly. ====== -[.include-with-GQLSTATUS-code] +[.include-with-neo4j--code] ====== + Command:: + [source, cypher] @@ -4239,12 +4237,10 @@ Command:: DROP INDEX nonExistingIndex IF EXISTS ---- -Returned GQLSTATUS code:: -00NA1 - -Returned status description:: -note: successful completion - index or constraint does not exist. +Title of the returned code:: `DROP INDEX nonExistingIndex IF EXISTS` has no effect. + +Full description of the returned code:: `nonExistingIndex` does not exist. Suggestions for improvement:: @@ -4256,9 +4252,8 @@ Verify that this is the intended index and that it is spelled correctly. .Attempting to drop a non-existing constraint [.tabbed-example] ===== -[.include-with-neo4j-code] +[.include-with-GQLSTATUS-code] ====== - Command:: + [source, cypher] @@ -4266,18 +4261,21 @@ Command:: DROP CONSTRAINT nonExistingConstraint IF EXISTS ---- -Title of the returned code:: -`DROP CONSTRAINT nonExistingConstraint IF EXISTS` has no effect. +Returned GQLSTATUS code:: +00NA1 -Full description of the returned code:: +Returned status description:: +note: successful completion - index or constraint does not exist. +`DROP CONSTRAINT nonExistingConstraint IF EXISTS` has no effect. `nonExistingConstraint` does not exist. Suggestions for improvement:: Verify that this is the intended constraint and that it is spelled correctly. ====== -[.include-with-GQLSTATUS-code] +[.include-with-neo4j--code] ====== + Command:: + [source, cypher] @@ -4285,12 +4283,10 @@ Command:: DROP CONSTRAINT nonExistingConstraint IF EXISTS ---- -Returned GQLSTATUS code:: -00NA1 - -Returned status description:: -note: successful completion - index or constraint does not exist. +Title of the returned code:: `DROP CONSTRAINT nonExistingConstraint IF EXISTS` has no effect. + +Full description of the returned code:: `nonExistingConstraint` does not exist. Suggestions for improvement:: @@ -4310,7 +4306,7 @@ Verify that this is the intended constraint and that it is spelled correctly. .Notification details [cols="<1s,<4"] |=== -|Neo4j code +|Neo4j code m|Neo.ClientNotification.Statement.SubqueryVariableShadowing |Title a|Variable in subquery is shadowing a variable with the same name from the outer scope. @@ -4334,7 +4330,7 @@ m|INFORMATION .Shadowing of a variable from the outer scope [.tabbed-example] ===== -[.include-with-neo4j-code] +[.include-with-GQLSTATUS-code] ====== Query:: + @@ -4348,9 +4344,13 @@ CALL { RETURN * ---- -Description of the returned code:: -Variable in subquery is shadowing a variable with the same name from the outer scope. -If you want to use that variable instead, it must be imported into the subquery using importing `WITH` clause. (the shadowing variable is: `n`) +Returned GQLSTATUS code:: +03N60 + +Returned status description:: +info: subquery variable shadowing. +The variable `n` in the subquery uses the same name as a variable from the outer query. +Use `WITH n` in the subquery to import the one from the outer scope unless you want it to be a new variable. Suggestions for improvement:: If the intended behavior of the query is for the variable in the subquery to be a new variable, then nothing needs to be done. @@ -4367,7 +4367,7 @@ CALL { RETURN * ---- ====== -[.include-with-GQLSTATUS-code] +[.include-with-neo4j--code] ====== Query:: + @@ -4381,13 +4381,9 @@ CALL { RETURN * ---- -Returned GQLSTATUS code:: -03N60 - -Returned status description:: -info: subquery variable shadowing. -The variable `n` in the subquery uses the same name as a variable from the outer query. -Use `WITH n` in the subquery to import the one from the outer scope unless you want it to be a new variable. +Description of the returned code:: +Variable in subquery is shadowing a variable with the same name from the outer scope. +If you want to use that variable instead, it must be imported into the subquery using importing `WITH` clause. (the shadowing variable is: `n`) Suggestions for improvement:: If the intended behavior of the query is for the variable in the subquery to be a new variable, then nothing needs to be done. @@ -4412,7 +4408,7 @@ RETURN * .Notification details [cols="<1s,<4"] |=== -|Neo4j code +|Neo4j code m|Neo.ClientNotification.Statement.RedundantOptionalProcedure |Title a|The use of `OPTIONAL` is redundant when the procedure calls a void procedure. @@ -4433,7 +4429,7 @@ m|INFORMATION .Redundant use of `OPTIONAL` in a procedure call [.tabbed-example] ===== -[.include-with-neo4j-code] +[.include-with-GQLSTATUS-code] ====== Query:: + @@ -4441,9 +4437,11 @@ Query:: ---- OPTIONAL CALL db.createLabel("A") ---- +Returned GQLSTATUS code:: +03N61 -Description of the returned code:: -The use of `OPTIONAL` is redundant as `CALL db.createLabel` is a void procedure. +Returned status description:: +info: redundant optional procedure. The use of `OPTIONAL` is redundant as `CALL db.createLabel` is a void procedure. Suggestions for improvement:: If the intended behavior of the query is to use a void procedure, the `OPTIONAL` keyword can be removed without impacting the query. @@ -4453,7 +4451,7 @@ If the intended behavior of the query is to use a void procedure, the `OPTIONAL` CALL db.createLabel("A") ---- ====== -[.include-with-GQLSTATUS-code] +[.include-with-neo4j--code] ====== Query:: + @@ -4461,11 +4459,9 @@ Query:: ---- OPTIONAL CALL db.createLabel("A") ---- -Returned GQLSTATUS code:: -03N61 -Returned status description:: -info: redundant optional procedure. The use of `OPTIONAL` is redundant as `CALL db.createLabel` is a void procedure. +Description of the returned code:: +The use of `OPTIONAL` is redundant as `CALL db.createLabel` is a void procedure. Suggestions for improvement:: If the intended behavior of the query is to use a void procedure, the `OPTIONAL` keyword can be removed without impacting the query. @@ -4483,7 +4479,7 @@ CALL db.createLabel("A") .Notification details [cols="<1s,<4"] |=== -|Neo4j code +|Neo4j code m|Neo.ClientNotification.Statement.RedundantOptionalSubquery |Title a|The use of `OPTIONAL` is redundant when `CALL` is a unit subquery. @@ -4504,7 +4500,7 @@ m|INFORMATION .Redundant use of `OPTIONAL` in a `CALL` subquery [.tabbed-example] ===== -[.include-with-neo4j-code] +[.include-with-GQLSTATUS-code] ====== Query:: + @@ -4516,8 +4512,11 @@ OPTIONAL CALL (x) { } ---- +Returned GQLSTATUS code:: +03N62 + Description of the returned code:: -Optional is redundant in the case of a unit subquery. The use of `OPTIONAL` on unit subqueries have no effect and can be removed. +info: redundant optional subquery. The use of `OPTIONAL` is redundant as `CALL` is a unit subquery. Suggestions for improvement:: If the intended behavior of the query is for the subquery not to return any values, the `OPTIONAL` keyword can be removed without impacting the query. @@ -4530,7 +4529,7 @@ CALL (x) { } ---- ====== -[.include-with-GQLSTATUS-code] +[.include-with-neo4j--code] ====== Query:: + @@ -4542,11 +4541,8 @@ OPTIONAL CALL (x) { } ---- -Returned GQLSTATUS code:: -03N62 - Description of the returned code:: -info: redundant optional subquery. The use of `OPTIONAL` is redundant as `CALL` is a unit subquery. +Optional is redundant in the case of a unit subquery. The use of `OPTIONAL` on unit subqueries have no effect and can be removed. Suggestions for improvement:: If the intended behavior of the query is for the subquery not to return any values, the `OPTIONAL` keyword can be removed without impacting the query. @@ -4567,7 +4563,7 @@ CALL (x) { .Notification details [cols="<1s,<4"] |=== -|Neo4j code +|Neo4j code m|Neo.ClientNotification.Statement.ParameterNotProvided |Title a|The statement refers to a parameter that was not provided in the request. @@ -4592,7 +4588,7 @@ m|WARNING .Using an `EXPLAIN` query with parameters without providing them [.tabbed-example] ===== -[.include-with-neo4j-code] +[.include-with-GQLSTATUS-code] ====== Query:: + @@ -4602,15 +4598,18 @@ EXPLAIN WITH $param as param RETURN param ---- -Description of the returned code:: -Did not supply query with enough parameters. -The produced query plan will not be cached and is not executable without `EXPLAIN`. (Missing parameters: `param`) +Returned GQLSTATUS code:: +01N60 + +Returned status description:: +warn: parameter missing. +The query plan cannot be cached and is not executable without `EXPLAIN` due to the undefined parameter(s) `{ $param }`. +Provide the parameter(s). Suggestions for improvement:: Provide the parameter to be able to cache the plan. - ====== -[.include-with-GQLSTATUS-code] +[.include-with-neo4j--code] ====== Query:: + @@ -4620,16 +4619,13 @@ EXPLAIN WITH $param as param RETURN param ---- -Returned GQLSTATUS code:: -01N60 - -Returned status description:: -warn: parameter missing. -The query plan cannot be cached and is not executable without `EXPLAIN` due to the undefined parameter(s) `{ $param }`. -Provide the parameter(s). +Description of the returned code:: +Did not supply query with enough parameters. +The produced query plan will not be cached and is not executable without `EXPLAIN`. (Missing parameters: `param`) Suggestions for improvement:: Provide the parameter to be able to cache the plan. + ====== ===== @@ -4640,7 +4636,7 @@ Provide the parameter to be able to cache the plan. .Notification details [cols="<1s,<4"] |=== -|Neo4j code +|Neo4j code m|Neo.ClientNotification.Procedure.ProcedureWarning |Title a|The query used a procedure that generated a warning. @@ -4669,7 +4665,7 @@ When matching on a relationship type expression that can never be satisfied, for .Notification category details [cols="<1s,<4"] |=== -|Neo4j code +|Neo4j code m|Neo.ClientNotification.Statement.UnsatisfiableRelationshipTypeExpression |Title a|The query contains a relationship type expression that cannot be satisfied. @@ -4692,17 +4688,6 @@ m|WARNING .Matching on a relationship type expression that can never be satisfied [.tabbed-example] ===== -[.include-with-neo4j-code] -====== -Query:: -+ -[source,cypher] ----- -MATCH ()-[r:R1&R2]->() RETURN r ----- -Description of the returned code:: -Relationship type expression cannot possibly be satisfied. (`R1&R2` can never be fulfilled by any relationship. Relationships must have exactly one type.) -====== [.include-with-GQLSTATUS-code] ====== Query:: @@ -4719,6 +4704,17 @@ Returned status description:: warn: unsatisfiable relationship type expression. The expression `R1&R2` cannot be satisfied because relationships must have exactly one type. ====== +[.include-with-neo4j--code] +====== +Query:: ++ +[source,cypher] +---- +MATCH ()-[r:R1&R2]->() RETURN r +---- +Description of the returned code:: +Relationship type expression cannot possibly be satisfied. (`R1&R2` can never be fulfilled by any relationship. Relationships must have exactly one type.) +====== ===== [role=label--new-5.5] @@ -4728,7 +4724,7 @@ The expression `R1&R2` cannot be satisfied because relationships must have exact .Notification category details [cols="<1s,<4"] |=== -|Neo4j code +|Neo4j code m|Neo.ClientNotification.Statement.RepeatedRelationshipReference |Title a|The query returns no results because a relationship variable is bound more than once. @@ -4753,7 +4749,7 @@ m|WARNING .Binding a relationship variable more than once [.tabbed-example] ===== -[.include-with-neo4j-code] +[.include-with-GQLSTATUS-code] ====== Query:: + @@ -4761,8 +4757,13 @@ Query:: ---- MATCH (:A)-[r]->(), ()-[r]->(:B) RETURN r ---- -Description of the returned code:: -A relationship is referenced more than once in the query, which leads to no results because relationships must not occur more than once in each result. (Relationship `r` was repeated) + +Returned GQLSTATUS code:: +01N63 + +Returned status description:: +warn: repeated relationship reference. +`r` is repeated in `(:A)-[r]->(), ()-[r]->(:B)`, which leads to no results. Suggestions for improvement:: Use one pattern to match all relationships that start with a node with the label `A` and end with a node with the label `B`: @@ -4772,7 +4773,7 @@ Use one pattern to match all relationships that start with a node with the label MATCH (:A)-[r]->(:B) RETURN r ---- ====== -[.include-with-GQLSTATUS-code] +[.include-with-neo4j--code] ====== Query:: + @@ -4780,13 +4781,8 @@ Query:: ---- MATCH (:A)-[r]->(), ()-[r]->(:B) RETURN r ---- - -Returned GQLSTATUS code:: -01N63 - -Returned status description:: -warn: repeated relationship reference. -`r` is repeated in `(:A)-[r]->(), ()-[r]->(:B)`, which leads to no results. +Description of the returned code:: +A relationship is referenced more than once in the query, which leads to no results because relationships must not occur more than once in each result. (Relationship `r` was repeated) Suggestions for improvement:: Use one pattern to match all relationships that start with a node with the label `A` and end with a node with the label `B`: @@ -4801,18 +4797,6 @@ MATCH (:A)-[r]->(:B) RETURN r .Binding a variable-length relationship variable more than once (when run on version 5.6 or newer) [.tabbed-example] ===== -[.include-with-neo4j-code] -====== -Query:: -+ -[source,cypher] ----- -MATCH ()-[r*]->()<-[r*]-() RETURN count(*) AS count ----- -Description of the returned code:: -A variable-length relationship variable is bound more than once, which leads to no results because relationships must not occur more than once in each result. (Relationship r was repeated) -====== - [.include-with-GQLSTATUS-code] ====== Query:: @@ -4829,4 +4813,15 @@ Returned status description:: warn: repeated relationship reference. `r` is repeated in `()-[r*]->()<-[r*]-()`, which leads to no results. ====== +[.include-with-neo4j--code] +====== +Query:: ++ +[source,cypher] +---- +MATCH ()-[r*]->()<-[r*]-() RETURN count(*) AS count +---- +Description of the returned code:: +A variable-length relationship variable is bound more than once, which leads to no results because relationships must not occur more than once in each result. (Relationship r was repeated) +====== ===== diff --git a/modules/ROOT/pages/notifications/index.adoc b/modules/ROOT/pages/notifications/index.adoc index 1fd25f28..e78ff170 100644 --- a/modules/ROOT/pages/notifications/index.adoc +++ b/modules/ROOT/pages/notifications/index.adoc @@ -1,65 +1,36 @@ -:description: The Neo4j notifications for Neo4j version {neo4j-version}. +:description: Server notifications for Neo4j version {neo4j-version}. [[notifications]] = Server notifications -After a successful query execution, the Neo4j server sends notifications to provide advice on how to improve the query's quality or give additional information about the query execution. -The driver receives these notifications and sends them to the client, which displays them to the user. +After a successful query execution, the Neo4j server sends notifications to give additional information about the query execution or provide advice on how to improve the query's quality. +The driver receives these notifications and sends them to the Neo4j tools (e.g. Browser, Bloom, Cypher Shell) or the user application, which display them to the user. -From version 5.23, Neo4j has a new GqlStatusObject API in addition to the existing Notification API. -The GqlStatusObject API provides information about the status of a Cypher query or command execution in compliance with the GQL standard. +From version 5.23, Neo4j has a new GqlStatusObject API in addition to the existing Notification API (deprecated since 5.26). +The GqlStatusObject API provides information about the status of a Cypher query or command execution in compliance with the link:https://www.iso.org/standard/76120.html[ISO/IEC 39075:2024(en) - Information technology - Database languages - GQL Standard]. -This page describes both the Neo4j Notification and the GQL-status object frameworks, how they are structured, the objects they provide for notifications, and how to interpret them. +This page describes the GQL-status object and the Neo4j notification frameworks, their structure, the objects they provide for notification, and how to interpret them. It also explains the server notification grouping and filtering, the notification internals, and the server-driver compatibility for both the Notification and GqlStatusObject APIs. -[[neo4j-notification-object]] -== Neo4j notification object - -The Neo4j notification object contains diagnostic information representing the successful outcome of a Cypher query or command execution, including severity, the `ClientNotification` code, category, title, description, and position in the query text where the notification is relevant. -Depending on the application, some of the fields from the notification object might not be visible. - -The notification object consists of the following fields: - -.Neo4j notification object -[cols="<1s,<4"] -|=== -|Neo4j code -a|The Neo4j status code in the form of `Neo.ClientNotification.[SubType].[Name]`. -|Title -a|The title of the Neo4j status code. -|Description -a|The description of the specific notification. -|Severity level -a|The severity can be one of the following: - -- `WARNING`: There might be a problem with your query. Please, take a look. -- `INFORMATION`: The query is correct, but this information can still be useful. -|Category -a|The category of the notification. -|Position -a|The position, given by row and column, where the notification is relevant in the query text. -|=== - - [role=label--version-5.23] [[gqlstatus-notification-object]] == GQL-status notification object -In the GQL-status object framework, notifications are an implementation-defined subset of the GQL-status objects that cover informational notes and warnings, but not errors, `SUCCESS`, `NO DATA`, or `OMITTED RESULT`. -For the latter, see <>. + - -In GQL, the execution of a query from user to server always has an outcome, called the _execution outcome_. -The execution outcome is a list of GQL-status objects, ordered by the following precedence, where the first object in the list is the primary GQL-status object: +In the GQL-status object framework, when a user executes a query to the server, it always produces a result known as the _execution outcome_. +If no error occurs during execution, the outcome is recorded as a completion condition, indicating a successful result with a regular non-empty result, an omitted result, or no data. +It is represented as a list of GQL-status objects, which are organized according to the following precedence rules, where the first object in the list is the primary GQL-status object: . `NO DATA` has precedence over `WARNING`. . `WARNING` has precedence over the `SUCCESSFUL COMPLETION` subclass. . `SUCCESSFUL COMPLETION` subclass has precedence over `INFORMATIONAL`. . `INFORMATIONAL` is the condition with the least precedence. +For more information about `SUCCESSFUL COMPLETION`, `NO DATA`, or `OMITTED RESULT`, see <>. + +The GQL-status object can contain multiple GQL-status objects, where each object represents a different condition of the query execution. The primary GQL-status object describes the condition with the greatest precedence and is always present. All other GQL-status objects in the list are additional GQL-status objects. -The GQL-status object also includes the Neo4j-specific information, such as the severity level and the classification of the notification, which can be used for filtering. +The GQL-status object also includes Neo4j-specific information, such as severity level and notification classification, which can be used for filtering. For more information about notification grouping and filtering, see <>. Each GQL-status object consists of the following fields: @@ -68,13 +39,13 @@ Each GQL-status object consists of the following fields: [cols="<1s,<4"] |=== |GQLSTATUS code -a| A 5-character string that is the concatenation of a 2-character class code followed by a 3-character subclass code. +a| A 5-character string that is the concatenation of a 2-character class code followed by a 3-character subclass code, which identifies the condition of the notification. |StatusDescription -a| A human-readable description of the GQLSTATUS, which consists of a condition, a subcondition, and a description. +a| A human-readable description of the GQLSTATUS, which consists of a condition, a subcondition, and an optional additional text about the condition. The condition and subcondition are textual representations of the class and subclass codes, respectively. | DiagnosticRecord a| Extra information about the status, given as key-value pairs, both on the server and driver side. -To retrieve the full diagnostic record, you can use the `diagnosticRecord()` method on both the server and driver sides. +To retrieve the full diagnostic record, you can use the `diagnosticRecord()` on the server side or the corresponding method on the driver sides. Additional helper methods are exposed for some useful fields. [cols="<1s,<4"] !=== @@ -177,6 +148,35 @@ The following table lists the Neo4j-defined groups of GQLSTATUS codes and their |=== +[role=label--deprecated-5.26] +[[neo4j-notification-object]] +== Neo4j-status notification object + +The Neo4j-status object for notifications contains diagnostic information representing the successful outcome of a Cypher query or command execution, including severity, the `ClientNotification` code, category, title, description, and position in the query text where the notification is relevant. +Depending on the application, some of the fields from the notification object might not be visible. + +The notification object consists of the following fields: + +.Neo4j notification object +[cols="<1s,<4"] +|=== +|Neo4j code +a|The Neo4j code in the form of `Neo.ClientNotification.[SubType].[Name]`. +|Title +a|The title of the Neo4j code. +|Description +a|The description of the specific notification. +|Severity level +a|The severity can be one of the following: + +- `WARNING`: There might be a problem with your query. Please, take a look. +- `INFORMATION`: The query is correct, but this information can still be useful. +|Category +a|The category of the notification. +|Position +a|The position, given by row and column, where the notification is relevant in the query text. +|=== + [[notification-grouping-and-filtering]] == Server notification grouping and filtering @@ -245,6 +245,7 @@ The following notification groups exist in Neo4j, ordered by severity: | |=== +[role=label--deprecated-5.26] [[notification-internals]] == Notification internals @@ -253,7 +254,7 @@ During the handshake process, they agree on using the newest possible Bolt proto For more information on the Bolt versions supported by different server versions, see the link:https://neo4j.com/docs/bolt/current/bolt-compatibility[Bolt Protocol documentation]. On the server side, notifications are part of the Result Core API. -A method called `getNotifications()` returns a list of server-side notification objects. +A method called `getNotifications()`, which is deprecated since 5.26, returns a list of server-side notification objects. These notifications are then sent to the driver as success Bolt message metadata. On the driver side, notifications are part of the ResultSummary API, which has a method called `notifications()` that returns a list of driver-side Notification objects. The result of the `getCode()` or `code()` methods is known as the Neo4j status code. @@ -262,6 +263,7 @@ For more information, see < Date: Fri, 29 Nov 2024 12:23:20 +0000 Subject: [PATCH 42/45] Add Neo.ClientNotification.Statement.RuntimeExperimental to the changelog (#226) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit … --- modules/ROOT/pages/changelogs.adoc | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/modules/ROOT/pages/changelogs.adoc b/modules/ROOT/pages/changelogs.adoc index 64aba7d4..5a83b6d0 100644 --- a/modules/ROOT/pages/changelogs.adoc +++ b/modules/ROOT/pages/changelogs.adoc @@ -57,6 +57,10 @@ Neo.ClientNotification.Cluster.NoDatabasesReallocated Neo.ClientNotification.Statement.SideEffectVisibility ----- +**Changed** + +The usage of `Neo.ClientNotification.Statement.RuntimeExperimental` has been removed. + == Neo4j 5.13 **New:** From 58fbb09a3f7bfafd47f8223b66460f9975850aaa Mon Sep 17 00:00:00 2001 From: Reneta Popova Date: Fri, 29 Nov 2024 15:00:45 +0000 Subject: [PATCH 43/45] Add a warning that parsing status descriptions is not recommended (#228) Co-authored-by: Louise Berglund --- modules/ROOT/pages/errors/gql-errors.adoc | 6 ++++++ modules/ROOT/pages/notifications/all-notifications.adoc | 5 +++++ 2 files changed, 11 insertions(+) diff --git a/modules/ROOT/pages/errors/gql-errors.adoc b/modules/ROOT/pages/errors/gql-errors.adoc index 2a56cc7e..6e810352 100644 --- a/modules/ROOT/pages/errors/gql-errors.adoc +++ b/modules/ROOT/pages/errors/gql-errors.adoc @@ -7,6 +7,12 @@ The following page provides an overview of all GQLSTATUS server error codes in Neo4j. All errors in Neo4j have severity level `ERROR`. +[WARNING] +==== +Please note that while GQLSTATUS codes remain stable, the status descriptions associated with these codes may change over time. +For this reason, parsing the status descriptions or incorporating them into scripts is not recommended. +==== + == Connection exceptions Connection exceptions occur when the client (e.g. Browser/Bloom/Cypher Shell) is unable to connect to the server for various reasons such as network issues, server-side routing being disabled, or the database being unavailable, etc. diff --git a/modules/ROOT/pages/notifications/all-notifications.adoc b/modules/ROOT/pages/notifications/all-notifications.adoc index 7124837b..09f1401a 100644 --- a/modules/ROOT/pages/notifications/all-notifications.adoc +++ b/modules/ROOT/pages/notifications/all-notifications.adoc @@ -15,6 +15,11 @@ The following page provides an overview of all notifications in Neo4j, including * <<_schema_notifications, `SCHEMA` notifications>> * <<_generic, `GENERIC` notifications>> +[WARNING] +==== +Please note that while GQLSTATUS codes remain stable, the status descriptions associated with these codes may change over time. +For this reason, parsing the status descriptions or incorporating them into scripts is not recommended. +==== [#_performance_notifications] == `PERFORMANCE` notifications From 6571d3a83ae32bb1559b4868b5830d92a788cc50 Mon Sep 17 00:00:00 2001 From: Louise Berglund Date: Fri, 29 Nov 2024 16:53:53 +0100 Subject: [PATCH 44/45] Explain error compatibility (#229) Co-authored-by: Reneta Popova --- modules/ROOT/pages/errors/index.adoc | 43 ++++++++++++++++++++++++++++ 1 file changed, 43 insertions(+) diff --git a/modules/ROOT/pages/errors/index.adoc b/modules/ROOT/pages/errors/index.adoc index c9bc77b9..60563298 100644 --- a/modules/ROOT/pages/errors/index.adoc +++ b/modules/ROOT/pages/errors/index.adoc @@ -208,4 +208,47 @@ The server and driver communicate with each other through the Bolt protocol. During the handshake process, they agree on using the newest possible Bolt protocol version that both the server and the driver support. For more information on the Bolt versions supported by different server versions, see the link:https://neo4j.com/docs/bolt/current/bolt-compatibility[Bolt Protocol documentation]. +The new error framework with the additional GQL-status object for errors is available in the JSON format query log for Neo4j server Neo4j 5.25 and later versions. +It is supported over Bolt since Bolt 5.7, which corresponds to version 5.26 or later on both server and driver side. + +To fully utilize the new error framework, both your server and the driver must support it. +Drivers that are older than 5.26 will not send any GQL-status object for exceptions, even if server is 5.26 or later. + +If a driver of version 5.26 or later talks to a server that is older than 5.26, the driver needs to poly-fill the exceptions with a GQL-status object. +In this case, the default GQLSTATUS code 50N42 is returned for all exceptions. + +.Error compatibility matrix +[cols="1,2,2", grid="all", stripes="hover"] +|=== +| +h| Driver 5.25 or older +h| Driver 5.26 or newer + +h| Server 5.24 or older +| Bolt: old format + +Query log: old format + +| Bolt: new format with default values + +Query log: old format + +h| Server 5.25 +| Bolt: old format + +Query log: new format +| Bolt: new format with default values + +Query log: new format + +h| Server 5.26 or newer +| Bolt: old format + +Query log: new format + +| Bolt: new format + +Query log: new format + +|=== From d7ac33b5707ff5cb6c588c55df47b1aed0f6018a Mon Sep 17 00:00:00 2001 From: Reneta Popova Date: Wed, 4 Dec 2024 09:45:37 +0000 Subject: [PATCH 45/45] Apply feedback from review (#230) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Co-authored-by: Louise Söderström --- modules/ROOT/pages/errors/all-errors.adoc | 21 +------------- modules/ROOT/pages/errors/gql-errors.adoc | 2 +- modules/ROOT/pages/errors/index.adoc | 28 +++++++++---------- .../notifications/all-notifications.adoc | 2 +- 4 files changed, 17 insertions(+), 36 deletions(-) diff --git a/modules/ROOT/pages/errors/all-errors.adoc b/modules/ROOT/pages/errors/all-errors.adoc index 8e119cc3..b8fa554a 100644 --- a/modules/ROOT/pages/errors/all-errors.adoc +++ b/modules/ROOT/pages/errors/all-errors.adoc @@ -4,26 +4,7 @@ [[neo4j-errors]] = List of Neo4j error codes -This page lists the current Neo4j error codes, which which are returned along side xref:errors/gql-errors.adoc[GQLSTATUS error codes]. - -Error codes are returned by the server when the execution of a query fails. -They always have the severity level `ERROR`. -Errors are grouped based on the type of the Neo4j code: - -Client errors:: -These errors are caused by the client (user input or user application) and are usually related to the request itself. -The Neo4j codes for client errors have the prefix `Neo.ClientError`. - -Transient errors:: -These errors are detected by the server and are usually related to some kind of database unavailability, such as limits reached, out-of-memory, timeouts, etc. -The error can be temporary, and the request could succeed if retried. -The Neo4j codes for transient errors have the prefix `Neo.TransientError`. - -Database errors:: -These errors are caused by the database and are usually related to the database state. -The Neo4j codes for database errors have the prefix `Neo.DatabaseError`. - -This page contains lists of all Neo4j errors, grouped by type. +This page lists the current Neo4j error codes, which which are returned along side xref:errors/gql-errors.adoc[GQLSTATUS error codes], grouped by type. == Client errors diff --git a/modules/ROOT/pages/errors/gql-errors.adoc b/modules/ROOT/pages/errors/gql-errors.adoc index 6e810352..6fd6411b 100644 --- a/modules/ROOT/pages/errors/gql-errors.adoc +++ b/modules/ROOT/pages/errors/gql-errors.adoc @@ -9,7 +9,7 @@ All errors in Neo4j have severity level `ERROR`. [WARNING] ==== -Please note that while GQLSTATUS codes remain stable, the status descriptions associated with these codes may change over time. +Please note that while GQLSTATUS codes remain stable (any changes to them will be breaking), changes to status descriptions associated with these codes are not breaking and may happen at any time. For this reason, parsing the status descriptions or incorporating them into scripts is not recommended. ==== diff --git a/modules/ROOT/pages/errors/index.adoc b/modules/ROOT/pages/errors/index.adoc index 60563298..8d559c68 100644 --- a/modules/ROOT/pages/errors/index.adoc +++ b/modules/ROOT/pages/errors/index.adoc @@ -3,7 +3,7 @@ = Server errors Neo4j returns a server error to indicate that the outcome of a Cypher query or command execution is unsuccessful. -The driver receives these erors and sends them to the Neo4j tools (e.g. Browser, Bloom, Cypher Shell) or the user application, which display them to the user. +The driver receives these errors and sends them to the Neo4j tools (e.g. Browser, Bloom, Cypher Shell) or the user application, which display them to the user. Starting from version 5.26, the Neo4j error codes have an additional GQL-status object along with the Neo4j exception that provides information about the status of a Cypher query or command execution in compliance with the link:https://www.iso.org/standard/76120.html[ISO/IEC 39075:2024(en) - Information technology - Database languages - GQL Standard]. This additional GQL-status object is also displayed in the query log from Neo4j 5.25 onwards. @@ -44,8 +44,8 @@ Each GQL-status object consists of the following fields: a| A 5-character string that is the concatenation of a 2-character class code followed by a 3-character subclass code, which identifies the condition of the error. |StatusDescription a| A human-readable description of the GQLSTATUS, which consists of a condition, a subcondition, and an optional additional text about the condition. -The condition and subcondition are textual representations of the class and subclass codes, respectively. The format is `error: condition - subcondition. AdditionalInfo`. +The condition and subcondition are textual representations of the class and subclass codes, respectively. The subcondition for the subclass 000 is empty. | DiagnosticRecord a| Extra information about the status, given as key-value pairs, both on the server and driver side. @@ -225,30 +225,30 @@ h| Driver 5.25 or older h| Driver 5.26 or newer h| Server 5.24 or older -| Bolt: old format +| Bolt: existing error information -Query log: old format +Query log: existing error information -| Bolt: new format with default values +| Bolt: additional GQL-status object with default values -Query log: old format +Query log: existing error information h| Server 5.25 -| Bolt: old format +| Bolt: existing error information -Query log: new format -| Bolt: new format with default values +Query log: additional errorInfo entry +| Bolt: additional GQL-status object with default values -Query log: new format +Query log: additional errorInfo entry h| Server 5.26 or newer -| Bolt: old format +| Bolt: existing error information -Query log: new format +Query log: additional errorInfo entry -| Bolt: new format +| Bolt: additional GQL-status object -Query log: new format +Query log: additional errorInfo entry |=== diff --git a/modules/ROOT/pages/notifications/all-notifications.adoc b/modules/ROOT/pages/notifications/all-notifications.adoc index 09f1401a..8d3d4187 100644 --- a/modules/ROOT/pages/notifications/all-notifications.adoc +++ b/modules/ROOT/pages/notifications/all-notifications.adoc @@ -17,7 +17,7 @@ The following page provides an overview of all notifications in Neo4j, including [WARNING] ==== -Please note that while GQLSTATUS codes remain stable, the status descriptions associated with these codes may change over time. +Please note that while GQLSTATUS codes remain stable (any changes to them will be breaking), changes to status descriptions associated with these codes are not breaking and may happen at any time. For this reason, parsing the status descriptions or incorporating them into scripts is not recommended. ====