repo
stringlengths
5
53
pr_number
int32
1
321k
task_type
stringclasses
2 values
issue_text
stringlengths
0
81.2k
pr_title
stringlengths
1
319
pr_body
stringlengths
0
105k
base_sha
stringlengths
40
40
head_sha
stringlengths
40
40
gold_diff
stringlengths
0
202M
changed_files
listlengths
0
100
review_threads
listlengths
0
100
test_patch
stringlengths
0
23.4M
merged
bool
1 class
vesoft-inc/nebula
5,953
comment_to_fix
Enable MULTIUPDATE and LOOKUP | UPDATE
2024
6c09e832d7caa7b3480bad2079f102bcb2d23b71
3f6637e2689670e8e48ba1b5c72dccff9a7629b8
diff --git a/tests/tck/features/update/MultiUpdate.feature b/tests/tck/features/update/MultiUpdate.feature new file mode 100644 index 00000000000..8eecc7173dc --- /dev/null +++ b/tests/tck/features/update/MultiUpdate.feature @@ -0,0 +1,282 @@ +# Copyright (c) 2024 vesoft inc. All rights reserved. +# +# This source code...
[ "tests/tck/features/update/MultiUpdate.feature" ]
[ { "comment": "2024", "path": "tests/tck/features/update/MultiUpdate.feature", "hunk": "@@ -0,0 +1,248 @@\n+# Copyright (c) 2020 vesoft inc. All rights reserved.", "resolving_sha": "3f6637e2689670e8e48ba1b5c72dccff9a7629b8", "resolving_diff": "diff --git a/tests/tck/features/update/MultiUpdate.fe...
true
vesoft-inc/nebula
5,953
comment_to_fix
Enable MULTIUPDATE and LOOKUP | UPDATE
同上
6c09e832d7caa7b3480bad2079f102bcb2d23b71
3f6637e2689670e8e48ba1b5c72dccff9a7629b8
diff --git a/tests/tck/features/update/MultiUpdate.feature b/tests/tck/features/update/MultiUpdate.feature new file mode 100644 index 00000000000..8eecc7173dc --- /dev/null +++ b/tests/tck/features/update/MultiUpdate.feature @@ -0,0 +1,282 @@ +# Copyright (c) 2024 vesoft inc. All rights reserved. +# +# This source code...
[ "tests/tck/features/update/MultiUpdate.feature" ]
[ { "comment": "同上", "path": "tests/tck/features/update/MultiUpdate.feature", "hunk": "@@ -0,0 +1,248 @@\n+# Copyright (c) 2020 vesoft inc. All rights reserved.\n+#\n+# This source code is licensed under Apache 2.0 License.\n+@multi_update", "resolving_sha": "3f6637e2689670e8e48ba1b5c72dccff9a7629b8",...
true
vesoft-inc/nebula
5,953
comment_to_fix
Enable MULTIUPDATE and LOOKUP | UPDATE
可以补充一些UPSERT的测试
6c09e832d7caa7b3480bad2079f102bcb2d23b71
3f6637e2689670e8e48ba1b5c72dccff9a7629b8
diff --git a/tests/tck/features/lookup/LookUpUpdate.feature b/tests/tck/features/lookup/LookUpUpdate.feature new file mode 100644 index 00000000000..c7ff7bb57cb --- /dev/null +++ b/tests/tck/features/lookup/LookUpUpdate.feature @@ -0,0 +1,132 @@ +# Copyright (c) 2024 vesoft inc. All rights reserved. +# +# This source c...
[ "tests/tck/features/lookup/LookUpUpdate.feature" ]
[ { "comment": "可以补充一些UPSERT的测试", "path": "tests/tck/features/lookup/LookUpUpdate.feature", "hunk": "@@ -0,0 +1,88 @@\n+@lookup_update\n+Feature: lookup and update\n+\n+ Background:\n+ Given an empty graph\n+ And create a space with following options:\n+ | partition_num | 1 |\n...
true
vesoft-inc/nebula
5,953
comment_to_fix
Enable MULTIUPDATE and LOOKUP | UPDATE
看上去`handleResult`的作用已经被`handleMultiResult `替代了,可以删除
6c09e832d7caa7b3480bad2079f102bcb2d23b71
3f6637e2689670e8e48ba1b5c72dccff9a7629b8
diff --git a/src/graph/executor/mutate/UpdateExecutor.cpp b/src/graph/executor/mutate/UpdateExecutor.cpp index 3b820ac471a..9111b10ec76 100644 --- a/src/graph/executor/mutate/UpdateExecutor.cpp +++ b/src/graph/executor/mutate/UpdateExecutor.cpp @@ -13,7 +13,7 @@ using nebula::storage::StorageClient; namespace nebula {...
[ "src/graph/executor/mutate/UpdateExecutor.cpp" ]
[ { "comment": "看上去`handleResult`的作用已经被`handleMultiResult `替代了,可以删除", "path": "src/graph/executor/mutate/UpdateExecutor.cpp", "hunk": "@@ -27,7 +27,7 @@ StatusOr<DataSet> UpdateBaseExecutor::handleResult(DataSet &&data) {\n return Status::Error(\"Wrong return prop size\");\n }\n DataSet result;\n-...
true
vesoft-inc/nebula
5,953
comment_to_fix
Enable MULTIUPDATE and LOOKUP | UPDATE
不需要修改存量文件的日期
6c09e832d7caa7b3480bad2079f102bcb2d23b71
3f6637e2689670e8e48ba1b5c72dccff9a7629b8
diff --git a/src/graph/executor/mutate/UpdateExecutor.cpp b/src/graph/executor/mutate/UpdateExecutor.cpp index 3b820ac471a..9111b10ec76 100644 --- a/src/graph/executor/mutate/UpdateExecutor.cpp +++ b/src/graph/executor/mutate/UpdateExecutor.cpp @@ -13,7 +13,7 @@ using nebula::storage::StorageClient; namespace nebula {...
[ "src/graph/executor/mutate/UpdateExecutor.cpp" ]
[ { "comment": "不需要修改存量文件的日期", "path": "src/graph/executor/mutate/UpdateExecutor.cpp", "hunk": "@@ -1,4 +1,4 @@\n-// Copyright (c) 2020 vesoft inc. All rights reserved.\n+// Copyright (c) 2024 vesoft inc. All rights reserved.\n //", "resolving_sha": "3f6637e2689670e8e48ba1b5c72dccff9a7629b8", "res...
true
vesoft-inc/nebula
5,914
issue_to_patch
Added support for the List/Set type
For one-dimensional data of type List/Set: List_string, List_int, List_float, Set_string, Set_int, Set_float: 1. Support attributes defined as List /Set data types. 2. Use the List /Set data type for storage. 3. The List /Set data type can be filtered during query. 4. Attributes of the List /Set data...
b011aa2a8c895d541f1a12f1dd685e51e051dc15
32669b8045e2ffe4cf0590ca2545f403b747ae6f
diff --git a/src/codec/RowReaderV2.cpp b/src/codec/RowReaderV2.cpp index 9c9ef343edc..47101dd9239 100644 --- a/src/codec/RowReaderV2.cpp +++ b/src/codec/RowReaderV2.cpp @@ -2,13 +2,44 @@ * * This source code is licensed under Apache 2.0 License. */ - #include "codec/RowReaderV2.h" namespace nebula { using ...
[ "src/codec/RowReaderV2.cpp", "src/codec/RowWriterV2.cpp", "src/codec/RowWriterV2.h", "src/common/datatypes/List.h", "src/common/datatypes/Set.h", "src/common/expression/test/AggregateExpressionTest.cpp", "src/common/function/FunctionManager.cpp", "src/common/meta/NebulaSchemaProvider.cpp", "src/comm...
[ { "comment": "没用到的文件可以删了", "path": "share/resources/gflags.json", "hunk": "@@ -0,0 +1,26 @@\n+{\n+ \"MUTABLE\": [\n+ \"minloglevel\",", "resolving_sha": "32669b8045e2ffe4cf0590ca2545f403b747ae6f", "resolving_diff": "" }, { "comment": "没用到的文件删了", "path": "share/resources/dat...
diff --git a/src/common/expression/test/AggregateExpressionTest.cpp b/src/common/expression/test/AggregateExpressionTest.cpp index 9a7281549e1..f306615c785 100644 --- a/src/common/expression/test/AggregateExpressionTest.cpp +++ b/src/common/expression/test/AggregateExpressionTest.cpp @@ -223,26 +223,34 @@ TEST_F(Aggreg...
true
vesoft-inc/nebula
5,914
comment_to_fix
Added support for the List/Set type
LIST_INT和LIST_FLOAT的逻辑重合度比较高,看能不能单独抽取出一个函数来封装
b011aa2a8c895d541f1a12f1dd685e51e051dc15
32669b8045e2ffe4cf0590ca2545f403b747ae6f
diff --git a/src/codec/RowReaderV2.cpp b/src/codec/RowReaderV2.cpp index 9c9ef343edc..47101dd9239 100644 --- a/src/codec/RowReaderV2.cpp +++ b/src/codec/RowReaderV2.cpp @@ -2,13 +2,44 @@ * * This source code is licensed under Apache 2.0 License. */ - #include "codec/RowReaderV2.h" namespace nebula { using ...
[ "src/codec/RowReaderV2.cpp" ]
[ { "comment": "LIST_INT和LIST_FLOAT的逻辑重合度比较高,看能不能单独抽取出一个函数来封装", "path": "src/codec/RowReaderV2.cpp", "hunk": "@@ -206,6 +205,368 @@ Value RowReaderV2::getValueByIndex(const int64_t index) const {\n }\n return std::move(geogRet).value();\n }\n+ // NEW List\n+ case PropertyType::LIST_...
true
vesoft-inc/nebula
5,914
comment_to_fix
Added support for the List/Set type
LIST_LIST_INT和LIST_LIST_FLOAT的也可以封装成一个处理函数
b011aa2a8c895d541f1a12f1dd685e51e051dc15
32669b8045e2ffe4cf0590ca2545f403b747ae6f
diff --git a/src/codec/RowReaderV2.cpp b/src/codec/RowReaderV2.cpp index 9c9ef343edc..47101dd9239 100644 --- a/src/codec/RowReaderV2.cpp +++ b/src/codec/RowReaderV2.cpp @@ -2,13 +2,44 @@ * * This source code is licensed under Apache 2.0 License. */ - #include "codec/RowReaderV2.h" namespace nebula { using ...
[ "src/codec/RowReaderV2.cpp" ]
[ { "comment": "LIST_LIST_INT和LIST_LIST_FLOAT的也可以封装成一个处理函数", "path": "src/codec/RowReaderV2.cpp", "hunk": "@@ -206,6 +205,368 @@ Value RowReaderV2::getValueByIndex(const int64_t index) const {\n }\n return std::move(geogRet).value();\n }\n+ // NEW List\n+ case PropertyType::LIST_STR...
true
vesoft-inc/nebula
5,914
comment_to_fix
Added support for the List/Set type
set的处理同上,int和float的类型处理可以封装下
b011aa2a8c895d541f1a12f1dd685e51e051dc15
32669b8045e2ffe4cf0590ca2545f403b747ae6f
diff --git a/src/codec/RowReaderV2.cpp b/src/codec/RowReaderV2.cpp index 9c9ef343edc..47101dd9239 100644 --- a/src/codec/RowReaderV2.cpp +++ b/src/codec/RowReaderV2.cpp @@ -2,13 +2,44 @@ * * This source code is licensed under Apache 2.0 License. */ - #include "codec/RowReaderV2.h" namespace nebula { using ...
[ "src/codec/RowReaderV2.cpp" ]
[ { "comment": "set的处理同上,int和float的类型处理可以封装下", "path": "src/codec/RowReaderV2.cpp", "hunk": "@@ -206,6 +205,368 @@ Value RowReaderV2::getValueByIndex(const int64_t index) const {\n }\n return std::move(geogRet).value();\n }\n+ // NEW List\n+ case PropertyType::LIST_STRING: {\n+ ...
true
vesoft-inc/nebula
5,914
comment_to_fix
Added support for the List/Set type
// NEW 无意义的注释可以去掉
b011aa2a8c895d541f1a12f1dd685e51e051dc15
32669b8045e2ffe4cf0590ca2545f403b747ae6f
diff --git a/src/codec/RowWriterV2.cpp b/src/codec/RowWriterV2.cpp index 1e4245559fa..b2ca647b0fa 100644 --- a/src/codec/RowWriterV2.cpp +++ b/src/codec/RowWriterV2.cpp @@ -16,6 +16,80 @@ namespace nebula { using nebula::cpp2::PropertyType; +// Function used to identify the data type written +WriteResult writeItem...
[ "src/codec/RowWriterV2.cpp" ]
[ { "comment": "// NEW 无意义的注释可以去掉", "path": "src/codec/RowWriterV2.cpp", "hunk": "@@ -138,6 +138,13 @@ RowWriterV2::RowWriterV2(RowReaderWrapper& reader) : RowWriterV2(reader.getSchem\n case Value::Type::DURATION:\n set(i, v.moveDuration());\n break;\n+ // NEW", "resolving_...
true
vesoft-inc/nebula
5,914
comment_to_fix
Added support for the List/Set type
无意义注释去掉
b011aa2a8c895d541f1a12f1dd685e51e051dc15
32669b8045e2ffe4cf0590ca2545f403b747ae6f
diff --git a/src/codec/RowWriterV2.cpp b/src/codec/RowWriterV2.cpp index 1e4245559fa..b2ca647b0fa 100644 --- a/src/codec/RowWriterV2.cpp +++ b/src/codec/RowWriterV2.cpp @@ -16,6 +16,80 @@ namespace nebula { using nebula::cpp2::PropertyType; +// Function used to identify the data type written +WriteResult writeItem...
[ "src/codec/RowWriterV2.cpp" ]
[ { "comment": "无意义注释去掉", "path": "src/codec/RowWriterV2.cpp", "hunk": "@@ -456,7 +466,7 @@ WriteResult RowWriterV2::write(ssize_t index, int8_t v) {\n isSet_[index] = true;\n return WriteResult::SUCCEEDED;\n }\n-\n+//", "resolving_sha": "32669b8045e2ffe4cf0590ca2545f403b747ae6f", "resolving_d...
true
vesoft-inc/nebula
5,914
comment_to_fix
Added support for the List/Set type
这里是不是少了List的枚举?
b011aa2a8c895d541f1a12f1dd685e51e051dc15
32669b8045e2ffe4cf0590ca2545f403b747ae6f
diff --git a/src/codec/RowWriterV2.cpp b/src/codec/RowWriterV2.cpp index 1e4245559fa..b2ca647b0fa 100644 --- a/src/codec/RowWriterV2.cpp +++ b/src/codec/RowWriterV2.cpp @@ -16,6 +16,80 @@ namespace nebula { using nebula::cpp2::PropertyType; +// Function used to identify the data type written +WriteResult writeItem...
[ "src/codec/RowWriterV2.cpp" ]
[ { "comment": "这里是不是少了List的枚举?", "path": "src/codec/RowWriterV2.cpp", "hunk": "@@ -226,11 +233,14 @@ WriteResult RowWriterV2::setValue(ssize_t index, const Value& val) {\n return write(index, val.getGeography());\n case Value::Type::DURATION:\n return write(index, val.getDuration());\n+ ...
true
vesoft-inc/nebula
5,914
comment_to_fix
Added support for the List/Set type
排查一下这种注释,写清楚或者直接去掉
b011aa2a8c895d541f1a12f1dd685e51e051dc15
32669b8045e2ffe4cf0590ca2545f403b747ae6f
diff --git a/src/codec/RowWriterV2.cpp b/src/codec/RowWriterV2.cpp index 1e4245559fa..b2ca647b0fa 100644 --- a/src/codec/RowWriterV2.cpp +++ b/src/codec/RowWriterV2.cpp @@ -16,6 +16,80 @@ namespace nebula { using nebula::cpp2::PropertyType; +// Function used to identify the data type written +WriteResult writeItem...
[ "src/codec/RowWriterV2.cpp" ]
[ { "comment": "排查一下这种注释,写清楚或者直接去掉", "path": "src/codec/RowWriterV2.cpp", "hunk": "@@ -820,6 +830,125 @@ WriteResult RowWriterV2::write(ssize_t index, const Geography& v) {\n std::string wkb = v.asWKB();\n return write(index, folly::StringPiece(wkb), true);\n }\n+// NEW write List\n+WriteResult RowWri...
true
vesoft-inc/nebula
5,914
comment_to_fix
Added support for the List/Set type
这个函数名应该叫createFromVector
b011aa2a8c895d541f1a12f1dd685e51e051dc15
32669b8045e2ffe4cf0590ca2545f403b747ae6f
diff --git a/src/common/datatypes/List.h b/src/common/datatypes/List.h index a2694c52ca8..1d801d4fc43 100644 --- a/src/common/datatypes/List.h +++ b/src/common/datatypes/List.h @@ -24,6 +24,10 @@ struct List { } explicit List(const std::vector<Value>& l) : values(l) {} + // Template static factory method to cr...
[ "src/common/datatypes/List.h" ]
[ { "comment": "这个函数名应该叫createFromVector", "path": "src/common/datatypes/List.h", "hunk": "@@ -24,6 +24,10 @@ struct List {\n }\n explicit List(const std::vector<Value>& l) : values(l) {}\n \n+ // Template static factory method to create a list with specific types\n+ template <typename T>\n+ static...
true
vesoft-inc/nebula
5,914
comment_to_fix
Added support for the List/Set type
异常分支用LOG(ERROR)
b011aa2a8c895d541f1a12f1dd685e51e051dc15
32669b8045e2ffe4cf0590ca2545f403b747ae6f
diff --git a/src/meta/processors/schema/SchemaUtil.cpp b/src/meta/processors/schema/SchemaUtil.cpp index 526efc1fe34..0bdcc38e7f1 100644 --- a/src/meta/processors/schema/SchemaUtil.cpp +++ b/src/meta/processors/schema/SchemaUtil.cpp @@ -14,6 +14,60 @@ namespace meta { using nebula::cpp2::PropertyType; +template <t...
[ "src/meta/processors/schema/SchemaUtil.cpp" ]
[ { "comment": "异常分支用LOG(ERROR)", "path": "src/meta/processors/schema/SchemaUtil.cpp", "hunk": "@@ -180,6 +180,231 @@ bool SchemaUtil::checkType(std::vector<cpp2::ColumnDef>& columns) {\n }\n return true;\n }\n+\n+ // NEW CREATE LIST\n+ case PropertyType::LIST_STRING: {\n+ if (!...
true
vesoft-inc/nebula
5,914
comment_to_fix
Added support for the List/Set type
异常分支的地方加写warn或者error级别的日志打印
b011aa2a8c895d541f1a12f1dd685e51e051dc15
32669b8045e2ffe4cf0590ca2545f403b747ae6f
diff --git a/src/codec/RowReaderV2.cpp b/src/codec/RowReaderV2.cpp index 9c9ef343edc..47101dd9239 100644 --- a/src/codec/RowReaderV2.cpp +++ b/src/codec/RowReaderV2.cpp @@ -2,13 +2,44 @@ * * This source code is licensed under Apache 2.0 License. */ - #include "codec/RowReaderV2.h" namespace nebula { using ...
[ "src/codec/RowReaderV2.cpp" ]
[ { "comment": "异常分支的地方加写warn或者error级别的日志打印", "path": "src/codec/RowReaderV2.cpp", "hunk": "@@ -206,6 +205,368 @@ Value RowReaderV2::getValueByIndex(const int64_t index) const {\n }\n return std::move(geogRet).value();\n }\n+ // NEW List\n+ case PropertyType::LIST_STRING: {\n+ ...
true
vesoft-inc/nebula
5,914
comment_to_fix
Added support for the List/Set type
异常分支加日志打印
b011aa2a8c895d541f1a12f1dd685e51e051dc15
32669b8045e2ffe4cf0590ca2545f403b747ae6f
diff --git a/src/codec/RowWriterV2.cpp b/src/codec/RowWriterV2.cpp index 1e4245559fa..b2ca647b0fa 100644 --- a/src/codec/RowWriterV2.cpp +++ b/src/codec/RowWriterV2.cpp @@ -16,6 +16,80 @@ namespace nebula { using nebula::cpp2::PropertyType; +// Function used to identify the data type written +WriteResult writeItem...
[ "src/codec/RowWriterV2.cpp" ]
[ { "comment": "异常分支加日志打印", "path": "src/codec/RowWriterV2.cpp", "hunk": "@@ -820,6 +830,125 @@ WriteResult RowWriterV2::write(ssize_t index, const Geography& v) {\n std::string wkb = v.asWKB();\n return write(index, folly::StringPiece(wkb), true);\n }\n+// NEW write List\n+WriteResult RowWriterV2::wr...
true
vesoft-inc/nebula
5,914
comment_to_fix
Added support for the List/Set type
Could you add some description of the Set and List storage formats at the beginning of the file?
b011aa2a8c895d541f1a12f1dd685e51e051dc15
32669b8045e2ffe4cf0590ca2545f403b747ae6f
diff --git a/src/codec/RowWriterV2.h b/src/codec/RowWriterV2.h index 6c544d0c392..c1560e62a56 100644 --- a/src/codec/RowWriterV2.h +++ b/src/codec/RowWriterV2.h @@ -221,6 +221,8 @@ class RowWriterV2 { size_t numNullBytes_; size_t approxStrLen_; bool finished_; + // Limit array length + static constexpr int32...
[ "src/codec/RowWriterV2.h" ]
[ { "comment": "Could you add some description of the Set and List storage formats at the beginning of the file?", "path": "src/codec/RowWriterV2.h", "hunk": "@@ -263,6 +263,8 @@ class RowWriterV2 {\n WriteResult write(ssize_t index, const Duration& v);\n \n WriteResult write(ssize_t index, const Geog...
true
vesoft-inc/nebula
5,914
comment_to_fix
Added support for the List/Set type
It looks like the logic for handling list int, list string and list float is very similar. Maybe we should wrap it in a template function.
b011aa2a8c895d541f1a12f1dd685e51e051dc15
32669b8045e2ffe4cf0590ca2545f403b747ae6f
diff --git a/src/codec/RowWriterV2.cpp b/src/codec/RowWriterV2.cpp index 1e4245559fa..b2ca647b0fa 100644 --- a/src/codec/RowWriterV2.cpp +++ b/src/codec/RowWriterV2.cpp @@ -16,6 +16,80 @@ namespace nebula { using nebula::cpp2::PropertyType; +// Function used to identify the data type written +WriteResult writeItem...
[ "src/codec/RowWriterV2.cpp" ]
[ { "comment": "It looks like the logic for handling list int, list string and list float is very similar. Maybe we should wrap it in a template function.", "path": "src/codec/RowWriterV2.cpp", "hunk": "@@ -820,6 +829,130 @@ WriteResult RowWriterV2::write(ssize_t index, const Geography& v) {\n std::stri...
true
vesoft-inc/nebula
5,914
comment_to_fix
Added support for the List/Set type
DITTO
b011aa2a8c895d541f1a12f1dd685e51e051dc15
32669b8045e2ffe4cf0590ca2545f403b747ae6f
diff --git a/src/codec/RowWriterV2.cpp b/src/codec/RowWriterV2.cpp index 1e4245559fa..b2ca647b0fa 100644 --- a/src/codec/RowWriterV2.cpp +++ b/src/codec/RowWriterV2.cpp @@ -16,6 +16,80 @@ namespace nebula { using nebula::cpp2::PropertyType; +// Function used to identify the data type written +WriteResult writeItem...
[ "src/codec/RowWriterV2.cpp" ]
[ { "comment": "DITTO", "path": "src/codec/RowWriterV2.cpp", "hunk": "@@ -820,6 +829,130 @@ WriteResult RowWriterV2::write(ssize_t index, const Geography& v) {\n std::string wkb = v.asWKB();\n return write(index, folly::StringPiece(wkb), true);\n }\n+WriteResult RowWriterV2::write(ssize_t index, const...
true
vesoft-inc/nebula
5,914
comment_to_fix
Added support for the List/Set type
It seems that we don't need an additional `result` to store the result; we can directly modify `list` in place.
b011aa2a8c895d541f1a12f1dd685e51e051dc15
32669b8045e2ffe4cf0590ca2545f403b747ae6f
diff --git a/src/common/function/FunctionManager.cpp b/src/common/function/FunctionManager.cpp index f654ba64dd0..ca159d75dee 100644 --- a/src/common/function/FunctionManager.cpp +++ b/src/common/function/FunctionManager.cpp @@ -161,7 +161,25 @@ std::unordered_map<std::string, std::vector<TypeSignature>> FunctionManage...
[ "src/common/function/FunctionManager.cpp" ]
[ { "comment": "It seems that we don't need an additional `result` to store the result; we can directly modify `list` in place.", "path": "src/common/function/FunctionManager.cpp", "hunk": "@@ -1376,6 +1394,73 @@ FunctionManager::FunctionManager() {\n std::string newStr(args[2].get().getStr());\n ...
true
vesoft-inc/nebula
5,914
comment_to_fix
Added support for the List/Set type
DITTO
b011aa2a8c895d541f1a12f1dd685e51e051dc15
32669b8045e2ffe4cf0590ca2545f403b747ae6f
diff --git a/src/common/function/FunctionManager.cpp b/src/common/function/FunctionManager.cpp index f654ba64dd0..ca159d75dee 100644 --- a/src/common/function/FunctionManager.cpp +++ b/src/common/function/FunctionManager.cpp @@ -161,7 +161,25 @@ std::unordered_map<std::string, std::vector<TypeSignature>> FunctionManage...
[ "src/common/function/FunctionManager.cpp" ]
[ { "comment": "DITTO", "path": "src/common/function/FunctionManager.cpp", "hunk": "@@ -1376,6 +1394,73 @@ FunctionManager::FunctionManager() {\n std::string newStr(args[2].get().getStr());\n return boost::replace_all_copy(origStr, search, newStr);\n }\n+ if (args[0].get().isLis...
true
vesoft-inc/nebula
5,914
comment_to_fix
Added support for the List/Set type
Do we need `LIST_LIST_*` ? It seems that we don't support nested lists.
b011aa2a8c895d541f1a12f1dd685e51e051dc15
32669b8045e2ffe4cf0590ca2545f403b747ae6f
diff --git a/src/common/meta/NebulaSchemaProvider.cpp b/src/common/meta/NebulaSchemaProvider.cpp index 570d931bc6e..40475a1f672 100644 --- a/src/common/meta/NebulaSchemaProvider.cpp +++ b/src/common/meta/NebulaSchemaProvider.cpp @@ -167,6 +167,14 @@ std::size_t NebulaSchemaProvider::fieldSize(PropertyType type, std::si...
[ "src/common/meta/NebulaSchemaProvider.cpp" ]
[ { "comment": "Do we need `LIST_LIST_*` ? It seems that we don't support nested lists.", "path": "src/common/meta/NebulaSchemaProvider.cpp", "hunk": "@@ -167,6 +167,20 @@ std::size_t NebulaSchemaProvider::fieldSize(PropertyType type, std::size_t fixed\n return 8; // as same as STRING\n case Pr...
true
vesoft-inc/nebula
5,914
comment_to_fix
Added support for the List/Set type
DITTO
b011aa2a8c895d541f1a12f1dd685e51e051dc15
32669b8045e2ffe4cf0590ca2545f403b747ae6f
diff --git a/src/common/meta/NebulaSchemaProvider.cpp b/src/common/meta/NebulaSchemaProvider.cpp index 570d931bc6e..40475a1f672 100644 --- a/src/common/meta/NebulaSchemaProvider.cpp +++ b/src/common/meta/NebulaSchemaProvider.cpp @@ -167,6 +167,14 @@ std::size_t NebulaSchemaProvider::fieldSize(PropertyType type, std::si...
[ "src/common/meta/NebulaSchemaProvider.cpp" ]
[ { "comment": "DITTO", "path": "src/common/meta/NebulaSchemaProvider.cpp", "hunk": "@@ -167,6 +167,20 @@ std::size_t NebulaSchemaProvider::fieldSize(PropertyType type, std::size_t fixed\n return 8; // as same as STRING\n case PropertyType::DURATION:\n return sizeof(int64_t) + sizeof(int3...
true
vesoft-inc/nebula
5,914
comment_to_fix
Added support for the List/Set type
Could you explain the changes here?
b011aa2a8c895d541f1a12f1dd685e51e051dc15
32669b8045e2ffe4cf0590ca2545f403b747ae6f
diff --git a/src/graph/executor/algo/AllPathsExecutor.cpp b/src/graph/executor/algo/AllPathsExecutor.cpp index 351719a306d..e79e02c8813 100644 --- a/src/graph/executor/algo/AllPathsExecutor.cpp +++ b/src/graph/executor/algo/AllPathsExecutor.cpp @@ -562,38 +562,38 @@ folly::Future<Status> AllPathsExecutor::conjunctPath(...
[ "src/graph/executor/algo/AllPathsExecutor.cpp" ]
[ { "comment": "Could you explain the changes here?", "path": "src/graph/executor/algo/AllPathsExecutor.cpp", "hunk": "@@ -562,38 +562,38 @@ folly::Future<Status> AllPathsExecutor::conjunctPath(std::vector<NPath*>& leftPa\n }\n return folly::collectAll(futures)\n .via(runner())\n- .thenValu...
true
vesoft-inc/nebula
5,914
comment_to_fix
Added support for the List/Set type
We don't need to pass `serializedStrings`, `serializedInts`,`serializedFloats` in this function because we don't allow lists to have different types. I think the following template function is sufficient. ``` template <typename Type> WriteResult write(...) { std::unordered_set<Type> serialized; if conste...
b011aa2a8c895d541f1a12f1dd685e51e051dc15
32669b8045e2ffe4cf0590ca2545f403b747ae6f
diff --git a/src/codec/RowWriterV2.cpp b/src/codec/RowWriterV2.cpp index 1e4245559fa..b2ca647b0fa 100644 --- a/src/codec/RowWriterV2.cpp +++ b/src/codec/RowWriterV2.cpp @@ -16,6 +16,80 @@ namespace nebula { using nebula::cpp2::PropertyType; +// Function used to identify the data type written +WriteResult writeItem...
[ "src/codec/RowWriterV2.cpp" ]
[ { "comment": "We don't need to pass `serializedStrings`, `serializedInts`,`serializedFloats` in this function because we don't allow lists to have different types. I think the following template function is sufficient. \r\n```\r\ntemplate <typename Type>\r\nWriteResult write(...) {\r\n std::unordered_set<Ty...
true
vesoft-inc/nebula
5,914
comment_to_fix
Added support for the List/Set type
You might misunderstand my comment. `const_cast` is risky; we should not modify the value of the input parameter. Instead, we should copy it.
b011aa2a8c895d541f1a12f1dd685e51e051dc15
32669b8045e2ffe4cf0590ca2545f403b747ae6f
diff --git a/src/common/function/FunctionManager.cpp b/src/common/function/FunctionManager.cpp index f654ba64dd0..ca159d75dee 100644 --- a/src/common/function/FunctionManager.cpp +++ b/src/common/function/FunctionManager.cpp @@ -161,7 +161,25 @@ std::unordered_map<std::string, std::vector<TypeSignature>> FunctionManage...
[ "src/common/function/FunctionManager.cpp" ]
[ { "comment": "You might misunderstand my comment. `const_cast` is risky; we should not modify the value of the input parameter. Instead, we should copy it.", "path": "src/common/function/FunctionManager.cpp", "hunk": "@@ -1388,43 +1388,41 @@ FunctionManager::FunctionManager() {\n if (args[0].get()...
true
vesoft-inc/nebula
5,914
comment_to_fix
Added support for the List/Set type
DITTO
b011aa2a8c895d541f1a12f1dd685e51e051dc15
32669b8045e2ffe4cf0590ca2545f403b747ae6f
diff --git a/src/common/function/FunctionManager.cpp b/src/common/function/FunctionManager.cpp index f654ba64dd0..ca159d75dee 100644 --- a/src/common/function/FunctionManager.cpp +++ b/src/common/function/FunctionManager.cpp @@ -161,7 +161,25 @@ std::unordered_map<std::string, std::vector<TypeSignature>> FunctionManage...
[ "src/common/function/FunctionManager.cpp" ]
[ { "comment": "DITTO", "path": "src/common/function/FunctionManager.cpp", "hunk": "@@ -1388,43 +1388,41 @@ FunctionManager::FunctionManager() {\n if (args[0].get().isNull() || args[1].get().isNull() || args[2].get().isNull()) {\n return Value::kNullValue;\n }\n+\n if (args[0].ge...
true
vesoft-inc/nebula
5,914
comment_to_fix
Added support for the List/Set type
DITTO
b011aa2a8c895d541f1a12f1dd685e51e051dc15
32669b8045e2ffe4cf0590ca2545f403b747ae6f
diff --git a/src/common/function/FunctionManager.cpp b/src/common/function/FunctionManager.cpp index f654ba64dd0..ca159d75dee 100644 --- a/src/common/function/FunctionManager.cpp +++ b/src/common/function/FunctionManager.cpp @@ -161,7 +161,25 @@ std::unordered_map<std::string, std::vector<TypeSignature>> FunctionManage...
[ "src/common/function/FunctionManager.cpp" ]
[ { "comment": "DITTO", "path": "src/common/function/FunctionManager.cpp", "hunk": "@@ -1388,43 +1388,41 @@ FunctionManager::FunctionManager() {\n if (args[0].get().isNull() || args[1].get().isNull() || args[2].get().isNull()) {\n return Value::kNullValue;\n }\n+\n if (args[0].ge...
true
vesoft-inc/nebula
5,914
comment_to_fix
Added support for the List/Set type
If the container is a List, we don't need the`unordered_set`. Can we be sure that the compiler can ignore it without affecting performance?
b011aa2a8c895d541f1a12f1dd685e51e051dc15
32669b8045e2ffe4cf0590ca2545f403b747ae6f
diff --git a/src/codec/RowWriterV2.cpp b/src/codec/RowWriterV2.cpp index 1e4245559fa..b2ca647b0fa 100644 --- a/src/codec/RowWriterV2.cpp +++ b/src/codec/RowWriterV2.cpp @@ -16,6 +16,80 @@ namespace nebula { using nebula::cpp2::PropertyType; +// Function used to identify the data type written +WriteResult writeItem...
[ "src/codec/RowWriterV2.cpp" ]
[ { "comment": "If the container is a List, we don't need the`unordered_set`. Can we be sure that the compiler can ignore it without affecting performance?\r\n", "path": "src/codec/RowWriterV2.cpp", "hunk": "@@ -16,6 +16,50 @@ namespace nebula {\n \n using nebula::cpp2::PropertyType;\n \n+// Template func...
true
vesoft-inc/nebula
5,958
issue_to_patch
option to enable build-in log rotation enabled leveraging glog #5688
<!-- Thanks for your contribution! In order to review PR more efficiently, please add information according to the template. --> ## What type of PR is this? - [ ] bug - [x] feature - [ ] enhancement ## What problem(s) does this PR solve? #### Issue(s) number: #5688 #### Description: add option log_cle...
831c17487a874acdfa29a2f162f5c9ef5fcaad80
3b835382f2b7a13fd9bbd3088e37d709625adca4
diff --git a/conf/nebula-graphd.conf.default b/conf/nebula-graphd.conf.default index d57d3f8a28b..57c8fbdcaa7 100644 --- a/conf/nebula-graphd.conf.default +++ b/conf/nebula-graphd.conf.default @@ -30,6 +30,9 @@ --stderrthreshold=3 # wether logging files' name contain time stamp. --timestamp_in_logfile_name=true +# u...
[ "conf/nebula-graphd.conf.default", "conf/nebula-metad.conf.default", "conf/nebula-standalone.conf.default", "conf/nebula-storaged-listener.conf.default", "conf/nebula-storaged.conf.default", "src/daemons/SetupLogging.cpp" ]
[]
true
vesoft-inc/nebula
726
issue_to_patch
Meta Server init fail when leader change
When Meta starts, if this is the first time Meta creates a cluster id and at this moment leader change(in kvstore->asyncMultiPut() function), Meta Server start will fail.
1b2d105ca815d5000bd94a2ba51a86e1d38d04fa
5a0511c3df3d9ea59eaea0d4789923ed9d81974e
diff --git a/src/meta/ClusterManager.cpp b/src/meta/ClusterManager.cpp index 75ea86776cf..ab8cee83caf 100644 --- a/src/meta/ClusterManager.cpp +++ b/src/meta/ClusterManager.cpp @@ -12,36 +12,80 @@ #include "meta/processors/Common.h" #include "folly/synchronization/Baton.h" + +DEFINE_int32(putTryNum, 10, "try num of...
[ "src/meta/ClusterManager.cpp", "src/meta/ClusterManager.h" ]
[ { "comment": "do we not support cluster id when we not use nebula store?", "path": "src/daemons/MetaDaemon.cpp", "hunk": "@@ -117,10 +117,15 @@ int main(int argc, char *argv[]) {\n }\n \n auto *kvstore_ = kvstore.get();\n+ auto *nebulaStore = dynamic_cast<nebula::kvstore::NebulaStore*>(kvstor...
true
vesoft-inc/nebula
4,550
issue_to_patch
Fix stats log print to console when we start process.
we before setupLogging, init our stats, when we adjust high level verbose log. it will be output logs to console. ## What type of PR is this? - [x] bug - [ ] feature - [ ] enhancement ## What problem(s) does this PR solve? #### Issue(s) number: I do not pull new issue for this. #### Description: we bef...
2a9c85022b9c5776922cabdc71d9e772a4fac70a
60f6c09339eedfab55287a324a956c04473a3020
diff --git a/src/daemons/MetaDaemon.cpp b/src/daemons/MetaDaemon.cpp index 2f01508ac1b..a128232b466 100644 --- a/src/daemons/MetaDaemon.cpp +++ b/src/daemons/MetaDaemon.cpp @@ -83,9 +83,6 @@ int main(int argc, char* argv[]) { return EXIT_FAILURE; } - // Init stats - nebula::initMetaStats(); - folly::init...
[ "src/daemons/MetaDaemon.cpp", "src/daemons/StorageDaemon.cpp" ]
[]
true
vesoft-inc/nebula
4,162
issue_to_patch
optimizer path
<!-- Thanks for your contribution! In order to review PR more efficiently, please add information according to the template. --> ## What type of PR is this? - [ ] bug - [ ] feature - [x] enhancement ## What problem(s) does this PR solve? #### Issue(s) number: #### Description: ``` Data Structure(Prev...
d6df28c401085a5d551d4b21489c296e71d3715c
24eb885e0894c1783811866d333b12ba835b9a35
diff --git a/src/graph/executor/algo/BFSShortestPathExecutor.cpp b/src/graph/executor/algo/BFSShortestPathExecutor.cpp index 87730bf31f5..c01352a6e18 100644 --- a/src/graph/executor/algo/BFSShortestPathExecutor.cpp +++ b/src/graph/executor/algo/BFSShortestPathExecutor.cpp @@ -135,13 +135,12 @@ folly::Future<Status> BFS...
[ "src/graph/executor/algo/BFSShortestPathExecutor.cpp", "src/graph/executor/algo/MultiShortestPathExecutor.cpp", "src/graph/executor/algo/MultiShortestPathExecutor.h", "src/graph/executor/algo/ProduceAllPathsExecutor.cpp", "src/graph/executor/test/FindPathTest.cpp", "src/graph/service/GraphFlags.cpp" ]
[]
diff --git a/src/graph/executor/test/FindPathTest.cpp b/src/graph/executor/test/FindPathTest.cpp index ec227e40f47..ffe5a8f62b9 100644 --- a/src/graph/executor/test/FindPathTest.cpp +++ b/src/graph/executor/test/FindPathTest.cpp @@ -710,7 +710,7 @@ TEST_F(FindPathTest, multiSourceShortestPath) { { DataSet e...
true
vesoft-inc/nebula
5,955
issue_to_patch
fix cmake error in pr #5846
<!-- Thanks for your contribution! In order to review PR more efficiently, please add information according to the template. --> ## What type of PR is this? - [ ] bug - [x] feature - [ ] enhancement ## What problem(s) does this PR solve? #### Issue(s) number: https://github.com/vesoft-inc/nebula/pull/584...
41b095ecfb9f044b5e17df7a76bf4ed0b36c91b3
ba68a89d981abc4d41df9f7d4b0e5a6035d8d7a6
diff --git a/src/common/function/FunctionManager.cpp b/src/common/function/FunctionManager.cpp index cc2393a775d..f654ba64dd0 100644 --- a/src/common/function/FunctionManager.cpp +++ b/src/common/function/FunctionManager.cpp @@ -7,6 +7,7 @@ #include <float.h> #include <folly/json.h> +#include <proxygen/lib/utils/Cr...
[ "src/common/base/test/CMakeLists.txt", "src/common/datatypes/test/CMakeLists.txt", "src/common/expression/test/CMakeLists.txt", "src/common/function/FunctionManager.cpp", "src/common/function/test/CMakeLists.txt", "src/common/function/test/FunctionManagerTest.cpp", "src/common/geo/test/CMakeLists.txt", ...
[]
diff --git a/src/common/base/test/CMakeLists.txt b/src/common/base/test/CMakeLists.txt index e644906d920..cf46e0c8763 100644 --- a/src/common/base/test/CMakeLists.txt +++ b/src/common/base/test/CMakeLists.txt @@ -120,6 +120,7 @@ nebula_add_executable( LIBRARIES follybenchmark ${THRIFT_LIBRARIES} ...
true
vesoft-inc/nebula
5,571
issue_to_patch
Optimize the write performance when host is down
<!-- Thanks for your contribution! In order to review PR more efficiently, please add information according to the template. --> ## What type of PR is this? - [ ] enhancement ## What problem(s) does this PR solve? #### Issue(s) number: https://github.com/vesoft-inc/nebula/issues/5570 #### Description: Op...
e469b32018c2801c15024cd0c945bca366fb21f5
ccaa9569303913c01af615102fdf657d341e4484
diff --git a/src/kvstore/raftex/Host.cpp b/src/kvstore/raftex/Host.cpp index 826bb0e4e2c..22bbad341c4 100644 --- a/src/kvstore/raftex/Host.cpp +++ b/src/kvstore/raftex/Host.cpp @@ -21,6 +21,9 @@ DEFINE_uint32(max_appendlog_batch_size, "The max number of logs in each appendLog request batch"); DEFINE_uin...
[ "src/kvstore/raftex/Host.cpp", "src/kvstore/raftex/Host.h", "src/kvstore/raftex/RaftPart.cpp" ]
[ { "comment": "Why not just use `paused_` to control whether send heartbeat or not? The `canSendHBOrVote` is not quite necessary to me.", "path": "src/kvstore/raftex/Host.h", "hunk": "@@ -244,6 +251,12 @@ class Host final : public std::enable_shared_from_this<Host> {\n \n mutable std::mutex lock_;\n \n...
true
vesoft-inc/nebula
5,571
comment_to_fix
Optimize the write performance when host is down
Why not just use `paused_` to control whether send heartbeat or not? The `canSendHBOrVote` is not quite necessary to me.
e469b32018c2801c15024cd0c945bca366fb21f5
ccaa9569303913c01af615102fdf657d341e4484
diff --git a/src/kvstore/raftex/Host.h b/src/kvstore/raftex/Host.h index 0f5f481849a..49bbf3d9ee8 100644 --- a/src/kvstore/raftex/Host.h +++ b/src/kvstore/raftex/Host.h @@ -168,6 +168,13 @@ class Host final : public std::enable_shared_from_this<Host> { */ nebula::cpp2::ErrorCode canAppendLog() const; + /** + ...
[ "src/kvstore/raftex/Host.h" ]
[ { "comment": "Why not just use `paused_` to control whether send heartbeat or not? The `canSendHBOrVote` is not quite necessary to me.", "path": "src/kvstore/raftex/Host.h", "hunk": "@@ -244,6 +251,12 @@ class Host final : public std::enable_shared_from_this<Host> {\n \n mutable std::mutex lock_;\n \n...
true
vesoft-inc/nebula
4,629
issue_to_patch
Rollback vertex key
## What type of PR is this? - [ ] bug - [ ] feature - [X] enhancement ## What problem(s) does this PR solve? #### Issue(s) number: #### Description: Rollback the vertex key, upgrade tool is removed directly. There are still two tck cases I think it is wrong: 1. GoYieldVertexEdge.feature: multi edges ove...
7d5e93fc15e554625962e91998c0f93bceaa3bb0
9858328d2316844c615f81e603cd59ec83ea00ed
diff --git a/docker/README.md b/docker/README.md index 6cd7391c46e..92365b474ac 100644 --- a/docker/README.md +++ b/docker/README.md @@ -5,4 +5,4 @@ Following docker images will be ready in production. - [vesoft/nebula-graphd](https://hub.docker.com/r/vesoft/nebula-graphd): nebula-graphd service built with `Dockerfile...
[ "docker/README.md", "src/common/utils/NebulaKeyUtils.cpp", "src/common/utils/NebulaKeyUtils.h", "src/graph/service/GraphFlags.cpp", "src/graph/service/GraphFlags.h", "src/graph/validator/MutateValidator.cpp", "src/storage/CompactionFilter.h", "src/storage/StorageFlags.cpp", "src/storage/StorageFlags...
[]
diff --git a/tests/tck/features/delete/DeleteTag.IntVid.feature b/tests/tck/features/delete/DeleteTag.IntVid.feature index aaffae4d825..af279dd4701 100644 --- a/tests/tck/features/delete/DeleteTag.IntVid.feature +++ b/tests/tck/features/delete/DeleteTag.IntVid.feature @@ -41,7 +41,6 @@ Feature: Delete int vid of tag ...
true
vesoft-inc/nebula
5,956
issue_to_patch
[DOC] Update to the latest product doc link and fix the DBaaS link
<!-- Thanks for your contribution! In order to review PR more efficiently, please add information according to the template. --> ## What type of PR is this? - [ ] bug - [ ] feature - [ ] enhancement ## What problem(s) does this PR solve? #### Issue(s) number: #### Description: - Update to the latest p...
cf9c1c573e3bdeeead4b508ea98ae589add17dd9
06ed60aca55d4500632a824c66f7dfb97a5d4024
diff --git a/README-CN.md b/README-CN.md index 7a2fcd7fc3b..c0c3ac966e8 100644 --- a/README-CN.md +++ b/README-CN.md @@ -68,7 +68,7 @@ NebulaGraph内核 1.x 与 2.x 数据格式、通信协议、客户端等均双 ## 快速使用 -您可以在[云上](https://docs.nebula-graph.com.cn/3.3.0/2.quick-start/1.quick-start-overview/#_2)或[本地](https://docs.nebula-graph.com.cn/3....
[ "README-CN.md", "README.md" ]
[]
true
vesoft-inc/nebula
3,338
issue_to_patch
Add duration.
#### What type of PR is this? - [ ] bug - [x] feature - [ ] enhancement #### What does this PR do? Related to #3101 #### Which issue(s)/PR(s) this PR relates to? #### Special notes for your reviewer, ex. impact of this fix, etc: #### Additional context: #### Checklist: - [x] Documentation a...
e6ddeb293269d6fb9621358039eb8c554b34bf43
f179fb423d1fafb637ace28ce03f86768c38ebe0
diff --git a/src/codec/RowReaderV2.cpp b/src/codec/RowReaderV2.cpp index 7b904d47092..4c82b04fdc5 100644 --- a/src/codec/RowReaderV2.cpp +++ b/src/codec/RowReaderV2.cpp @@ -176,6 +176,17 @@ Value RowReaderV2::getValueByIndex(const int64_t index) const noexcept { dt.microsec = microsec; return dt; } +...
[ "src/codec/RowReaderV2.cpp", "src/codec/RowWriterV2.cpp", "src/codec/RowWriterV2.h", "src/codec/test/RowWriterV2Test.cpp", "src/codec/test/SchemaWriter.cpp", "src/common/datatypes/CMakeLists.txt", "src/common/datatypes/CommonCpp2Ops.h", "src/common/datatypes/Date.cpp", "src/common/datatypes/Date.h",...
[ { "comment": "Better to modify this function to `friend Date operator+(const Date &date, const Duration &dur)`.\r\neg. The implementation of expression `Duration(..)+Date(..)` will be simpler.", "path": "src/common/datatypes/Date.cpp", "hunk": "@@ -92,16 +97,224 @@ Date Date::operator-(int64_t days) con...
diff --git a/src/codec/test/RowWriterV2Test.cpp b/src/codec/test/RowWriterV2Test.cpp index c1b6be0eafd..5d15ae4e514 100644 --- a/src/codec/test/RowWriterV2Test.cpp +++ b/src/codec/test/RowWriterV2Test.cpp @@ -43,6 +43,7 @@ const Geography geogPolygon = Polygon( ...
true
vesoft-inc/nebula
3,338
comment_to_fix
Add duration.
Better to modify this function to `friend Date operator+(const Date &date, const Duration &dur)`. eg. The implementation of expression `Duration(..)+Date(..)` will be simpler.
e6ddeb293269d6fb9621358039eb8c554b34bf43
f179fb423d1fafb637ace28ce03f86768c38ebe0
diff --git a/src/common/datatypes/Date.cpp b/src/common/datatypes/Date.cpp index 7c2fd9861a6..bc573962b35 100644 --- a/src/common/datatypes/Date.cpp +++ b/src/common/datatypes/Date.cpp @@ -20,6 +20,11 @@ static inline std::string decimal(const std::string& number) { const int64_t kDaysSoFar[] = {0, 31, 59, 90, 120, 15...
[ "src/common/datatypes/Date.cpp" ]
[ { "comment": "Better to modify this function to `friend Date operator+(const Date &date, const Duration &dur)`.\r\neg. The implementation of expression `Duration(..)+Date(..)` will be simpler.", "path": "src/common/datatypes/Date.cpp", "hunk": "@@ -92,16 +97,224 @@ Date Date::operator-(int64_t days) con...
true
vesoft-inc/nebula
3,338
comment_to_fix
Add duration.
Ditto.
e6ddeb293269d6fb9621358039eb8c554b34bf43
f179fb423d1fafb637ace28ce03f86768c38ebe0
diff --git a/src/common/datatypes/Date.cpp b/src/common/datatypes/Date.cpp index 7c2fd9861a6..bc573962b35 100644 --- a/src/common/datatypes/Date.cpp +++ b/src/common/datatypes/Date.cpp @@ -20,6 +20,11 @@ static inline std::string decimal(const std::string& number) { const int64_t kDaysSoFar[] = {0, 31, 59, 90, 120, 15...
[ "src/common/datatypes/Date.cpp" ]
[ { "comment": "Ditto.", "path": "src/common/datatypes/Date.cpp", "hunk": "@@ -92,16 +97,224 @@ Date Date::operator-(int64_t days) const {\n return Date(daysSince - days);\n }\n \n+void Date::addDuration(const Duration& duration) {\n+ int64_t tmp{0}, carry{0};\n+ tmp = month + duration.months;\n+ if ...
true
vesoft-inc/nebula
5,580
issue_to_patch
Support to return score from es query
<!-- Thanks for your contribution! In order to review PR more efficiently, please add information according to the template. --> ## What type of PR is this? - [ ] bug - [X] feature - [ ] enhancement ## What problem(s) does this PR solve? #### Issue(s) number: #### Description: ``` LOOKUP ON edge2 w...
209d0bf976cba24190263b76e4b852613c70ec3d
6db0ac07f49db233e837dc9950564c7b68f09f6b
diff --git a/src/common/function/FunctionManager.cpp b/src/common/function/FunctionManager.cpp index c55d867544e..07463ced482 100644 --- a/src/common/function/FunctionManager.cpp +++ b/src/common/function/FunctionManager.cpp @@ -436,6 +436,7 @@ std::unordered_map<std::string, std::vector<TypeSignature>> FunctionManager...
[ "src/common/function/FunctionManager.cpp", "src/common/plugin/fulltext/elasticsearch/ESAdapter.h", "src/graph/context/ast/QueryAstContext.h", "src/graph/executor/query/FulltextIndexScanExecutor.cpp", "src/graph/executor/query/InnerJoinExecutor.cpp", "src/graph/optimizer/CMakeLists.txt", "src/graph/optim...
[]
true
vesoft-inc/nebula
5,952
issue_to_patch
[auto-pick-to-release-3.8]Fixed vulnerability issues
* Fixed a security bug involving shell injection * Fixed a security bug involving authentication bypass Cherry-pick from [vesoft-inc/nebula#5936](https://github.com/vesoft-inc/nebula/pull/5936)
fa928930ab34f150db522933323aa610e54f26e7
e8af1cafa0652c58283a7e7fecc2b1eb7a10e57b
diff --git a/src/common/network/NetworkUtils.cpp b/src/common/network/NetworkUtils.cpp index 43d67d892be..1e302a9dc90 100644 --- a/src/common/network/NetworkUtils.cpp +++ b/src/common/network/NetworkUtils.cpp @@ -307,6 +307,18 @@ std::string NetworkUtils::toHostsStr(const std::vector<HostAddr>& hosts) { return hosts...
[ "src/common/network/NetworkUtils.cpp", "src/common/network/NetworkUtils.h", "src/meta/processors/job/DownloadJobExecutor.cpp", "src/webservice/SetFlagsHandler.cpp" ]
[]
true
vesoft-inc/nebula
5,887
issue_to_patch
Fix release runner
<!-- Thanks for your contribution! In order to review PR more efficiently, please add information according to the template. --> ## What type of PR is this? - [ ] bug - [ ] feature - [ ] enhancement ## What problem(s) does this PR solve? #### Issue(s) number: #### Description: ## How do you solve ...
66e8a6d474735d23ef24b744f4eda3c46682fed5
bfab9c529536ccd56fb3ae82f8692a10d58ac7bc
diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 9988c09ca76..74821b79d01 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -16,7 +16,7 @@ defaults: jobs: package: name: package - runs-on: ubuntu-latest + runs-on: [self-hosted, medium] ...
[ ".github/workflows/release.yml" ]
[]
true
vesoft-inc/nebula
5,938
issue_to_patch
Optimize filter pushdown and fix the bug in TCK tests.
<!-- Thanks for your contribution! In order to review PR more efficiently, please add information according to the template. --> ## What type of PR is this? - [x] bug - [ ] feature - [x] enhancement ## What problem(s) does this PR solve? #### Issue(s) number: #### Description: https://discuss.nebula-g...
1cafc2fdbabca7fd2c0c03b5a0c9ed114a8f2aa5
83db9cf6e3bedcab6b5881c5e49b3e2c63eb161f
diff --git a/src/graph/planner/match/MatchSolver.cpp b/src/graph/planner/match/MatchSolver.cpp index cb1ab8ddfd4..69d11923d70 100644 --- a/src/graph/planner/match/MatchSolver.cpp +++ b/src/graph/planner/match/MatchSolver.cpp @@ -123,6 +123,43 @@ bool MatchSolver::extractTagPropName(const Expression* expr, return tru...
[ "src/graph/planner/match/MatchSolver.cpp", "src/graph/planner/match/MatchSolver.h", "src/graph/util/OptimizerUtils.cpp", "src/graph/util/OptimizerUtils.h", "tests/common/plan_differ.py", "tests/tck/features/match/PushFilterDown.feature", "tests/tck/features/yield/parameter.feature" ]
[ { "comment": "Checking `optr == LogicalExpression::makeAnd` in all branches looks too strange. Could you refactor this code or remove these OR expression logics?", "path": "src/graph/planner/match/MatchSolver.cpp", "hunk": "@@ -136,25 +136,32 @@ Expression* MatchSolver::makeIndexFilter(const std::string...
diff --git a/tests/common/plan_differ.py b/tests/common/plan_differ.py index 061f8a2d31e..e383b28a121 100644 --- a/tests/common/plan_differ.py +++ b/tests/common/plan_differ.py @@ -183,10 +183,6 @@ def _is_subdict_nested(self, expect, resp): # The inner map cannot be empty if len(extracted_expected_di...
true
vesoft-inc/nebula
5,938
comment_to_fix
Optimize filter pushdown and fix the bug in TCK tests.
Checking `optr == LogicalExpression::makeAnd` in all branches looks too strange. Could you refactor this code or remove these OR expression logics?
1cafc2fdbabca7fd2c0c03b5a0c9ed114a8f2aa5
83db9cf6e3bedcab6b5881c5e49b3e2c63eb161f
diff --git a/src/graph/planner/match/MatchSolver.cpp b/src/graph/planner/match/MatchSolver.cpp index cb1ab8ddfd4..69d11923d70 100644 --- a/src/graph/planner/match/MatchSolver.cpp +++ b/src/graph/planner/match/MatchSolver.cpp @@ -123,6 +123,43 @@ bool MatchSolver::extractTagPropName(const Expression* expr, return tru...
[ "src/graph/planner/match/MatchSolver.cpp" ]
[ { "comment": "Checking `optr == LogicalExpression::makeAnd` in all branches looks too strange. Could you refactor this code or remove these OR expression logics?", "path": "src/graph/planner/match/MatchSolver.cpp", "hunk": "@@ -136,25 +136,32 @@ Expression* MatchSolver::makeIndexFilter(const std::string...
true
vesoft-inc/nebula
5,938
comment_to_fix
Optimize filter pushdown and fix the bug in TCK tests.
will fix it in later pr?
1cafc2fdbabca7fd2c0c03b5a0c9ed114a8f2aa5
83db9cf6e3bedcab6b5881c5e49b3e2c63eb161f
diff --git a/tests/tck/features/yield/parameter.feature b/tests/tck/features/yield/parameter.feature index df32e3b31c1..178164e86b8 100644 --- a/tests/tck/features/yield/parameter.feature +++ b/tests/tck/features/yield/parameter.feature @@ -48,6 +48,7 @@ Feature: Parameter | v | ...
[ "tests/tck/features/yield/parameter.feature" ]
[ { "comment": "will fix it in later pr?", "path": "tests/tck/features/yield/parameter.feature", "hunk": "@@ -48,6 +48,7 @@ Feature: Parameter\n | v |\n | {a: 3, b: false, c: \"Tim Duncan\"} |\n \n+ @skip #bug to fix: https://github.com/vesoft-inc/nebula/issues...
true
vesoft-inc/nebula
5,940
issue_to_patch
Add Monitoring Metrics to NebulaGraph #5841
<!-- Thanks for your contribution! In order to review PR more efficiently, please add information according to the template. --> ## What type of PR is this? - [ ] bug - [ ✅] feature - [ ] enhancement ## What problem(s) does this PR solve? Add-Monitoring-Metrics-to-NebulaGraph #### Issue(s) number: 5841 ...
20845087e5127cb4109aa190e42ecaefef0e8beb
28edff18b4990bf83875eb48573f7db81a5452c0
diff --git a/src/graph/executor/Executor.cpp b/src/graph/executor/Executor.cpp index 5450722f02b..b6ae9f242d1 100644 --- a/src/graph/executor/Executor.cpp +++ b/src/graph/executor/Executor.cpp @@ -209,6 +209,11 @@ Executor *Executor::makeExecutor(QueryContext *qctx, const PlanNode *node) { return pool->makeAndAd...
[ "src/graph/executor/Executor.cpp", "src/graph/executor/query/LimitExecutor.cpp", "src/graph/stats/GraphStats.cpp", "src/graph/stats/GraphStats.h" ]
[]
true
vesoft-inc/nebula
5,942
issue_to_patch
Update workflow
<!-- Thanks for your contribution! In order to review PR more efficiently, please add information according to the template. --> ## What type of PR is this? - [ ] bug - [ ] feature - [ ] enhancement ## What problem(s) does this PR solve? #### Issue(s) number: #### Description: ## How do you solve ...
b2437e45412451cbb9b03a692f3e9c8749bcab27
7893cf2f915dab5a45741055062f002342fb6d5a
diff --git a/.github/workflows/auto_cherry_pick.yml b/.github/workflows/auto_cherry_pick.yml index 2b20f18e9e7..19832b1a188 100644 --- a/.github/workflows/auto_cherry_pick.yml +++ b/.github/workflows/auto_cherry_pick.yml @@ -13,16 +13,11 @@ defaults: jobs: auto-cherry-pick: #if: ${{ startsWith(github.event.p...
[ ".github/workflows/auto_cherry_pick.yml", ".github/workflows/nightly.yml", ".github/workflows/pull_request.yml", ".github/workflows/rc.yml", ".github/workflows/release.yml" ]
[]
true
vesoft-inc/nebula
5,920
issue_to_patch
[BUG]Added support for data balancing when SSL is enabled. snapshot manager add ssl config
<!-- Thanks for your contribution! In order to review PR more efficiently, please add information according to the template. --> ## What type of PR is this? - [x] bug ## What problem(s) does this PR solve? #### Issue(s) https://github.com/vesoft-inc/nebula/issues/5924: #### Description: 数据均衡时,出现stor...
3e9c1063e224e65208f2f54afdb21f5a7acf0019
4184e77b9fdaea0b0fc6c476d31e97551bdb08d3
diff --git a/src/kvstore/raftex/SnapshotManager.cpp b/src/kvstore/raftex/SnapshotManager.cpp index ad2ebfbff44..519b09268d5 100644 --- a/src/kvstore/raftex/SnapshotManager.cpp +++ b/src/kvstore/raftex/SnapshotManager.cpp @@ -24,6 +24,8 @@ SnapshotManager::SnapshotManager() { ioThreadPool_.reset(new folly::IOThreadPo...
[ "src/kvstore/raftex/SnapshotManager.cpp", "src/kvstore/raftex/SnapshotManager.h" ]
[]
true
vesoft-inc/nebula
5,922
issue_to_patch
When LOOKUP ON Tag by geo index the storaged service will crash 社区论坛原链接 https://discuss.nebula-graph.com.cn/t/topic/15886 It's works well when there is only one geo index in the tag, but there will be problems when adding other indexes * OS: `Linux 5.15.153.1-microsoft-standard-WSL2 #1 SMP Fri Mar 29 23:14:13 UT...
fix the bug that index scan rule chooses a wrong geo index
<!-- Thanks for your contribution! In order to review PR more efficiently, please add information according to the template. --> ## What type of PR is this? - [ ] bug - [ ] feature - [ ] enhancement ## What problem(s) does this PR solve? #### Issue(s) number: Fix https://github.com/vesoft-inc/nebula/is...
c078c6cdc5346ecadca3e53fbd00b18eadeee326
8985380b5a69e0666b06b5c4d1f51bb1a8864244
diff --git a/src/graph/optimizer/rule/GeoPredicateIndexScanBaseRule.cpp b/src/graph/optimizer/rule/GeoPredicateIndexScanBaseRule.cpp index ffcc95df939..638128d77f8 100644 --- a/src/graph/optimizer/rule/GeoPredicateIndexScanBaseRule.cpp +++ b/src/graph/optimizer/rule/GeoPredicateIndexScanBaseRule.cpp @@ -83,6 +83,8 @@ S...
[ "src/graph/optimizer/rule/GeoPredicateIndexScanBaseRule.cpp", "tests/tck/features/geo/GeoBase.feature" ]
[]
diff --git a/tests/tck/features/geo/GeoBase.feature b/tests/tck/features/geo/GeoBase.feature index ff8c2eb7aa6..6ae77b31857 100644 --- a/tests/tck/features/geo/GeoBase.feature +++ b/tests/tck/features/geo/GeoBase.feature @@ -13,7 +13,7 @@ Feature: Geo base | collate | utf8_bin | And having ex...
true
viatsko/awesome-vscode
403
issue_to_patch
Add Mathworks MATLAB extenison.
## MATLAB ... ## Why do you think this extension is awesome? Incredibly useful for quick MATLAB editing without firing up the whole application. ... ## Make sure that: <!-- Check off the checkboxes with an 'x' like this: [x] --> - [x] Screenshot/GIF included (to demonstrate the plugin functiona...
125ef48c3a3717b6c0406f3a55c8db224881f954
f13e41577814235126bd2aff08f66a2628ebc0be
diff --git a/README.md b/README.md index da2ec96b..7dec8df2 100644 --- a/README.md +++ b/README.md @@ -57,6 +57,7 @@ out <a href="https://github.com/sindresorhus/awesome">awesome</a>. - [Facebook Flow](#facebook-flow) - [TypeScript](#typescript) - [Debugger for Chrome](#debugger-for-chrome-1) + - [MATLA...
[ "README.md" ]
[]
true
viatsko/awesome-vscode
392
issue_to_patch
Add PHP Tools extension
## Name of the extension you are adding PHP Tools ## Why do you think this extension is awesome? All-in-one extension for PHP language. ## Make sure that: <!-- Check off the checkboxes with an 'x' like this: [x] --> - [x] Screenshot/GIF included (to demonstrate the plugin functionality) - [x] T...
474273c989f171733cd9174ebafe95288de3d61f
5f24adf160bfdeb1b42dd75d1c551886776baf03
diff --git a/README.md b/README.md index 8071062c..547e3ec0 100644 --- a/README.md +++ b/README.md @@ -62,6 +62,7 @@ out <a href="https://github.com/sindresorhus/awesome">awesome</a>. - [Markdown All in One](#markdown-all-in-one) - [Markdown Emoji](#markdown-emoji) - [PHP](#php) + - [PHP Tools](#php-too...
[ "README.md" ]
[]
true
viatsko/awesome-vscode
391
issue_to_patch
Fixes issue #387
## Name of the extension you are adding Rust-Analyzer ## Why do you think this extension is awesome? The old Rust extension was depreciated because Rust-Analyzer was better. ## Make sure that: <!-- Check off the checkboxes with an 'x' like this: [x] --> - [x] Screenshot/GIF included (to demonstrat...
474273c989f171733cd9174ebafe95288de3d61f
8a374816a82482919f26d1c281f0f0429dceaa2d
diff --git a/README.md b/README.md index 8071062c..9189d0de 100644 --- a/README.md +++ b/README.md @@ -569,7 +569,7 @@ To enable Emmet support in .twig files, you'll need to have the following in you ## Rust -- [Rust](https://marketplace.visualstudio.com/items?itemName=rust-lang.rust) - Linting, auto-completion, c...
[ "README.md" ]
[]
true
viatsko/awesome-vscode
356
issue_to_patch
Add TS/JS postfix completion
## Name of the extension you are adding [TS/JS postfix completion](https://marketplace.visualstudio.com/items?itemName=ipatalas.vscode-postfix-ts) ## Why do you think this extension is awesome? This is literally the best extension for JS/TS in VSCode. I can't really say how much it made me more productive with...
e2a8545160d7135a588d3ff91d7a3473e34fd522
29c682b9f005739c17dc8ae5ebc3e5f4a4c6a5a0
diff --git a/README.md b/README.md index cd67c7d9..3be1092d 100644 --- a/README.md +++ b/README.md @@ -407,6 +407,10 @@ Unlike some other editors, VS Code supports IntelliSense, linting, outline out-o ## JavaScript +- [TS/JS postfix completion](https://marketplace.visualstudio.com/items?itemName=ipatalas.vscode-po...
[ "README.md" ]
[]
true
viatsko/awesome-vscode
380
issue_to_patch
Moved Browser Preview to Productivity; Added deprecated tag
Resolves issue #379 - [x] moved `Browser Preview` to the `Productivity` list section (similar to where `Live Server` is) - [x] moved `Browser Preview` to the `Productivity` description and demo section - [x] Amended the extension's title with `(deprecated)` - [ ] Indicate `Live Preview` as an alternative
f3c53995fcc8a0773264f69f503004ca6dfae305
e57fdd20cca7ab132615bd9017be4cc031e9b137
diff --git a/README.md b/README.md index 4354eb3c..8071062c 100644 --- a/README.md +++ b/README.md @@ -87,6 +87,7 @@ out <a href="https://github.com/sindresorhus/awesome">awesome</a>. - [Azure Cosmos DB](#azure-cosmos-db) - [Azure IoT Toolkit](#azure-iot-toolkit) - [Bookmarks](#bookmarks) + - [Browser Preview...
[ "README.md" ]
[]
true
viatsko/awesome-vscode
354
issue_to_patch
Add Dendron to Productivity extensions
## Name of the extension you are adding Dendron ## Why do you think this extension is awesome? > _Disclaimer: I started actively using Dendron early 2021 as a fan/user, and now I've recently joined the team behind Dendron._ [Dendron](https://www.dendron.so/) is a PKM tool that makes use of all VSCode/VSCodi...
6ceac70951777551ad39a48f00b17dbddb5e9002
a411f9f28fa7835261436c9a8a41cba8bd0a6f6f
diff --git a/README.md b/README.md index cd67c7d9..7d5dcfea 100644 --- a/README.md +++ b/README.md @@ -77,6 +77,7 @@ A curated list of delightful [Visual Studio Code](https://code.visualstudio.com/ - [Bookmarks](#bookmarks) - [Color Tabs](#color-tabs) - [Create tests](#create-tests) + - [Dendron](#dendron) ...
[ "README.md" ]
[]
true
viatsko/awesome-vscode
372
issue_to_patch
Update README.md
According to https://www.roboleary.net/vscode/2020/08/05/dont-need-extensions.html, auto renaming HTML/XML tags has been a native feature for more than a year, the default was just false so just need to enable to true. And for auto closing tags, it was also a native feature for more than a year, and the default has bee...
ddcdf46831c35626b7a1ea0e35f6192e638a2e07
6ef0838a5e85753b031cdc39010dec77ec85515d
diff --git a/README.md b/README.md index da92be5a..86a49aec 100644 --- a/README.md +++ b/README.md @@ -137,7 +137,6 @@ out <a href="https://github.com/sindresorhus/awesome">awesome</a>. - [Timing](#timing) - [Formatting & Beautification](#formatting--beautification) - [Better Align](#better-align) - - [Auto Clo...
[ "README.md" ]
[]
true
viatsko/awesome-vscode
365
issue_to_patch
Add JFrog
## Name of the extension you are adding JFrog VS-Code extension ## Why do you think this extension is awesome? It alerts from using vulnerable dependencies (and transitive ones) directly on the `package.json`, `pom.xml`, `build.gradle`, and `go.mod` files. It also shows the latest build in Artifactory. ## Make...
0e1b53bcfbbe1823753ca5b2fac0cd5d190a9db9
0a8719d0b78679a24558e8a96b9c39e529728068
diff --git a/README.md b/README.md index a89f5b2a..f1ee7449 100644 --- a/README.md +++ b/README.md @@ -178,6 +178,7 @@ A curated list of delightful [Visual Studio Code](https://code.visualstudio.com/ - [Text Marker (Highlighter)](#text-marker-highlighter) - [ESDOC MDN](#esdoc-mdn) - [Interface generator](#inte...
[ "README.md" ]
[]
true
viatsko/awesome-vscode
368
issue_to_patch
Fix: Markdown syntax support to static site
## Name of the extension you are adding Fix project's description and status badge that consist of unsupported syntax on static site. ## Why do you think this extension is awesome? ... ## Make sure that: <!-- Check off the checkboxes with an 'x' like this: [x] --> - [x] Screenshot/GIF included (t...
0e1b53bcfbbe1823753ca5b2fac0cd5d190a9db9
63738c606e1c87d584fcfd588a30c19a62fb64c4
diff --git a/README.md b/README.md index a89f5b2a..a2712a84 100644 --- a/README.md +++ b/README.md @@ -6,9 +6,13 @@ <br/> <div align="center"> -A curated list of delightful [Visual Studio Code](https://code.visualstudio.com/) packages and resources. For more awesomeness, check out [awesome](https://github.com/sindr...
[ "README.md" ]
[]
true
viatsko/awesome-vscode
359
issue_to_patch
Add `typed-vscode` to libraries
Hey! Some time ago I've an idea of creating framework for vscode development that would care of adding links, ids, bundling and so on. I've abandoned it, however the library I'm adding isn't part of this ecosystem and its pretty stable and covered with integration tests. This library improves DX only, it does nothin...
8b483a032dda0d8eda7f3491d23a4590380a031d
51dbe773b17f6ddc7cedae3c279de69894e29d1d
diff --git a/README.md b/README.md index 06306a91..8eb48305 100644 --- a/README.md +++ b/README.md @@ -1401,6 +1401,7 @@ A list of Twitter accounts for various people in the VS Code Community ## Libraries - [vscode-test-content](https://github.com/mlewand-org/vscode-test-content) - A method to set/get editor conten...
[ "README.md" ]
[]
true
viatsko/awesome-vscode
360
issue_to_patch
Introduce `GitHub` section with new extensions
Initially I wanted to open 2prs with two extensions, but instead I've grouped them into this pr. So I introduced new section for github extensions only, because there are growing numbers of them. I think it should make sense, hovewer, maybe I should move it below the productivity section or make it subsection of *Pr...
8b483a032dda0d8eda7f3491d23a4590380a031d
1acb2f0868c40550fa7387540cd3a5f293dffb13
diff --git a/README.md b/README.md index 06306a91..a89f5b2a 100644 --- a/README.md +++ b/README.md @@ -71,6 +71,13 @@ A curated list of delightful [Visual Studio Code](https://code.visualstudio.com/ - [ReasonML](#reasonml) - [Rust](#rust) - [Terraform](#terraform) +- [GitHub](#github) + - [GitHub](#github-1) ...
[ "README.md" ]
[ { "comment": "You mean this, right?\r\n\r\n```\r\nNote: I recommend to use GitHub Pull Requests instead of this, because most usecases are supported and there is a team at Microsoft/GitHub supporting development\r\n``` \r\nfrom https://marketplace.visualstudio.com/items?itemName=KnisterPeter.vscode-github", ...
true
viatsko/awesome-vscode
358
issue_to_patch
Duplicate image In the README.md on line 1109 the gif for the uncategorised extension "Text Marker" is duplicated in "ESDOC" `![Interface generator (Typescript)](https://raw.githubusercontent.com/ryu1kn/vscode-text-marker/master/images/animations/public.gif)`
Remove vscode-text-marker duplicated image
Duplicated image from Text Marker (Highlighter) section fixes #341
e2a8545160d7135a588d3ff91d7a3473e34fd522
e7b4d31c86ef38fc9ca5535d8e3b81600eb23fc8
diff --git a/README.md b/README.md index ee487889..019f7d1b 100644 --- a/README.md +++ b/README.md @@ -1108,8 +1108,6 @@ To enable Emmet support in .twig files, you'll need to have the following in you ![ESDOC MDN](https://raw.githubusercontent.com/samundrak/vscode-esdoc-mdn/master/demo.gif) -![Interface generator...
[ "README.md" ]
[]
true
viatsko/awesome-vscode
357
issue_to_patch
Add `toggle` extension
## Name of the extension you are adding [Toggle](https://marketplace.visualstudio.com/items?itemName=rebornix.toggle) ## Why do you think this extension is awesome? Because VSCode doesn't have builtin functionality to toggle settings. Productive guys would love it! ## Make sure that: <!-- Check off the...
e2a8545160d7135a588d3ff91d7a3473e34fd522
9d103dfe3a89271f24db3fc525febcc832e0799d
diff --git a/README.md b/README.md index ee487889..e9ee1cc7 100644 --- a/README.md +++ b/README.md @@ -81,6 +81,7 @@ A curated list of delightful [Visual Studio Code](https://code.visualstudio.com/ - [Deploy](#deploy) - [Duplicate Action](#duplicate-action) - [Error Lens](#error-lens) + - [Toggle](#toggle) ...
[ "README.md", "screenshots/toggle-example.gif" ]
[]
true
viatsko/awesome-vscode
351
issue_to_patch
Add HLSL Tools
## Name of the extension you are adding HLSL Tools - https://marketplace.visualstudio.com/items?itemName=TimGJones.hlsltools ## Why do you think this extension is awesome? I guess I can't just say, because I made it? HLSL Tools provides a language server for editing HLSL files in VS Code, including statemen...
2fd60f7c32024cb5221597a834f72d654ac90be1
c50f6b879713e946aa79f4912f8e3e124b3a114e
diff --git a/README.md b/README.md index 78089102..ee487889 100644 --- a/README.md +++ b/README.md @@ -43,6 +43,7 @@ A curated list of delightful [Visual Studio Code](https://code.visualstudio.com/ - [Go](#go) - [Groovy](#groovy) - [Haskell](#haskell) + - [HLSL](#hlsl) - [Shell](#shell) - [Java](#java) ...
[ "README.md" ]
[]
true
viatsko/awesome-vscode
355
issue_to_patch
SmoothType and TS hero no longer useful [SmoothType](https://github.com/spikespaz/vscode-smoothtype) is deprecated and `editor.cursorSmoothCaretAnimation` in VSCode should be used instead. Only additional option is to change animation duration [Typescript Hero](https://marketplace.visualstudio.com/items?itemName=rb...
remove extensions that are now replaced by builtin settings
- SmoothType: `editor.cursorSmoothCaretAnimation` - Bracket Pair Colorizer: `editor.bracketPairColorization.enabled` - TypeScript Hero: replaced by better builtin TypeScript language features extension fixes #347 - [X] Screenshot/GIF included (to demonstrate the plugin functionality) - [X] ToC updated
6ceac70951777551ad39a48f00b17dbddb5e9002
01b285833eb9c5f59bc3b51101405d1200a2dbcd
diff --git a/README.md b/README.md index cd67c7d9..78089102 100644 --- a/README.md +++ b/README.md @@ -137,7 +137,6 @@ A curated list of delightful [Visual Studio Code](https://code.visualstudio.com/ - [Surround](#surround) - [Wrap Selection](#wrap-selection) - [Formatting Toggle](#formatting-toggle) - - [Bra...
[ "README.md" ]
[]
true
viatsko/awesome-vscode
352
issue_to_patch
remove outdated / deprecated extensions
I have updated TOC with Markdown All in One, thats why some additional sections were added (but I think this even better). ## Names of the extension you are removing and why - **tslint** deprecated in favor of ESLint - **Settings Sync** It is now built-in VSCode feature Also removed some outdated libraries. ...
85ac88a045141d45605ebd542cc77519d133cd49
7bf6559be38dcf62bcaa48dd0a41c5d9ba1704d7
diff --git a/README.md b/README.md index e2d0ce0c..cd67c7d9 100644 --- a/README.md +++ b/README.md @@ -14,6 +14,7 @@ A curated list of delightful [Visual Studio Code](https://code.visualstudio.com/ # Table of Contents +- [Table of Contents](#table-of-contents) - [Official](#official) - [Syntax](#syntax) - [Migr...
[ "README.md" ]
[]
true
viatsko/awesome-vscode
350
issue_to_patch
update vscode-powertools
The extension has changed from [e.GO Digital](https://marketplace.visualstudio.com/items?itemName=ego-digital.vscode-powertools) to [e.GO Mobile](https://marketplace.visualstudio.com/items?itemName=egomobile.vscode-powertools)
afc2537ea86c88a0e29d83bef3614b22ecc1cc5b
346290e9536ab2d37646195786f0af0503681d01
diff --git a/README.md b/README.md index 14cd1e25..e2d0ce0c 100644 --- a/README.md +++ b/README.md @@ -766,11 +766,11 @@ To enable Emmet support in .twig files, you'll need to have the following in you ![Autocompletion for filenames animation](https://i.giphy.com/iaHeUiDeTUZuo.gif) -## [Power Tools](https://market...
[ "README.md" ]
[]
true
viatsko/awesome-vscode
342
issue_to_patch
Added extension 'Path Autocomplete'
## Name of the extension you are adding [Path Autocomplete](https://marketplace.visualstudio.com/items?itemName=ionutvmi.path-autocomplete) ## Why do you think this extension is awesome? - It provides path completion and it is very useful for productivity - It also supports relative paths (starting with ./) ...
b77e8f0e924846cc351a502b999b46a318daf236
3d9051640718263f4590f170908b431b9daa1f49
diff --git a/README.md b/README.md index 286c7cef..14cd1e25 100644 --- a/README.md +++ b/README.md @@ -97,6 +97,7 @@ A curated list of delightful [Visual Studio Code](https://code.visualstudio.com/ - [Parameter Hints](#parameter-hints) - [Partial Diff](#partial-diff) - [Paste JSON as Code](#paste-json-as-code)...
[ "README.md" ]
[]
true
viatsko/awesome-vscode
329
issue_to_patch
Fix: mattbierner Twitter link typo
That's a very tiny change to fix a typo to one of the Contributor's Twitter account.
8076f3a019b9f414a4c7602ab0859e836796116c
2ec65672f158b9125d703f65704f91cae9f50833
diff --git a/README.md b/README.md index 9b1be463..286c7cef 100644 --- a/README.md +++ b/README.md @@ -1373,7 +1373,7 @@ A list of Twitter accounts for various people in the VS Code Community - [@johannesrieken](https://twitter.com/johannesrieken) - VS Code Dev - [@lannonbr](https://twitter.com/lannonbr) - Creator of...
[ "README.md" ]
[]
true
viatsko/awesome-vscode
328
issue_to_patch
docs: adding password generator extension
## Name of the extension you are adding Password Generator ## Why do you think this extension is awesome? - We're always going through a lot of different softwares/sites to create/generate passwords for new registers, this extension will avoid it. - Second extension with this purpose on the World - You can fast ...
86ffe03434db2382f79470a55eb355a90209ffc4
d6ab037b79c2a31f0a1c26701c0a63299897dff5
diff --git a/README.md b/README.md index 0822cc6b..9b1be463 100644 --- a/README.md +++ b/README.md @@ -153,6 +153,7 @@ A curated list of delightful [Visual Studio Code](https://code.visualstudio.com/ - [Highlight JSX/HTML tags](#highlight-jsxhtml-tags) - [Indent Rainbow](#indent-rainbow) - [iTerm2 Theme Sync](...
[ "README.md" ]
[]
true
viatsko/awesome-vscode
327
issue_to_patch
Add timing extension
## Name of the extension you are adding Timing ## Why do you think this extension is awesome? It eases timestamp conversion. It enhances productivity when you have to deal a lot with database or log file timestamps. Just hover over an epoch timestamp and it shows you the corresponding UTC one. ## Make sur...
a5f6abaead6725b4aad9222caebf83b628bd33f1
2685ec100888feceef2b2fd196fe3f8e39f6fba0
diff --git a/README.md b/README.md index 56fd5b36..0f46f561 100644 --- a/README.md +++ b/README.md @@ -113,6 +113,7 @@ A curated list of delightful [Visual Studio Code](https://code.visualstudio.com/ - [Typescript Destructure](#typescript-destructure) - [WakaTime](#wakatime) - [Yo](#yo) + - [Timing](#timing) ...
[ "README.md" ]
[]
true
viatsko/awesome-vscode
325
issue_to_patch
Added parameter hints
## Name of the extension you are adding Parameter hints ## Why do you think this extension is awesome? It will make your functions more readable. ## Make sure that: - [x] Screenshot/GIF included (to demonstrate the plugin functionality) - [x] ToC updated
932312af46ef5210acbcb57771e6b680e633fb75
413c808be081570e81be184d17777f2d8235d176
diff --git a/README.md b/README.md index e1df409a..56fd5b36 100644 --- a/README.md +++ b/README.md @@ -94,6 +94,7 @@ A curated list of delightful [Visual Studio Code](https://code.visualstudio.com/ - [i18n Ally](#i18n-ally) - [Instant Markdown](#instant-markdown) - [npm Intellisense](#npm-intellisense) + - [P...
[ "README.md" ]
[]
true
viatsko/awesome-vscode
324
issue_to_patch
add CodeRoad
## Name of the extension you are adding CodeRoad ## Why do you think this extension is awesome? Uses VSCode in a novel way to play coding tutorials like a game. ## Make sure that: <!-- Check off the checkboxes with an 'x' like this: [x] --> - [X] Screenshot/GIF included (to demonstrate the plugin ...
52b5faece7a30843eac9e7ed417e44151554adc0
f61c37eb732214c2c3229f189c4f3737c303cc07
diff --git a/README.md b/README.md index 8b0e82e6..e1df409a 100644 --- a/README.md +++ b/README.md @@ -137,6 +137,7 @@ A curated list of delightful [Visual Studio Code](https://code.visualstudio.com/ - [Ascii Tree Generator](#ascii-tree-generator) - [Browser Preview](#browser-preview) - [Carbon-now-sh](#carbon...
[ "README.md" ]
[]
true
viatsko/awesome-vscode
311
issue_to_patch
Adds ngrok for VSCode to the list.
## Name of the extension you are adding [ngrok for VSCode](https://marketplace.visualstudio.com/items?itemName=philnash.ngrok-for-vscode) ## Why do you think this extension is awesome? [ngrok](https://ngrok.com) is a tool that opens a tunnel between a public URL and your locally running application server. Ra...
c67ab4d0fda2785a28279992c03ced8bb07beaaa
221f512bfe8d88c468e540ffef5821bc3dd9ee3e
diff --git a/README.md b/README.md index d29baa4b..d43740e3 100644 --- a/README.md +++ b/README.md @@ -86,6 +86,7 @@ A curated list of delightful [Visual Studio Code](https://code.visualstudio.com/ - [Kanban](#kanban) - [Live Server](#live-server) - [Multiple clipboards](#multiple-clipboards) + - [ngrok for V...
[ "README.md" ]
[]
true
viatsko/awesome-vscode
313
issue_to_patch
Added Smarty Template Support
## Name of the extension you are adding Smarty Template Support ## Why do you think this extension is awesome? Provides smarty template support with formatting, folding, snippets, syntax highlighting and more ## Make sure that: <!-- Check off the checkboxes with an 'x' like this: [x] --> - [x] Scr...
3f48fe3b639412d4283583c92f7c5a200397f7a6
6a3a4e970fffa448867c85e44b547de43789753e
diff --git a/README.md b/README.md index e3c2cd52..47d2007c 100644 --- a/README.md +++ b/README.md @@ -50,6 +50,7 @@ A curated list of delightful [Visual Studio Code](https://code.visualstudio.com/ - [IntelliSense](#intellisense) - [Laravel](#laravel) - [Twig](#twig) + - [Smarty](#smarty) - [Othe...
[ "README.md" ]
[]
true
viatsko/awesome-vscode
316
issue_to_patch
Adding section for Borealis theme
## Name of the extension you are adding Borealis Theme ## Why do you think this extension is awesome? It is a better VSCode Theme that is easier on the eyes. Full disclosure, it is my theme. ## Make sure that: - [x] Screenshot/GIF included (to demonstrate the plugin functionality) - [x] ToC updated
c67ab4d0fda2785a28279992c03ced8bb07beaaa
09384eb89f342859919b9db42635840d25947e7c
diff --git a/README.md b/README.md index e193dedf..4bb4d0c6 100644 --- a/README.md +++ b/README.md @@ -164,6 +164,7 @@ A curated list of delightful [Visual Studio Code](https://code.visualstudio.com/ - [Atom One Dark Theme by Mahmoud Ali](#atom-one-dark-theme-by-mahmoud-ali) - [Atomize by emroussel](#atomize-by-e...
[ "README.md", "themes/screenshots/eckertalex.borealis.png" ]
[]
true
viatsko/awesome-vscode
315
issue_to_patch
Added iTerm2 theme sync
## Name of the extension you are adding [iTerm2 Theme Sync](https://marketplace.visualstudio.com/items?itemName=tusaeff.vscode-iterm2-theme-sync) ## Why do you think this extension is awesome? How this extension helps me every day: 1. I no longer think about what theme I have chosen in the terminal - now I have o...
c67ab4d0fda2785a28279992c03ced8bb07beaaa
d668cf9c8ecc4559c8f4df31f7e9fe3842b31497
diff --git a/README.md b/README.md index e193dedf..1cff8dc8 100644 --- a/README.md +++ b/README.md @@ -144,6 +144,7 @@ A curated list of delightful [Visual Studio Code](https://code.visualstudio.com/ - [ftp-sync](#ftp-sync) - [Highlight JSX/HTML tags](#highlight-jsxhtml-tags) - [Indent Rainbow](#indent-rainbow...
[ "README.md" ]
[]
true
viatsko/awesome-vscode
317
issue_to_patch
Add Text Power Tools to the list of Productivity extensions
## Name of the extension you are adding Text Power Tools ## Why do you think this extension is awesome? Text Power Tools is an all-in-one extension for text manipulation: it contains commands for filtering (grep), removing lines, inserting number sequences and GUIDs, formatting content as table, changing case,...
c67ab4d0fda2785a28279992c03ced8bb07beaaa
7c9c0d30c1cdf25a52ac2d6d15bbeb1bd0983066
diff --git a/README.md b/README.md index e193dedf..0f80bd96 100644 --- a/README.md +++ b/README.md @@ -103,6 +103,7 @@ A curated list of delightful [Visual Studio Code](https://code.visualstudio.com/ - [Remote Development](#remote-development) - [Remote VSCode](#remote-vscode) - [Settings Sync](#settings-sync)...
[ "README.md" ]
[]
true
viatsko/awesome-vscode
319
issue_to_patch
Added POV-Ray to Syntax and Lint and IntelliSense
## Name of the extension you are adding [POV-Ray](https://marketplace.visualstudio.com/items?itemName=jmaxwilson.vscode-povray) ## Why do you think this extension is awesome? Have syntax highlighting for the POV-Ray scene description language, code snippets, ability to render the scene directly from Visual Stu...
c67ab4d0fda2785a28279992c03ced8bb07beaaa
8b358c20854517ace88e375c7bbafd15b4f99c8c
diff --git a/README.md b/README.md index e581394e..6e2087ad 100644 --- a/README.md +++ b/README.md @@ -52,6 +52,7 @@ A curated list of delightful [Visual Studio Code](https://code.visualstudio.com/ - [Twig](#twig) - [Other extensions](#other-extensions) - [Read more](#read-more) + - [POV-Ray](#pov-ray) ...
[ "README.md" ]
[]
true
viatsko/awesome-vscode
318
issue_to_patch
Added Typescript Destructure
## Name of the extension you are adding [Typescript Destructure](https://marketplace.visualstudio.com/items?itemName=tusaeff.vscode-typescript-destructure-plugin) ## Why do you think this extension is awesome? There is a common code style in the React development: you get the object as an function' argument an...
abf1f363ecbfc72d733b78654edbc92747a7da4d
c0c65ac8918b3ec8a57ba63e7b0f072f30550fa4
diff --git a/README.md b/README.md index e193dedf..e581394e 100644 --- a/README.md +++ b/README.md @@ -105,6 +105,7 @@ A curated list of delightful [Visual Studio Code](https://code.visualstudio.com/ - [Settings Sync](#settings-sync) - [Todo Tree](#todo-tree) - [Toggle Quotes](#toggle-quotes) + - [Typescript ...
[ "README.md" ]
[]
true
viatsko/awesome-vscode
314
issue_to_patch
Update the logo The logo at the top should be updated as VSCode updated its a while ago.
Updated the vscode logo
Fixes #294. Updated to the logo of the current version 1.45, preserved the dimensions of the original awesome-vscode logo.
3f48fe3b639412d4283583c92f7c5a200397f7a6
42398008bb7ec91591815d22ad22dd45da0a58c3
diff --git a/awesome-vscode-logo.png b/awesome-vscode-logo.png index 94681aa8..8ae18c94 100644 Binary files a/awesome-vscode-logo.png and b/awesome-vscode-logo.png differ
[ "awesome-vscode-logo.png" ]
[]
true
viatsko/awesome-vscode
309
issue_to_patch
VSCode Project Dashboard As you've also added the Project Manager extension to this list, I think my **VSCode Project Dashboard** extension would be a nice fit too! 😎 It's a speed-dial like project dashboard for VSCode, which lets you organize your projects on a simple and intuitive frontpage directly in VSCode. ...
Included vscode-dashboard
## Name of the extension you are adding [Project Dashboard](https://marketplace.visualstudio.com/items?itemName=kruemelkatze.vscode-dashboard) ## Why do you think this extension is awesome? It makes managing and switching between multiple projects quick and easy. No more fiddling around with folders or the list of...
79f7c0df355bfcec2c8df51b0fe657f8df9a703b
559bd2d4039215827aed0af9bb420af5bb8649b8
diff --git a/README.md b/README.md index d29baa4b..1d71e52a 100644 --- a/README.md +++ b/README.md @@ -95,6 +95,7 @@ A curated list of delightful [Visual Studio Code](https://code.visualstudio.com/ - [Path IntelliSense](#path-intellisense) - [Power Tools](#power-tools) - [PrintCode](#printcode) + - [Project D...
[ "README.md" ]
[]
true
viatsko/awesome-vscode
305
issue_to_patch
Add Groovy category in linters index, and add VsCodeGroovy lint gif
## Name of the extension you are adding VsCode Groovy Lint ## Why do you think this extension is awesome? Because CodeNarc groovy linter is a nice tool but wasn't available for VsCode, and there was also no way to format or automatically fix the errors ... and now there is , we can finally build our shared lib...
79f7c0df355bfcec2c8df51b0fe657f8df9a703b
162be6b017205860760ce3df45545a14b1698e0f
diff --git a/README.md b/README.md index d29baa4b..89aeb088 100644 --- a/README.md +++ b/README.md @@ -36,6 +36,7 @@ A curated list of delightful [Visual Studio Code](https://code.visualstudio.com/ - [Clojure](#clojure) - [CSS](#css) - [Go](#go) + - [Groovy](#groovy) - [Haskell](#haskell) - [Shell](#she...
[ "README.md" ]
[]
true
viatsko/awesome-vscode
256
issue_to_patch
Add indent rainbow
## Name of the extension you are adding Indent Rainbow ## Why do you think this extension is awesome? Make indentation really visible in languages where number of tabs/spaces matters (python, yaml, etc). When you get wrong number of spaces (for example, 3 instead of 4) extension will highlight the line with re...
2286a63e5154550beffec263d3d2b5331e120324
ad1d1b67dd9f1451c0e9d4a88239cd2001e8433e
diff --git a/README.md b/README.md index 56763a10..615d101c 100644 --- a/README.md +++ b/README.md @@ -124,6 +124,7 @@ A curated list of delightful [Visual Studio Code](https://code.visualstudio.com/ - [Editor Config for VS Code](#editor-config-for-vs-code) - [ftp-sync](#ftp-sync) - [Highlight JSX/HTML tags](#...
[ "README.md" ]
[]
true
viatsko/awesome-vscode
303
issue_to_patch
Change AutoHotkey section
## Name of the extension you are modifying - ❌Deleted an outdated extension [AutoHotkey](https://marketplace.visualstudio.com/items?itemName=slevesque.vscode-autohotkey). Out of all language features it contributed only Snippets and Syntax Highlighting. The last commit was 2 years ago. - ❌Deleted an extension [Auto...
4b6c1d44dbb77389b796eea3f4cc55f4f89965cb
7b4d1ac42863c135ae9e761c631ac2afee739bce
diff --git a/README.md b/README.md index 1fd74c43..d29baa4b 100644 --- a/README.md +++ b/README.md @@ -291,11 +291,8 @@ Unlike some other editors, VS Code supports IntelliSense, linting, outline out-o ## AutoHotkey -### [AutoHotkey](https://marketplace.visualstudio.com/items?itemName=slevesque.vscode-autohotkey) -...
[ "README.md" ]
[]
true
viatsko/awesome-vscode
302
issue_to_patch
Adding GistPad
## Name of the extension you are adding [GistPad](https://marketplace.visualstudio.com/items?itemName=vsls-contrib.gistfs) ## Why do you think this extension is awesome? GistPad makes it extremely easy for developers to leverage GitHub Gists as their personal library of code snippets and developer notes. It ad...
1702ec0c9e6bd945cb88dd31888ab67d0963c957
11f481e0057548dbd0d3230093a26f8463e7ad24
diff --git a/README.md b/README.md index 26ad566c..1fd74c43 100644 --- a/README.md +++ b/README.md @@ -68,6 +68,7 @@ A curated list of delightful [Visual Studio Code](https://code.visualstudio.com/ - [Error Lens](#error-lens) - [ES7 React/Redux/GraphQL/React-Native snippets](#es7-reactreduxgraphqlreact-native-sni...
[ "README.md" ]
[]
true
viatsko/awesome-vscode
295
issue_to_patch
Add clangd
## Name of the extension you are adding [vscode-clangd](https://marketplace.visualstudio.com/items?itemName=llvm-vs-code-extensions.vscode-clangd) ## Why do you think this extension is awesome? It gives a better IntelliSense and autocompletion from the others and also has a better features like refactoring.
c005c0157bd6d85a93997b1c604751beda9ab32c
98d8644c89118fc53e3d5b53c0d648ffb2105a00
diff --git a/README.md b/README.md index a2e91096..26ad566c 100644 --- a/README.md +++ b/README.md @@ -319,6 +319,7 @@ Unlike some other editors, VS Code supports IntelliSense, linting, outline out-o ## C++ - [C/C++](https://marketplace.visualstudio.com/items?itemName=ms-vscode.cpptools) - Preview C/C++ extension b...
[ "README.md" ]
[]
true
viatsko/awesome-vscode
217
issue_to_patch
Add Vetur
## Name of the extension you are adding Vetur ## Why do you think this extension is awesome? Because this extension provides tools that are really helpful at working with Vue. ## Make sure that: <!-- Check off the checkboxes with an 'x' like this: [x] --> - [x] Screenshot/GIF included (to demonstr...
509afb20b1c682abae4afbd6ffd897ca2f8ec8b4
bba31e19f331c64b625b1228afe1cad4416aef83
diff --git a/README.md b/README.md index 2f238ee2..a2e91096 100644 --- a/README.md +++ b/README.md @@ -398,6 +398,15 @@ See the difference between these two [here](https://github.com/michaelgmcd/vscod - [Schema.org Snippets](https://marketplace.visualstudio.com/items?itemName=austinleegordon.vscode-schema-dot-org) - S...
[ "README.md", "screenshots/Vetur.png" ]
[]
true
viatsko/awesome-vscode
287
issue_to_patch
Add Rainbow CSV
## Name of the extension you are adding Rainbow CSV ## Why do you think this extension is awesome? Useful for working with CSV files. Adds syntax highlighting, transformation, linting and RBQL querying features. ## Make sure that: <!-- Check off the checkboxes with an 'x' like this: [x] --> - [x] ...
392bf3241817fe02333a4b7b85a8b29f56a645ae
41a5802538fd7fad26b773bd237f57443d68c4b6
diff --git a/README.md b/README.md index a7d46b96..bdafcc86 100644 --- a/README.md +++ b/README.md @@ -94,6 +94,7 @@ A curated list of delightful [Visual Studio Code](https://code.visualstudio.com/ - [PrintCode](#printcode) - [Project Manager](#project-manager) - [REST Client](#rest-client) + - [Rainbow CSV](...
[ "README.md" ]
[]
true
viatsko/awesome-vscode
288
issue_to_patch
Add AutoHotkey section
## Name of the extension you are adding [AutoHotkey](https://marketplace.visualstudio.com/items?itemName=slevesque.vscode-autohotkey) [AutoHotkey++](https://marketplace.visualstudio.com/items?itemName=vinnyjames.vscode-autohotkey-vj) [AutoHotkey Manager](https://marketplace.visualstudio.com/items?itemName=Denis-net....
392bf3241817fe02333a4b7b85a8b29f56a645ae
d745ac540ff9bf63e56bb4872147c81d1b614034
diff --git a/README.md b/README.md index a7d46b96..6c6e5ddd 100644 --- a/README.md +++ b/README.md @@ -26,6 +26,7 @@ A curated list of delightful [Visual Studio Code](https://code.visualstudio.com/ - [Using VS Code with particular technologies](#using-vs-code-with-particular-technologies) - [Lint and IntelliSense](#l...
[ "README.md" ]
[]
true
viatsko/awesome-vscode
289
issue_to_patch
Add shellman to Bash section
## Name of the extension you are adding [Shellman](https://marketplace.visualstudio.com/items?itemName=Remisa.shellman) ## Why do you think this extension is awesome? Allows to learn Bash Scripting with examples ## Make sure that: <!-- Check off the checkboxes with an 'x' like this: [x] --> - [x] S...
392bf3241817fe02333a4b7b85a8b29f56a645ae
32b9dfef4e48a531ae0244feb99438cb44c8fd70
diff --git a/README.md b/README.md index a7d46b96..057dae9c 100644 --- a/README.md +++ b/README.md @@ -29,6 +29,7 @@ A curated list of delightful [Visual Studio Code](https://code.visualstudio.com/ - [Bash](#bash) - [Bash IDE](#bash-ide) - [Bash Debug](#bash-debug) + - [Shellman](#shellman) - [C++](#...
[ "README.md" ]
[]
true
viatsko/awesome-vscode
293
issue_to_patch
Add Tinacious Theme
## Name of the extension you are adding Tinacious Contrast Color Theme (https://marketplace.visualstudio.com/items?itemName=sugarpirate.theme-tinacious-contrast) ... ## Why do you think this extension is awesome? This is a nice them but not very known by the community. As well, This is confortable to code at nigh...
392bf3241817fe02333a4b7b85a8b29f56a645ae
6d75554edbddca82f4af95e02118de656c8d2b45
diff --git a/README.md b/README.md index a7d46b96..2956829c 100644 --- a/README.md +++ b/README.md @@ -180,6 +180,7 @@ A curated list of delightful [Visual Studio Code](https://code.visualstudio.com/ - [Relaxed Theme by Michael Kühnel](#relaxed-theme-by-michael-kühnel) - [Shades of Purple by Ahmad Awais](#shades-...
[ "README.md" ]
[]
true
viatsko/awesome-vscode
279
issue_to_patch
Update Clojure plugin
extension maintainer has created a new version of this plugin. old extension unpublished from Visual Studio Marketplace. this change updates the url to the extension and the preview gif ## Name of the extension you are adding Calva: Clojure & ClojureScript Interactive Programming ## Why do you think this exten...
9a5bdf47e3485628754c071f87ee501acea95bb1
4b0adc0d1bebe6fa3c34d61717ab1222ed682d1d
diff --git a/README.md b/README.md index df1e5aeb..4794fbb9 100644 --- a/README.md +++ b/README.md @@ -313,10 +313,10 @@ Unlike some other editors, VS Code supports IntelliSense, linting, outline out-o ## Clojure -### [Calva](https://marketplace.visualstudio.com/items?itemName=cospaia.clojure4vscode) +### [Calva](...
[ "README.md" ]
[]
true
viatsko/awesome-vscode
280
issue_to_patch
Add code spell checker for Awesome vscode
## Name of the extension you are adding Code Spell Checker ## Why do you think this extension is awesome? Code Spell Checker is really useful for developers to check typo. ## Make sure that: <!-- Check off the checkboxes with an 'x' like this: [x] --> - [x] Screenshot/GIF included (to demonstrate ...
9a5bdf47e3485628754c071f87ee501acea95bb1
e252e30670d463d76924b7e6f790b83823bec927
diff --git a/README.md b/README.md index df1e5aeb..ddbf59b3 100644 --- a/README.md +++ b/README.md @@ -369,6 +369,7 @@ See the difference between these two [here](https://github.com/michaelgmcd/vscod - [AVA](https://marketplace.visualstudio.com/items?itemName=samverschueren.ava) - Snippets for [AVA](https://github.com...
[ "README.md" ]
[]
true
viatsko/awesome-vscode
270
issue_to_patch
Added Markdown Emoji
## Name of the extension you are adding Markdown Emoji ## Why do you think this extension is awesome? Pretty handy to see emoji in the built-in markdown previewer ## Make sure that: - [x] Screenshot/GIF included (to demonstrate the plugin functionality) - [x] ToC updated
c75f31c09b44ff7e2d89da417d77e4c47a14cbc2
4881f436df9425eb69bd1dd492a155d487cb2f74
diff --git a/README.md b/README.md index ff62c5f3..07dbed95 100644 --- a/README.md +++ b/README.md @@ -41,6 +41,7 @@ A curated list of delightful [Visual Studio Code](https://code.visualstudio.com/ - [Markdown](#markdown) - [markdownlint](#markdownlint) - [Markdown All in one](#markdown-all-in-one) + - ...
[ "README.md" ]
[]
true
viatsko/awesome-vscode
278
issue_to_patch
Add Jira and Bitbucket
## Name of the extension you are adding Jira and Bitbucket https://marketplace.visualstudio.com/items?itemName=Atlassian.atlascode ## Why do you think this extension is awesome? It's a full-featured extension that allows developers using Jira and Bitbucket to create pull requests, do code reviews, create pi...
9a5bdf47e3485628754c071f87ee501acea95bb1
d2b42ae1bfc8ae23441a3b36b8bbb2085ec5e13f
diff --git a/README.md b/README.md index df1e5aeb..54c90c06 100644 --- a/README.md +++ b/README.md @@ -75,6 +75,7 @@ A curated list of delightful [Visual Studio Code](https://code.visualstudio.com/ - [Gradle Tasks](#gradle-tasks) - [Icon Fonts](#icon-fonts) - [Import Cost](#import-cost) + - [Jira and Bitbucke...
[ "README.md" ]
[]
true
viatsko/awesome-vscode
284
issue_to_patch
Add Wenyan Lang for VSCode
## Name of the extension you are adding 文言 Wenyan Lang https://marketplace.visualstudio.com/items?itemName=antfu.wenyan-lang ## Why do you think this extension is awesome? It's the only vscode out there that supports [Wenyan Lang](https://github.com/LingDong-/wenyan-lang), a programming language for the anc...
62023ec444c89c9374e81d8fdb56a649bcc23775
6c7d893000a0a9348f743d8aafd4dbf7ba133e08
diff --git a/README.md b/README.md index a25a011b..24ce7737 100644 --- a/README.md +++ b/README.md @@ -233,6 +233,7 @@ Language packages extend the editor with syntax highlighting and/or snippets for - [Stylus](https://marketplace.visualstudio.com/items?itemName=sysoev.language-stylus) - [Swift](https://marketplace.v...
[ "README.md" ]
[]
true
viatsko/awesome-vscode
285
issue_to_patch
Add Error Lens
## Name of the extension you are adding [Error Lens](https://marketplace.visualstudio.com/items?itemName=usernamehw.errorlens) ## Why do you think this extension is awesome? It's the best extension of the ones that highlight diagnostics. ## Make sure that: - [x] Screenshot/GIF included (to demonstrate t...
62023ec444c89c9374e81d8fdb56a649bcc23775
a31d5f645de2423509134875a6eaed639dacad98
diff --git a/README.md b/README.md index a25a011b..c284786d 100644 --- a/README.md +++ b/README.md @@ -62,6 +62,7 @@ A curated list of delightful [Visual Studio Code](https://code.visualstudio.com/ - [Create tests](#create-tests) - [Deploy](#deploy) - [Duplicate Action](#duplicate-action) + - [Error Lens](#er...
[ "README.md" ]
[]
true