Nikolay Grechanov

Results 8 issues of Nikolay Grechanov

Because of security issue with `node-fetch` I needed to update `ky-universal` to `0.10.0` ([issue](https://github.com/sindresorhus/ky-universal/issues/37)) Once I did this, I got the following error: ``` C:\Users\me\git\my_code\node_modules\@digitalbazaar\http-client\main.js:1 Error [ERR_REQUIRE_ESM]: require() of ES...

I need to pass additional credentials to the `newmanExecute` step. I cannot pass the values via `runOptions` since it is insecure. If do it (e.g. via a stage extension), I...

It would be nice to have a generic solution to pass some config params to a certain step, similar to how Vault credentials are [passed](https://www.project-piper.io/infrastructure/vault/#using-vault-for-general-purpose-and-test-credentials). My usecase: I need to...

## Describe the bug In case of a retry (e.g. via `axios-retry`) the following error is thrown: https://github.com/3846masa/axios-cookiejar-support/blob/7b85d03ce3134915fb3a08077a6bf3973ea67ef1/src/index.ts#L21-L23 Reason: the same interceptor has already set _proper_ agents to the request...

bug

Test manifest (including test data and expected results) is [here](https://github.com/w3c/rdf-tests/blob/634dadcedba0177eb47975d642ae66949774834a/sparql11/data-r2/construct/manifest.ttl#L44-L54). The query alone can be found [here](https://github.com/w3c/rdf-tests/blob/634dadcedba0177eb47975d642ae66949774834a/sparql11/data-r2/construct/query-reif-1.rq): ```sparql PREFIX rdf: PREFIX foaf: CONSTRUCT { [ rdf:subject ?s ; rdf:predicate ?p...

bug

The following example works as expected (playground [permalink](https://json-ld.org/playground/#startTab=tab-expanded&json-ld=%7B%22%40context%22%3A%7B%22type%22%3A%22%40type%22%2C%22name%22%3A%22http%3A%2F%2Fexample.com%2Fvocab%23top-level-name%22%2C%22MyType%22%3A%7B%22%40id%22%3A%22http%3A%2F%2Fexample.com%2Fvocab%23MyTypeURI%22%2C%22%40context%22%3A%7B%22name%22%3A%22http%3A%2F%2Fexample.com%2Fvocab%23typed-name%22%7D%7D%7D%2C%22type%22%3A%22MyType%22%2C%22name%22%3A%22top-level-name%22%7D)) ```json { "@context": { "type": "@type", "name": "http://example.com/vocab#top-level-name", "MyType": { "@id": "http://example.com/vocab#MyTypeURI", "@context": { "name": "http://example.com/vocab#typed-name" } } }, "type": "MyType", "name":...

Is there a way to model map of maps? I see only single-level maps: [Property-based data indexing](https://www.w3.org/TR/json-ld11/#property-based-data-indexing) But maps often have 2+ levels of indexing. Simplified example: animals are indexed...

spec-design
question

If running a jq filter produces an empty result, the result is an empty string (`''`) even if the `output` option is set to `json`. It may be a bit...