@matdata/yasr 5.13.0 → 5.15.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@matdata/yasr",
3
3
  "description": "Yet Another SPARQL Resultset GUI",
4
- "version": "5.13.0",
4
+ "version": "5.15.0",
5
5
  "main": "build/yasr.min.js",
6
6
  "types": "build/ts/src/index.d.ts",
7
7
  "license": "MIT",
@@ -102,6 +102,11 @@ export default class Error implements Plugin<never> {
102
102
  forbidden3.textContent = "Contact the endpoint administrator to request access";
103
103
  suggestions.appendChild(forbidden3);
104
104
 
105
+ const forbidden4 = document.createElement("li");
106
+ forbidden4.textContent =
107
+ "A firewall such as OWASP is blocking is blocking SPARQL queries because they resemble SQL injection attempts. Contact the endpoint administrator to whitelist your queries or adjust firewall settings";
108
+ suggestions.appendChild(forbidden4);
109
+
105
110
  guidanceEl.appendChild(suggestions);
106
111
  return guidanceEl;
107
112