8000 [BTS-413] by cpjulia · Pull Request #17923 · arangodb/arangodb · GitHub
[go: up one dir, main page]

Skip to content

[BTS-413] #17923

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 21 commits into from
Jan 18, 2023
Merged
Changes from 3 commits
Commits
Show all changes
21 commits
Select commit Hold shift + click to select a range
3846879
Changed error messages
cpjulia Jan 12, 2023
6a6df75
Merge branch 'devel' of https://github.com/arangodb/arangodb into fea…
KVS85 Jan 13, 2023
0b17f2c
Rebuild UI
KVS85 Jan 13, 2023
fbcee6c
Update js/apps/system/_admin/aardvark/APP/frontend/js/views/dashboard…
cpjulia Jan 13, 2023
4fb50ea
Rebuild UI
KVS85 Jan 13, 2023
0a4dd64
Merge branch 'devel' of https://github.com/arangodb/arangodb into fea…
KVS85 Jan 13, 2023
2426707
Merge branch 'devel' of github.com:arangodb/arangodb into feature/BTS…
cpjulia Jan 16, 2023
3ca76fa
Merge branch 'feature/BTS-413' of github.com:arangodb/arangodb into f…
cpjulia Jan 16, 2023
0dc32cc
Updated CHANGELOG
cpjulia Jan 16, 2023
8669d05
Merge branch 'devel' into feature/BTS-413
KVS85 Jan 17, 2023
5515c54
Merge branch 'devel' into feature/BTS-413
KVS85 Jan 17, 2023
6361ecf
Merge branch 'devel' of github.com:arangodb/arangodb into feature/BTS…
cpjulia Jan 18, 2023
ded5228
Merge branch 'feature/BTS-413' of github.com:arangodb/arangodb into f…
cpjulia Jan 18, 2023
b6e0581
Merge branch 'devel' of github.com:arangodb/arangodb into feature/BTS…
cpjulia Jan 18, 2023
9d367f8
Updated message
cpjulia Jan 18, 2023
abc8a5e
Rebuild UI
KVS85 Jan 18, 2023
36d9b31
Merge branch 'devel' of github.com:arangodb/arangodb into feature/BTS…
cpjulia Jan 18, 2023
3499de9
Addressed suggestion
cpjulia Jan 18, 2023
18f643b
Merge branch 'feature/BTS-413' of github.com:arangodb/arangodb into f…
cpjulia Jan 18, 2023
40589c9
Merge branch 'devel' into feature/BTS-413
cpjulia Jan 18, 2023
2aac0c4
Merge branch 'devel' of github.com:arangodb/arangodb into feature/BTS…
cpjulia Jan 18, 2023
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
14 changes: 13 additions & 1 deletion CHANGELOG
Original file line number Diff line number Diff line change
@@ -1,9 +1,21 @@
devel
-----

* BTS-413: Added more explanatory messages for when the user cannot see the
* BTS-413: Added more explanatory messages for when the user cannot see the
statistics for a node in the UI when in cluster mode.

* Fix coordinator segfault in AQL queries in which the query is invoked from
within a JavaScript context (e.g. from Foxx or from the server's console
mode) **and** the query has multiple coordinator snippets of which except
the outermost one invokes a JavaScript function.
Instead of crashing, coordinators will now respond with the exception
"no v8 context available to enter for current transaction context".
For AQL queries that called one of the AQL functions `CALL` or `APPLY` with
a fixed function name, e.g. `APPLY('CONCAT', ...)`, it is now also assumed
correctly that no JavaScript is needed, except if the fixed function name
is the name of a user-defined function.
This fixes an issue described in OASIS-24962.

* Prevent agency configuration confusion by an agent which comes back without
its data directory and thus without its UUID.

Expand Down
0