author int64 658 755k | date stringdate 2012-06-12 08:34:29 2024-07-22 14:51:21 | timezone int64 -46,800 43.2k | hash stringlengths 40 40 | message stringlengths 5 490 | mods listlengths 1 16 | language stringclasses 20
values | license stringclasses 3
values | repo stringlengths 5 68 | original_message stringlengths 12 491 |
|---|---|---|---|---|---|---|---|---|---|
329,089 | 01.02.2022 19:44:09 | 28,800 | 1e56691066162fa8ed9e78ef361a7a3ad2590194 | add test for trades stream
also fix GlobalSymbolTest() by adding more exchange exceptions | [
{
"change_type": "MODIFY",
"old_path": "tests/ExchangeSharpTests/ExchangeTests.cs",
"new_path": "tests/ExchangeSharpTests/ExchangeTests.cs",
"diff": "@@ -14,6 +14,7 @@ using System;\nusing System.Collections.Generic;\nusing System.Globalization;\nusing System.Linq;\n+using System.Threading;\nusing S... | C# | MIT License | jjxtra/exchangesharp | add test for trades stream (#726)
- also fix GlobalSymbolTest() by adding more exchange exceptions |
329,089 | 02.02.2022 17:56:30 | 28,800 | f576bf0107382826e381a61a3127107c2b181582 | parse QuoteCurrency in NDAX MarketSymbolMetadata | [
{
"change_type": "MODIFY",
"old_path": "src/ExchangeSharp/API/Exchanges/NDAX/Models/Instrument.cs",
"new_path": "src/ExchangeSharp/API/Exchanges/NDAX/Models/Instrument.cs",
"diff": "@@ -63,6 +63,7 @@ namespace ExchangeSharp\nreturn new ExchangeMarket()\n{\nBaseCurrency = Product1Symbol,\n+ QuoteCurr... | C# | MIT License | jjxtra/exchangesharp | parse QuoteCurrency in NDAX MarketSymbolMetadata (#727) |
329,089 | 03.02.2022 17:50:30 | 28,800 | fbcc1e38abe697e504cb1f86cfa6a2d6610df9e1 | test time zone for trades stream | [
{
"change_type": "MODIFY",
"old_path": "tests/ExchangeSharpTests/ExchangeTests.cs",
"new_path": "tests/ExchangeSharpTests/ExchangeTests.cs",
"diff": "@@ -162,6 +162,7 @@ namespace ExchangeSharpTests\n|| api is ExchangeBL3PAPI // volume too low\n|| api is ExchangeLivecoinAPI // defunct\n|| api is Exc... | C# | MIT License | jjxtra/exchangesharp | test time zone for trades stream (#729) |
329,089 | 05.02.2022 17:18:10 | 28,800 | 786de5e495b51a9c3b90608a794725525c9e04e5 | change ExchangeMarket properties to nullable
Not all exchanges provide every property. Instead of returning a value like decimal.MaxValue or 0, null should be returned instead. That way, the user cna decide how to handle it. | [
{
"change_type": "MODIFY",
"old_path": "src/ExchangeSharp/API/Exchanges/Coinbase/ExchangeCoinbaseAPI.cs",
"new_path": "src/ExchangeSharp/API/Exchanges/Coinbase/ExchangeCoinbaseAPI.cs",
"diff": "@@ -210,7 +210,7 @@ namespace ExchangeSharp\nprotected override async Task<IEnumerable<string>> OnGetMarke... | C# | MIT License | jjxtra/exchangesharp | change ExchangeMarket properties to nullable (#730)
- Not all exchanges provide every property. Instead of returning a value like decimal.MaxValue or 0, null should be returned instead. That way, the user cna decide how to handle it. |
329,089 | 07.02.2022 21:09:07 | 28,800 | 8eda9c1d4e09b25f76e29abf5e751ff1efa6c603 | find Korea timezone on Linux | [
{
"change_type": "MODIFY",
"old_path": "src/ExchangeSharp/Utility/CryptoUtility.cs",
"new_path": "src/ExchangeSharp/Utility/CryptoUtility.cs",
"diff": "@@ -37,7 +37,8 @@ namespace ExchangeSharp\ninternal static readonly DateTime UnixEpoch = new DateTime(1970, 1, 1, 0, 0, 0, 0, DateTimeKind.Utc);\nin... | C# | MIT License | jjxtra/exchangesharp | find Korea timezone on Linux (#732) |
329,089 | 09.02.2022 13:03:11 | 28,800 | ddfb36e48f42fd11a7745f603a442264a5559f0c | renamed some remaining market symbols | [
{
"change_type": "MODIFY",
"old_path": "src/ExchangeSharp/API/Exchanges/Aquanow/ExchangeAquanowAPI.cs",
"new_path": "src/ExchangeSharp/API/Exchanges/Aquanow/ExchangeAquanowAPI.cs",
"diff": "@@ -37,13 +37,13 @@ namespace ExchangeSharp\nprotected override async Task<IEnumerable<string>> OnGetMarketSym... | C# | MIT License | jjxtra/exchangesharp | renamed some remaining market symbols (#733) |
329,089 | 13.02.2022 16:05:31 | 28,800 | c1bd98520fa938befe9462803eecb9675655055d | fix KuCoin trade stream ID parsing
Trade IDs in KuCoin are no longer hexadecimals - they are now strings which can incorporate any letter | [
{
"change_type": "MODIFY",
"old_path": "src/ExchangeSharp/API/Exchanges/_Base/ExchangeAPIExtensions.cs",
"new_path": "src/ExchangeSharp/API/Exchanges/_Base/ExchangeAPIExtensions.cs",
"diff": "@@ -604,8 +604,8 @@ namespace ExchangeSharp\n{\nvar trade = ParseTradeComponents<KuCoinTrade>(token, amountK... | C# | MIT License | jjxtra/exchangesharp | fix KuCoin trade stream ID parsing (#736)
- Trade IDs in KuCoin are no longer hexadecimals - they are now strings which can incorporate any letter |
329,089 | 15.02.2022 12:27:13 | 28,800 | fe0929c25358a1f78e1ab373f3303663997c58af | parse Bybit specific CrossSequence in Trades stream | [
{
"change_type": "MODIFY",
"old_path": "src/ExchangeSharp/API/Exchanges/Bybit/ExchangeBybitAPI.cs",
"new_path": "src/ExchangeSharp/API/Exchanges/Bybit/ExchangeBybitAPI.cs",
"diff": "@@ -274,12 +274,12 @@ namespace ExchangeSharp\n{\nforeach (var dataRow in token)\n{\n- ExchangeTrade trade = dataRow.P... | C# | MIT License | jjxtra/exchangesharp | parse Bybit specific CrossSequence in Trades stream (#737) |
329,089 | 16.02.2022 18:33:00 | 28,800 | ae96858e7e36a82bb7efb7f6450763335d765e84 | fix Poloniex trade stream
simplified OnGetMarketSymbolsAsync()
updated OnGetMarketSymbolsMetadataAsync() to use returnticker endpoint instead
changed OnGetTradesWebSocketAsync() to send messageIds instead of symbol names
also changed to using epoch_ms instead of timestamp for more precision | [
{
"change_type": "MODIFY",
"old_path": "src/ExchangeSharp/API/Exchanges/Poloniex/ExchangePoloniexAPI.cs",
"new_path": "src/ExchangeSharp/API/Exchanges/Poloniex/ExchangePoloniexAPI.cs",
"diff": "@@ -326,29 +326,31 @@ namespace ExchangeSharp\nprotected override async Task<IEnumerable<string>> OnGetMar... | C# | MIT License | jjxtra/exchangesharp | fix Poloniex trade stream (#738)
- simplified OnGetMarketSymbolsAsync()
- updated OnGetMarketSymbolsMetadataAsync() to use returnticker endpoint instead
- changed OnGetTradesWebSocketAsync() to send messageIds instead of symbol names
- also changed to using epoch_ms instead of timestamp for more precision |
329,089 | 17.02.2022 20:10:35 | 28,800 | 063f646d6ed046df6aefd573e6102f66ba8f86a1 | add trade stream to Gate.IO
fixed ExchangeMarket.Active bug | [
{
"change_type": "MODIFY",
"old_path": "src/ExchangeSharp/API/Exchanges/GateIo/ExchangeGateIoAPI.cs",
"new_path": "src/ExchangeSharp/API/Exchanges/GateIo/ExchangeGateIoAPI.cs",
"diff": "@@ -83,6 +83,7 @@ namespace ExchangeSharp\n{\nforeach (JToken token in obj)\n{\n+ if (token[\"trade_status\"].ToSt... | C# | MIT License | jjxtra/exchangesharp | add trade stream to Gate.IO (#739)
- fixed ExchangeMarket.Active bug |
329,089 | 18.02.2022 14:10:22 | 28,800 | 01b98e63c5988ddbfaa4613cae05894eb14885b8 | add trade stream for Bitflyer | [
{
"change_type": "ADD",
"old_path": null,
"new_path": "src/ExchangeSharp/API/Exchanges/Bitflyer/ExchangeBitflyerApi.cs",
"diff": "+using Newtonsoft.Json.Linq;\n+using SocketIOClient;\n+using System;\n+using System.Collections.Generic;\n+using System.Linq;\n+using System.Text;\n+using System.Threadin... | C# | MIT License | jjxtra/exchangesharp | add trade stream for Bitflyer (#740) |
329,089 | 19.02.2022 21:13:48 | 28,800 | 9e14991c57fbd66c9b376b14f0330baa429cbe7c | add trade stream to LBank | [
{
"change_type": "MODIFY",
"old_path": "src/ExchangeSharp/API/Exchanges/LBank/ExchangeLBankAPI.cs",
"new_path": "src/ExchangeSharp/API/Exchanges/LBank/ExchangeLBankAPI.cs",
"diff": "@@ -39,6 +39,8 @@ namespace ExchangeSharp\n/// </summary>\npublic override string BaseUrl { get; set; } = \"https://ap... | C# | MIT License | jjxtra/exchangesharp | add trade stream to LBank (#741) |
329,089 | 20.02.2022 20:16:39 | 28,800 | ccaafde25e24413fcabe2df242ce9b19bd99fb92 | update Huobi trade stream | [
{
"change_type": "MODIFY",
"old_path": "src/ExchangeSharp/API/Exchanges/Huobi/ExchangeHuobiAPI.cs",
"new_path": "src/ExchangeSharp/API/Exchanges/Huobi/ExchangeHuobiAPI.cs",
"diff": "@@ -228,23 +228,24 @@ namespace ExchangeSharp\n{\"id\":\"id1\",\"status\":\"ok\",\"subbed\":\"market.btcusdt.trade.det... | C# | MIT License | jjxtra/exchangesharp | update Huobi trade stream (#742) |
329,089 | 22.02.2022 15:13:43 | 28,800 | 7d2ced134f584b48d8baf81e1cf6ecfee0ff2fb5 | add trade stream for Dydx | [
{
"change_type": "ADD",
"old_path": null,
"new_path": "src/ExchangeSharp/API/Exchanges/Dydx/ExchangeDydxApi.cs",
"diff": "+using Newtonsoft.Json.Linq;\n+using System;\n+using System.Collections.Generic;\n+using System.Linq;\n+using System.Text;\n+using System.Threading.Tasks;\n+\n+namespace Exchange... | C# | MIT License | jjxtra/exchangesharp | add trade stream for Dydx (#744) |
329,089 | 24.02.2022 13:46:41 | 28,800 | 34794b4baeefbba2d1f7541cf73aa11b8b379158 | add trade stream for Crypto.com exchange | [
{
"change_type": "ADD",
"old_path": null,
"new_path": "src/ExchangeSharp/API/Exchanges/CryptoCom/ExchangeCryptoComApi.cs",
"diff": "+using Newtonsoft.Json.Linq;\n+using System;\n+using System.Collections.Generic;\n+using System.Linq;\n+using System.Text;\n+using System.Threading.Tasks;\n+\n+namespac... | C# | MIT License | jjxtra/exchangesharp | add trade stream for Crypto.com exchange (#746) |
329,089 | 25.02.2022 14:25:56 | 28,800 | 0e8112071a6c2663923022966bbad5a11d69947d | update Digifinex urls
also, their trades stream doesn't support subscribing to more than 30 symbols | [
{
"change_type": "MODIFY",
"old_path": "src/ExchangeSharp/API/Exchanges/Digifinex/ExchangeDigifinexAPI.cs",
"new_path": "src/ExchangeSharp/API/Exchanges/Digifinex/ExchangeDigifinexAPI.cs",
"diff": "@@ -14,7 +14,7 @@ namespace ExchangeSharp\nprivate string[] Urls =\n{\n\"openapi.digifinex.com\",\n- \... | C# | MIT License | jjxtra/exchangesharp | update Digifinex urls (#747)
- also, their trades stream doesn't support subscribing to more than 30 symbols |
329,089 | 26.02.2022 15:13:21 | 28,800 | ac674fd3d522f051358ef8fa53d892343debe357 | add trade stream for ApolloX | [
{
"change_type": "ADD",
"old_path": null,
"new_path": "src/ExchangeSharp/API/Exchanges/ApolloX/ExchangeApolloXApi.cs",
"diff": "+using ExchangeSharp.BinanceGroup;\n+using Newtonsoft.Json.Linq;\n+using System;\n+using System.Collections.Generic;\n+using System.Linq;\n+using System.Text;\n+using Syste... | C# | MIT License | jjxtra/exchangesharp | add trade stream for ApolloX (#748) |
329,089 | 27.02.2022 15:26:33 | 28,800 | f22271c4a1400065bec6363d7c3fa051f67b4edc | parse error in FTX trade stream | [
{
"change_type": "MODIFY",
"old_path": "src/ExchangeSharp/API/Exchanges/FTX/FTXGroupCommon.cs",
"new_path": "src/ExchangeSharp/API/Exchanges/FTX/FTXGroupCommon.cs",
"diff": "@@ -404,7 +404,11 @@ namespace ExchangeSharp\n{\nJToken parsedMsg = JToken.Parse(msg.ToStringFromUTF8());\n- if (parsedMsg[\"c... | C# | MIT License | jjxtra/exchangesharp | parse error in FTX trade stream (#749) |
329,089 | 28.02.2022 12:42:27 | 28,800 | f0f9b20638c87c340b8c8cb930d21f6699a5eef1 | update readme and tests
with new exchanges added during this cycle | [
{
"change_type": "MODIFY",
"old_path": "README.md",
"new_path": "README.md",
"diff": "@@ -22,18 +22,20 @@ Feel free to visit the discord channel at https://discord.gg/58ktxXuTVK and chat\n### Exchanges\nThe following cryptocurrency exchanges are supported:\n-(Web socket key: T = tickers, R = trades,... | C# | MIT License | jjxtra/exchangesharp | update readme and tests (#750)
- with new exchanges added during this cycle |
329,089 | 19.03.2022 21:36:31 | 25,200 | 7a7aadc79b212d79f701f7e8ea9be69e7019744f | new NuGet 1.0.0
removed LangVersion
updated ExchangeSharpTests to net6.0 | [
{
"change_type": "MODIFY",
"old_path": "README.md",
"new_path": "README.md",
"diff": "@@ -110,11 +110,11 @@ See [`WebSocket4NetClientWebSocket.cs`][websocket4net] for implementation detail\n#### dotnet CLI\n-[`dotnet add package DigitalRuby.ExchangeSharp --version 0.9.2`][nuget]\n+[`dotnet add packa... | C# | MIT License | jjxtra/exchangesharp | new NuGet 1.0.0 (#752)
- removed LangVersion
- updated ExchangeSharpTests to net6.0 |
329,120 | 24.03.2022 01:25:21 | 0 | 6992680e8d927a902f3218f3278ecb49632b3d38 | Set MarketSymbolIsUppercase to true in ExchangeBinanceAPI | [
{
"change_type": "MODIFY",
"old_path": "src/ExchangeSharp/API/Exchanges/BinanceGroup/ExchangeBinanceAPI.cs",
"new_path": "src/ExchangeSharp/API/Exchanges/BinanceGroup/ExchangeBinanceAPI.cs",
"diff": "@@ -18,6 +18,11 @@ namespace ExchangeSharp\n{\npublic override string BaseUrl { get; set; } = \"http... | C# | MIT License | jjxtra/exchangesharp | Set MarketSymbolIsUppercase to true in ExchangeBinanceAPI (#754) |
329,089 | 30.03.2022 15:53:53 | 25,200 | 985e28a582bd40e5db19819906dcf12addb93c5b | set RateLimit for Coinbase | [
{
"change_type": "MODIFY",
"old_path": "src/ExchangeSharp/API/Exchanges/Coinbase/ExchangeCoinbaseAPI.cs",
"new_path": "src/ExchangeSharp/API/Exchanges/Coinbase/ExchangeCoinbaseAPI.cs",
"diff": "@@ -45,6 +45,11 @@ namespace ExchangeSharp\nNonceEndPointField = \"iso\";\nNonceEndPointStyle = NonceStyle... | C# | MIT License | jjxtra/exchangesharp | set RateLimit for Coinbase (#756) |
329,089 | 31.03.2022 18:35:00 | 25,200 | 0eed42a7a034247c3320ab3f4736081b5cacb1bd | fixed JSON deserialization in Coinbase with new SerializerSettings
added test for Coinbase Match
fixed compilation error in ExchangeBinanceAPITests.cs | [
{
"change_type": "MODIFY",
"old_path": "src/ExchangeSharp/API/Common/BaseAPI.cs",
"new_path": "src/ExchangeSharp/API/Common/BaseAPI.cs",
"diff": "@@ -29,6 +29,7 @@ using System.Threading.Tasks;\nusing Newtonsoft.Json;\nusing Newtonsoft.Json.Linq;\n+using Newtonsoft.Json.Serialization;\nnamespace Exc... | C# | MIT License | jjxtra/exchangesharp | fixed JSON deserialization in Coinbase with new SerializerSettings (#757)
- added test for Coinbase Match
- fixed compilation error in ExchangeBinanceAPITests.cs |
329,089 | 01.04.2022 15:52:03 | 25,200 | 209d7f271347a5ad963e7c2650aaf2954dbfce28 | Set MarketSymbolIsUppercase to true for all Binance based exchanges
extends by
also in this PR:
- limit Trade stream to 400 symbols
- use SerializerSettings | [
{
"change_type": "MODIFY",
"old_path": "src/ExchangeSharp/API/Exchanges/BinanceGroup/BinanceGroupCommon.cs",
"new_path": "src/ExchangeSharp/API/Exchanges/BinanceGroup/BinanceGroupCommon.cs",
"diff": "@@ -53,7 +53,7 @@ namespace ExchangeSharp.BinanceGroup\nNonceStyle = NonceStyle.UnixMilliseconds;\nN... | C# | MIT License | jjxtra/exchangesharp | Set MarketSymbolIsUppercase to true for all Binance based exchanges (#758)
- extends #754 by @ExchangeSharp
- also in this PR:
- limit Trade stream to 400 symbols
- use SerializerSettings |
329,089 | 03.04.2022 12:38:02 | 25,200 | 658b4f5263373dd5df535a4bb460c7676de03c3a | upgrade Huobi MarketSymbolsMetadata to V2 | [
{
"change_type": "MODIFY",
"old_path": "src/ExchangeSharp/API/Exchanges/Huobi/ExchangeHuobiAPI.cs",
"new_path": "src/ExchangeSharp/API/Exchanges/Huobi/ExchangeHuobiAPI.cs",
"diff": "@@ -25,6 +25,7 @@ namespace ExchangeSharp\n{\npublic override string BaseUrl { get; set; } = \"https://api.huobipro.co... | C# | MIT License | jjxtra/exchangesharp | upgrade Huobi MarketSymbolsMetadata to V2 (#759) |
329,089 | 04.04.2022 18:30:05 | 25,200 | 6cc2d2c20561275b32a1fa125e71fc73843e9aae | fix Crypto.com trade stream errors
respond to heartbeat
turn off KeepAlive
warn instead of throwing exception | [
{
"change_type": "MODIFY",
"old_path": "src/ExchangeSharp/API/Exchanges/CryptoCom/ExchangeCryptoComApi.cs",
"new_path": "src/ExchangeSharp/API/Exchanges/CryptoCom/ExchangeCryptoComApi.cs",
"diff": "@@ -44,7 +44,7 @@ namespace ExchangeSharp\n{\nmarketSymbols = new string[] { \"\" };\n}\n- return awai... | C# | MIT License | jjxtra/exchangesharp | fix Crypto.com trade stream errors (#760)
- respond to heartbeat
- turn off KeepAlive
- warn instead of throwing exception |
329,089 | 07.04.2022 19:19:08 | 25,200 | e0c2582c682917ac11440157a67dadf13566cfe8 | fix symbol parsing in Bithumb trade stream | [
{
"change_type": "MODIFY",
"old_path": "src/ExchangeSharp/API/Exchanges/Bithumb/ExchangeBithumbAPI.cs",
"new_path": "src/ExchangeSharp/API/Exchanges/Bithumb/ExchangeBithumbAPI.cs",
"diff": "@@ -214,7 +214,7 @@ namespace ExchangeSharp\n{\nvar exchangeTrade = data.ParseTrade(\"contQty\", \"contPrice\"... | C# | MIT License | jjxtra/exchangesharp | fix symbol parsing in Bithumb trade stream (#761) |
329,089 | 08.04.2022 11:41:25 | 25,200 | a87fb8b430755e4ccfc3e1255274b55c482b0e1d | add trade stream for Coincheck | [
{
"change_type": "ADD",
"old_path": null,
"new_path": "src/ExchangeSharp/API/Exchanges/Coincheck/ExchangeCoincheckAPI.cs",
"diff": "+using Newtonsoft.Json.Linq;\n+using System;\n+using System.Collections.Generic;\n+using System.Linq;\n+using System.Text;\n+using System.Threading.Tasks;\n+\n+namespac... | C# | MIT License | jjxtra/exchangesharp | add trade stream for Coincheck (#762) |
329,089 | 08.04.2022 14:25:23 | 25,200 | 686e9d7c1a6054ca3925d482a44ca89591b26121 | fix setting ConnectInterval on Bitflyer | [
{
"change_type": "MODIFY",
"old_path": "src/ExchangeSharp/API/Exchanges/Bitflyer/ExchangeBitflyerApi.cs",
"new_path": "src/ExchangeSharp/API/Exchanges/Bitflyer/ExchangeBitflyerApi.cs",
"diff": "@@ -150,7 +150,8 @@ namespace ExchangeSharp\n}\npublic TimeSpan ConnectInterval\n- { get => socketIO.Optio... | C# | MIT License | jjxtra/exchangesharp | fix setting ConnectInterval on Bitflyer (#763) |
329,089 | 08.04.2022 18:32:32 | 25,200 | b5662dfd81424498f4718f2f33ddab2b686986e0 | respong to ping on LBank trades stream
ping pong | [
{
"change_type": "MODIFY",
"old_path": "src/ExchangeSharp/API/Exchanges/LBank/ExchangeLBankAPI.cs",
"new_path": "src/ExchangeSharp/API/Exchanges/LBank/ExchangeLBankAPI.cs",
"diff": "@@ -572,6 +572,24 @@ namespace ExchangeSharp\n}\nelse throw new APIException(token[\"message\"].ToStringInvariant());\... | C# | MIT License | jjxtra/exchangesharp | respong to ping on LBank trades stream (#764)
- ping pong |
329,089 | 09.04.2022 17:21:45 | 25,200 | 5b55dd0401820c023b32398faefee8d654c88ffb | new NuGet 1.0.1
added Coincheck and UPbit to README.md | [
{
"change_type": "MODIFY",
"old_path": "README.md",
"new_path": "README.md",
"diff": "@@ -44,6 +44,7 @@ The following cryptocurrency exchanges are supported:\n| BTSE | x | x | |\n| Bybit | x | x | R | Has public method for Websocket Positions\n| Coinbase | x | x | T R O U |\n+| Coincheck | | | R |\n... | C# | MIT License | jjxtra/exchangesharp | new NuGet 1.0.1 (#766)
- added Coincheck and UPbit to README.md |
329,089 | 16.04.2022 16:24:39 | 25,200 | 00621397ed29fcfa20c1c5713c5e5a64b51abb2e | fix post only order placement in Binance | [
{
"change_type": "MODIFY",
"old_path": "src/ExchangeSharp/API/Exchanges/BinanceGroup/BinanceGroupCommon.cs",
"new_path": "src/ExchangeSharp/API/Exchanges/BinanceGroup/BinanceGroupCommon.cs",
"diff": "@@ -547,7 +547,7 @@ namespace ExchangeSharp.BinanceGroup\nreturn balances;\n}\n- protected override ... | C# | MIT License | jjxtra/exchangesharp | fix post only order placement in Binance (#767) |
329,089 | 24.04.2022 16:17:35 | 25,200 | b4fda0445e0d130c348aeaf63aa6d6771eea64d6 | refactored binance symbol stream limit
to apply to all websocket streams | [
{
"change_type": "MODIFY",
"old_path": "src/ExchangeSharp/API/Exchanges/BinanceGroup/BinanceGroupCommon.cs",
"new_path": "src/ExchangeSharp/API/Exchanges/BinanceGroup/BinanceGroupCommon.cs",
"diff": "@@ -32,6 +32,11 @@ namespace ExchangeSharp.BinanceGroup\n{\nmarketSymbols = (await GetMarketSymbolsA... | C# | MIT License | jjxtra/exchangesharp | refactored binance symbol stream limit (#769)
- to apply to all websocket streams |
329,089 | 27.04.2022 17:20:15 | 25,200 | 846171d729b0f3d6e5082eff80e6238bb65ae94e | fix AmountFilled in Binance user stream
different for trade vs order | [
{
"change_type": "MODIFY",
"old_path": "src/ExchangeSharp/API/Exchanges/BinanceGroup/Models/UserDataStream.cs",
"new_path": "src/ExchangeSharp/API/Exchanges/BinanceGroup/Models/UserDataStream.cs",
"diff": "@@ -88,7 +88,7 @@ namespace ExchangeSharp.BinanceGroup\nResult = status,\nResultCode = Current... | C# | MIT License | jjxtra/exchangesharp | fix AmountFilled in Binance user stream (#770)
- different for trade vs order |
329,089 | 29.04.2022 15:20:51 | 25,200 | 7df21d111f4a33163a98bf5e48dffff875faaf6e | provide HTTPHeaderDate when placing Coinbase orders | [
{
"change_type": "MODIFY",
"old_path": "src/ExchangeSharp/API/Common/APIRequestMaker.cs",
"new_path": "src/ExchangeSharp/API/Common/APIRequestMaker.cs",
"diff": "@@ -162,7 +162,7 @@ namespace ExchangeSharp\n/// The encoding of payload is API dependant but is typically json.</param>\n/// <param name=... | C# | MIT License | jjxtra/exchangesharp | provide HTTPHeaderDate when placing Coinbase orders (#771) |
329,089 | 30.04.2022 17:06:58 | 25,200 | 0af5d5b3abb1546efd59d45c74bca954640d5a23 | add trade stream for BtcTurk | [
{
"change_type": "ADD",
"old_path": null,
"new_path": "src/ExchangeSharp/API/Exchanges/BtcTurk/ExchangeBtcTurkAPI.cs",
"diff": "+using Newtonsoft.Json.Linq;\n+using System;\n+using System.Collections.Generic;\n+using System.Linq;\n+using System.Text;\n+using System.Threading.Tasks;\n+\n+namespace Ex... | C# | MIT License | jjxtra/exchangesharp | add trade stream for BtcTurk (#772) |
329,089 | 02.05.2022 16:12:22 | 25,200 | 96dcb45d6022fad9e90da6bfa8398a3bedcbaa46 | new NuGet 1.0.2
changed link from jjxtra/ES to DigitalRuby/ES
added BtcTurk to readme | [
{
"change_type": "MODIFY",
"old_path": "README.md",
"new_path": "README.md",
"diff": "@@ -41,6 +41,7 @@ The following cryptocurrency exchanges are supported:\n| Bittrex | x | x | T R |\n| BL3P | x | x | R B | Trades stream does not send trade's ids. |\n| Bleutrade | x | x | |\n+| BtcTurk | | | R |\n... | C# | MIT License | jjxtra/exchangesharp | new NuGet 1.0.2 (#773)
- changed link from jjxtra/ES to DigitalRuby/ES
- added BtcTurk to readme |
329,089 | 03.05.2022 16:11:57 | 25,200 | c1c188521feca9358a38ab5d7bea264c2138956c | add release-drafter workflow
another (different) file named release-drafter.yml, but in the workflow folder | [
{
"change_type": "ADD",
"old_path": null,
"new_path": ".github/workflows/release-drafter.yml",
"diff": "+name: Release Drafter\n+\n+on:\n+ push:\n+ # branches to consider in the event; optional, defaults to all\n+ branches:\n+ - master\n+ # pull_request event is required only for autolabeler\n+ pull... | C# | MIT License | jjxtra/exchangesharp | add release-drafter workflow (#774)
- another (different) file named release-drafter.yml, but in the workflow folder |
329,089 | 06.05.2022 12:11:27 | 25,200 | d6a37936dcd0d23de358bec0e10e2e42fceb99fc | fix HTTPHeaderDate in BaseAPI
pass through HTTPHeaderDate in BaseAPI.MakeJsonRequestFullAsync<T>() | [
{
"change_type": "MODIFY",
"old_path": "src/ExchangeSharp/API/Common/BaseAPI.cs",
"new_path": "src/ExchangeSharp/API/Common/BaseAPI.cs",
"diff": "@@ -524,13 +524,13 @@ namespace ExchangeSharp\n{\nawait new SynchronizationContextRemover();\n- string stringResult = (await MakeRequestAsync(url, baseUrl... | C# | MIT License | jjxtra/exchangesharp | fix HTTPHeaderDate in BaseAPI (#775)
- pass through HTTPHeaderDate in BaseAPI.MakeJsonRequestFullAsync<T>() |
329,089 | 06.05.2022 14:45:55 | 25,200 | c3936b15f9a10095ec86087b79706f6c381082b5 | skip tests and add pack/push to Azure pipleline
push to Azure artifacts
updated .net sdk to 6.x
updated ubuntu to latest | [
{
"change_type": "MODIFY",
"old_path": "azure-pipelines.yml",
"new_path": "azure-pipelines.yml",
"diff": "@@ -50,14 +50,32 @@ jobs:\ncommand: 'build'\nconfiguration: $(BuildConfiguration)\nprojects: 'src/ExchangeSharpConsole/ExchangeSharpConsole.csproj'\n+ #- task: DotNetCoreCLI@2\n+ # displayName: ... | C# | MIT License | jjxtra/exchangesharp | skip tests and add pack/push to Azure pipleline (#776)
- push to Azure artifacts
- updated .net sdk to 6.x
- updated ubuntu to latest |
329,089 | 17.05.2022 17:14:43 | 25,200 | 55b11a63dab42f2bc2807301ec79e11ca5d26c92 | futher HTTPHeaderDate fix
pass through HTTPHeaderDate in JToken case in BaseAPI.MakeJsonRequestFullAsync<T>() | [
{
"change_type": "MODIFY",
"old_path": "src/ExchangeSharp/API/Common/BaseAPI.cs",
"new_path": "src/ExchangeSharp/API/Common/BaseAPI.cs",
"diff": "@@ -528,7 +528,7 @@ namespace ExchangeSharp\nT jsonResult = JsonConvert.DeserializeObject<T>(result.Response, SerializerSettings);\nif (jsonResult is JTok... | C# | MIT License | jjxtra/exchangesharp | futher HTTPHeaderDate fix (#781)
- pass through HTTPHeaderDate in JToken case in BaseAPI.MakeJsonRequestFullAsync<T>() |
329,111 | 29.07.2022 01:15:02 | -10,800 | 054218b0ff5b7ec97813fc6540af6b5f162f83dc | Order fees added | [
{
"change_type": "MODIFY",
"old_path": "src/ExchangeSharp/API/Exchanges/Bitstamp/ExchangeBitstampAPI.cs",
"new_path": "src/ExchangeSharp/API/Exchanges/Bitstamp/ExchangeBitstampAPI.cs",
"diff": "@@ -286,7 +286,10 @@ namespace ExchangeSharp\n}\nstring _symbol = $\"{baseCurrency}-{quoteCurrency}\";\n- ... | C# | MIT License | jjxtra/exchangesharp | Order fees added (#782) |
329,089 | 17.08.2022 15:52:02 | 36,000 | c09ca6b346e5d30dd321b2ac1ad261947655ca05 | added rate limiter for BinanceGroupCommon | [
{
"change_type": "MODIFY",
"old_path": "src/ExchangeSharp/API/Exchanges/BinanceGroup/BinanceGroupCommon.cs",
"new_path": "src/ExchangeSharp/API/Exchanges/BinanceGroup/BinanceGroupCommon.cs",
"diff": "@@ -61,6 +61,14 @@ namespace ExchangeSharp.BinanceGroup\nMarketSymbolIsUppercase = true;\nWebSocketO... | C# | MIT License | jjxtra/exchangesharp | added rate limiter for BinanceGroupCommon (#784) |
329,148 | 22.09.2022 19:16:21 | 21,600 | 756e1fbefbc7a7aa73f8e39ec52b6c48909c7a53 | Fix for Binance currencies | [
{
"change_type": "MODIFY",
"old_path": "src/ExchangeSharp/API/Exchanges/BinanceGroup/BinanceGroupCommon.cs",
"new_path": "src/ExchangeSharp/API/Exchanges/BinanceGroup/BinanceGroupCommon.cs",
"diff": "@@ -101,7 +101,8 @@ namespace ExchangeSharp.BinanceGroup\nprotected override async Task<IReadOnlyDic... | C# | MIT License | jjxtra/exchangesharp | Fix for Binance currencies (#786) |
329,099 | 23.09.2022 04:17:59 | -10,800 | b1a2a8247424417d8d75ee37177c7fdb08ea9298 | fix Binance OnGetTickersAsync
Fix for | [
{
"change_type": "MODIFY",
"old_path": "src/ExchangeSharp/API/Exchanges/BinanceGroup/BinanceGroupCommon.cs",
"new_path": "src/ExchangeSharp/API/Exchanges/BinanceGroup/BinanceGroupCommon.cs",
"diff": "@@ -242,9 +242,16 @@ namespace ExchangeSharp.BinanceGroup\nJToken obj = await MakeJsonRequestAsync<J... | C# | MIT License | jjxtra/exchangesharp | fix Binance OnGetTickersAsync (#787)
Fix for #785 |
329,089 | 06.10.2022 09:46:00 | 25,200 | ce0e6031e342c512db23236b47445af1dccaa53f | new NuGet 1.0.3 | [
{
"change_type": "MODIFY",
"old_path": "README.md",
"new_path": "README.md",
"diff": "@@ -113,11 +113,11 @@ See [`WebSocket4NetClientWebSocket.cs`][websocket4net] for implementation detail\n#### dotnet CLI\n-[`dotnet add package DigitalRuby.ExchangeSharp --version 1.0.2`][nuget]\n+[`dotnet add packa... | C# | MIT License | jjxtra/exchangesharp | new NuGet 1.0.3 (#790) |
329,099 | 31.10.2022 06:11:39 | -7,200 | a23becb4d1c58fd36ee2d59e34edbc2be7dab463 | fix KuCoin override CheckJsonResponse | [
{
"change_type": "MODIFY",
"old_path": "src/ExchangeSharp/API/Exchanges/KuCoin/ExchangeKuCoinAPI.cs",
"new_path": "src/ExchangeSharp/API/Exchanges/KuCoin/ExchangeKuCoinAPI.cs",
"diff": "@@ -62,6 +62,21 @@ namespace ExchangeSharp\n}\n}\n+ protected override JToken CheckJsonResponse(JToken result)\n+ ... | C# | MIT License | jjxtra/exchangesharp | fix KuCoin override CheckJsonResponse (#792) |
329,127 | 11.01.2023 23:30:06 | -28,800 | 1686831b7645e222c7d9faa212769ab8424c9abf | fix binance ticker websocket with symbol | [
{
"change_type": "MODIFY",
"old_path": "src/ExchangeSharp/API/Exchanges/BinanceGroup/BinanceGroupCommon.cs",
"new_path": "src/ExchangeSharp/API/Exchanges/BinanceGroup/BinanceGroupCommon.cs",
"diff": "@@ -269,11 +269,21 @@ namespace ExchangeSharp.BinanceGroup\nJToken token = JToken.Parse(msg.ToString... | C# | MIT License | jjxtra/exchangesharp | fix binance ticker websocket with symbol (#794) |
410,209 | 23.01.2017 17:12:38 | 28,800 | 35358291f3bdbc7eb74bb301d23f9c6e83b549c5 | Add JSX, TSX and TSConfig file templates to Node projects | [
{
"change_type": "MODIFY",
"old_path": "Nodejs/Product/Nodejs/Nodejs.csproj",
"new_path": "Nodejs/Product/Nodejs/Nodejs.csproj",
"diff": "<ZipItem Include=\"Templates\\Files\\EmptyJson\\EmptyJson.vstemplate\" />\n<ZipItem Include=\"Templates\\Files\\EmptyJs\\EmptyJs.js\" />\n<ZipItem Include=\"Templ... | C# | Apache License 2.0 | microsoft/nodejstools | Add JSX, TSX and TSConfig file templates to Node projects |
410,209 | 24.01.2017 14:28:56 | 28,800 | 8c1c2997ebd3069c115078a42597d809f58f2ddf | PR suggestions on Adding Templates | [
{
"change_type": "MODIFY",
"old_path": "Nodejs/Product/Nodejs/Templates/Files/EmptyTs/EmptyTs.vstemplate",
"new_path": "Nodejs/Product/Nodejs/Templates/Files/EmptyTs/EmptyTs.vstemplate",
"diff": "<SortOrder>200</SortOrder>\n</TemplateData>\n<TemplateContent>\n- <ProjectItem SubType=\"Code\" ItemType... | C# | Apache License 2.0 | microsoft/nodejstools | PR suggestions on Adding Templates |
410,223 | 26.01.2017 20:16:56 | 28,800 | b53e42fa039c32685f4c61fc42e47f5c28ddb1ae | cleanup js express | [
{
"change_type": "MODIFY",
"old_path": "Nodejs/Product/Nodejs/Nodejs.csproj",
"new_path": "Nodejs/Product/Nodejs/Nodejs.csproj",
"diff": "<ZipProject Include=\"ProjectTemplates\\FromExistingCode\\FromExistingCode.vstemplate\">\n<SubType>Designer</SubType>\n</ZipProject>\n- <ZipProject Include=\"Proj... | C# | Apache License 2.0 | microsoft/nodejstools | cleanup js express @types |
410,223 | 26.01.2017 21:21:19 | 28,800 | 4929c938576e64af6317cc8ee6baea77dbc7782a | lint TypeScript projects | [
{
"change_type": "MODIFY",
"old_path": "Nodejs/Product/Nodejs/ProjectTemplates/TypeScriptAzureExpressApp/app.ts",
"new_path": "Nodejs/Product/Nodejs/ProjectTemplates/TypeScriptAzureExpressApp/app.ts",
"diff": "@@ -4,7 +4,7 @@ import path = require('path');\nimport routes from './routes/index';\nimpo... | C# | Apache License 2.0 | microsoft/nodejstools | lint TypeScript projects |
410,223 | 31.01.2017 16:32:05 | 28,800 | 8f06a2634f25eaf37a405c30aff82f3c065621c2 | update logger verbosity on UI thread | [
{
"change_type": "MODIFY",
"old_path": "Common/Product/SharedProject/IDEBuildLogger.cs",
"new_path": "Common/Product/SharedProject/IDEBuildLogger.cs",
"diff": "@@ -457,8 +457,6 @@ namespace Microsoft.VisualStudioTools.Project {\n// If importance is too low for current settings, ignore the event\nboo... | C# | Apache License 2.0 | microsoft/nodejstools | update logger verbosity on UI thread |
410,223 | 31.01.2017 17:28:59 | 28,800 | b5f9d696d6b2ea3b8b2446bca9ef9412b111882f | simplify cache invalidation
I observed a 1-1 correspondence between the cache invalidation
call and the Set/Refresh method, so I removed the spurious
invalidation mechanism. | [
{
"change_type": "MODIFY",
"old_path": "Common/Product/SharedProject/IDEBuildLogger.cs",
"new_path": "Common/Product/SharedProject/IDEBuildLogger.cs",
"diff": "@@ -49,7 +49,6 @@ namespace Microsoft.VisualStudioTools.Project {\nprivate IVsHierarchy hierarchy;\nprivate IServiceProvider serviceProvider... | C# | Apache License 2.0 | microsoft/nodejstools | simplify cache invalidation
I observed a 1-1 correspondence between the cache invalidation
call and the Set/Refresh method, so I removed the spurious
invalidation mechanism. |
410,217 | 02.02.2017 16:19:27 | 28,800 | e52691cb591d4f374633c59bf2bfa43f5aa05187 | Make sure whe have the right name for the Express 4 JS template.
The Id is pulled from the vspackage.resx file (and the matching localized files) | [
{
"change_type": "MODIFY",
"old_path": "Nodejs/Product/Nodejs/ProjectTemplates/Express4App/ExpressApp.vstemplate",
"new_path": "Nodejs/Product/Nodejs/ProjectTemplates/Express4App/ExpressApp.vstemplate",
"diff": "<VSTemplate Version=\"3.0.0\" Type=\"Project\" xmlns=\"http://schemas.microsoft.com/deve... | C# | Apache License 2.0 | microsoft/nodejstools | Make sure whe have the right name for the Express 4 JS template.
The Id is pulled from the vspackage.resx file (and the matching localized files) |
410,217 | 23.02.2017 11:38:43 | 28,800 | 9e71319fadc6e79a7dfd712c56e00d87278699d7 | Correctly escape script when using inspect | [
{
"change_type": "MODIFY",
"old_path": "Nodejs/Product/Nodejs/Debugger/NodeDebugger.cs",
"new_path": "Nodejs/Product/Nodejs/Debugger/NodeDebugger.cs",
"diff": "@@ -120,7 +120,7 @@ namespace Microsoft.NodejsTools.Debugger {\nvar debuggerPortOrDefault = debuggerPort ?? GetDebuggerPort();\n// Node usag... | C# | Apache License 2.0 | microsoft/nodejstools | Correctly escape script when using inspect |
410,217 | 23.02.2017 17:22:30 | 28,800 | 9e03b4c63544f26c3d8d77aae76f6b49cc45f9f5 | Finish up options to use when starting the Node process | [
{
"change_type": "MODIFY",
"old_path": "Nodejs/Product/Nodejs/Debugger/DebugEngine/AD7Engine.cs",
"new_path": "Nodejs/Product/Nodejs/Debugger/DebugEngine/AD7Engine.cs",
"diff": "@@ -85,11 +85,6 @@ namespace Microsoft.NodejsTools.Debugger.DebugEngine {\n/// </summary>\npublic const string WaitOnNorma... | C# | Apache License 2.0 | microsoft/nodejstools | Finish up options to use when starting the Node process |
410,217 | 24.02.2017 14:18:46 | 28,800 | ecc16d5dd87e26df6187b784cf0ce86232060c3d | PR feedback and fix build break | [
{
"change_type": "MODIFY",
"old_path": "Common/Product/SharedProject/CommonUtils.cs",
"new_path": "Common/Product/SharedProject/CommonUtils.cs",
"diff": "@@ -46,7 +46,6 @@ namespace Microsoft.VisualStudioTools {\n}\nreturn new Uri(path, kind);\n-\n} catch (UriFormatException ex) {\nthrow new Argumen... | C# | Apache License 2.0 | microsoft/nodejstools | PR feedback and fix build break |
410,217 | 28.02.2017 16:57:05 | 28,800 | 3fb4c47c26bb2428387c8917d4ba8e9dfeab75b0 | Make sure scripts are properly quoted when sending to the debugger. | [
{
"change_type": "MODIFY",
"old_path": "Common/Product/SharedProject/CommonProjectNode.cs",
"new_path": "Common/Product/SharedProject/CommonProjectNode.cs",
"diff": "@@ -1549,7 +1549,7 @@ namespace Microsoft.VisualStudioTools.Project {\n/// Returns resolved value of the current working directory pro... | C# | Apache License 2.0 | microsoft/nodejstools | Make sure scripts are properly quoted when sending to the debugger. |
410,218 | 01.03.2017 23:52:38 | 28,800 | 314f91b9a9ad0d3ee257dd4206bf182ab9a76d36 | Ensure expected settings for TypeScript powered intellisense is present on Dev14 | [
{
"change_type": "MODIFY",
"old_path": "Nodejs/Product/Nodejs/Options/NodejsIntellisenseOptionsPage.cs",
"new_path": "Nodejs/Product/Nodejs/Options/NodejsIntellisenseOptionsPage.cs",
"diff": "@@ -84,6 +84,10 @@ namespace Microsoft.NodejsTools.Options {\n}\n// Save settings.\n+#if DEV14\n+ // This se... | C# | Apache License 2.0 | microsoft/nodejstools | Ensure expected settings for TypeScript powered intellisense is present on Dev14 |
410,217 | 07.03.2017 11:05:44 | 28,800 | ac29c69dc1b3091fdce10e6bc9cadfd188930fca | Update Nuget pkgs to latest version | [
{
"change_type": "MODIFY",
"old_path": "Nodejs/Product/Nodejs/Nodejs.csproj",
"new_path": "Nodejs/Product/Nodejs/Nodejs.csproj",
"diff": "</VSTemplate>\n</ItemDefinitionGroup>\n<ItemGroup>\n+ <Reference Include=\"Microsoft.ApplicationInsights, Version=2.2.0.0, Culture=neutral, PublicKeyToken=31bf385... | C# | Apache License 2.0 | microsoft/nodejstools | Update Nuget pkgs to latest version |
410,217 | 13.03.2017 15:05:06 | 25,200 | 904bbf8b6dac0b0ce5a352702ee7588770145f29 | Include Telemetry symbols. | [
{
"change_type": "MODIFY",
"old_path": ".gitignore",
"new_path": ".gitignore",
"diff": "@@ -38,6 +38,8 @@ x64/\n*.vspscc\n*.vssscc\n.builds\n+#Include the telemetry pdb\n+!Nodejs/Common/Telemetry/*.*\n# Visual C++ cache files\nipch/\n"
},
{
"change_type": "ADD",
"old_path": "Nodejs/Commo... | C# | Apache License 2.0 | microsoft/nodejstools | Include Telemetry symbols. |
410,217 | 14.03.2017 12:58:26 | 25,200 | 2ca101f8793fd2a875c65ce6122967bbefb8a75d | Fix node version in option string. | [
{
"change_type": "MODIFY",
"old_path": "Nodejs/Product/Nodejs/Options/NodejsGeneralOptionsControl.en.resx",
"new_path": "Nodejs/Product/Nodejs/Options/NodejsGeneralOptionsControl.en.resx",
"diff": "<value>5</value>\n</data>\n<data name=\"_webkitDebugger.Text\" xml:space=\"preserve\">\n- <value>Use t... | C# | Apache License 2.0 | microsoft/nodejstools | Fix node version in option string. |
410,217 | 15.03.2017 13:34:45 | 25,200 | 8523ef704978677ef41a587abb76fcdc11fabf3c | Remove sqllite binary | [
{
"change_type": "DELETE",
"old_path": "Nodejs/Common/SQLite/sqlite3.dll",
"new_path": "Nodejs/Common/SQLite/sqlite3.dll",
"diff": "Binary files a/Nodejs/Common/SQLite/sqlite3.dll and /dev/null differ\n"
},
{
"change_type": "MODIFY",
"old_path": "Nodejs/Product/Nodejs/NpmUI/ErrorHelper.c... | C# | Apache License 2.0 | microsoft/nodejstools | Remove sqllite binary |
410,217 | 15.03.2017 16:23:07 | 25,200 | c08a36afcc5cf5afda0c13d20feaaab7a3e3556f | Remove TypeScript version check | [
{
"change_type": "MODIFY",
"old_path": "Nodejs/Product/Nodejs/NodejsPackage.cs",
"new_path": "Nodejs/Product/Nodejs/NodejsPackage.cs",
"diff": "@@ -83,17 +83,6 @@ namespace Microsoft.NodejsTools\n// after the initialization\nprivate List<EnvDTE.CommandEvents> _subscribedCommandEvents = new List<EnvD... | C# | Apache License 2.0 | microsoft/nodejstools | Remove TypeScript version check |
410,217 | 16.03.2017 11:29:30 | 25,200 | 5f033cbe24758085d85f4565359f049e0b826218 | Update supported Node version to 7.0 | [
{
"change_type": "MODIFY",
"old_path": "Nodejs/Product/Nodejs/Options/NodejsGeneralOptionsControl.de.resx",
"new_path": "Nodejs/Product/Nodejs/Options/NodejsGeneralOptionsControl.de.resx",
"diff": "<value>5</value>\n</data>\n<data name=\"_webkitDebugger.Text\" xml:space=\"preserve\">\n- <value>Verwe... | C# | Apache License 2.0 | microsoft/nodejstools | Update supported Node version to 7.0 |
410,226 | 27.03.2017 11:11:15 | 25,200 | 29bda4cf67a1407fe6620727c1b8ce7b689342b9 | Replace the dynamic TypeScript version check with a package prerequisite | [
{
"change_type": "MODIFY",
"old_path": "Nodejs/Product/Nodejs/NodejsPackage.cs",
"new_path": "Nodejs/Product/Nodejs/NodejsPackage.cs",
"diff": "@@ -110,16 +110,6 @@ namespace Microsoft.NodejsTools {\n// after the initialization\nprivate List<EnvDTE.CommandEvents> _subscribedCommandEvents = new List<... | C# | Apache License 2.0 | microsoft/nodejstools | Replace the dynamic TypeScript version check with a package prerequisite |
410,226 | 28.03.2017 17:15:01 | 25,200 | b25959ebb402640943c462c68a3c6b1259c76201 | Put removed code behind dev14-only flag | [
{
"change_type": "MODIFY",
"old_path": "Nodejs/Product/Nodejs/NodejsPackage.cs",
"new_path": "Nodejs/Product/Nodejs/NodejsPackage.cs",
"diff": "@@ -110,6 +110,18 @@ namespace Microsoft.NodejsTools {\n// after the initialization\nprivate List<EnvDTE.CommandEvents> _subscribedCommandEvents = new List<... | C# | Apache License 2.0 | microsoft/nodejstools | Put removed code behind dev14-only flag |
410,218 | 30.03.2017 13:56:40 | 25,200 | 6db039a5ceabb6d6bfc24c7f4e040da5f06cf9e4 | Fix resources on Dev14 | [
{
"change_type": "MODIFY",
"old_path": "Nodejs/Product/Nodejs/Nodejs.csproj",
"new_path": "Nodejs/Product/Nodejs/Nodejs.csproj",
"diff": "<StartProgram>$(DevEnvDir)devenv.exe</StartProgram>\n<StartArguments>/rootSuffix Exp /Log</StartArguments>\n<SolutionDir Condition=\"$(SolutionDir) == '' Or $(Sol... | C# | Apache License 2.0 | microsoft/nodejstools | Fix resources on Dev14 |
410,218 | 30.03.2017 16:18:32 | 25,200 | 294eca5ea01b30ee2e08cadcdded4eb6f5b91d65 | Fix typings installer for most modules | [
{
"change_type": "MODIFY",
"old_path": "Nodejs/Product/Nodejs/TypingsAcquisitionTool/bin/install_typings",
"new_path": "Nodejs/Product/Nodejs/TypingsAcquisitionTool/bin/install_typings",
"diff": "@@ -18,13 +18,6 @@ var argv = minimist(process.argv.slice(2), {\nvar emitter = new events.EventEmitter()... | C# | Apache License 2.0 | microsoft/nodejstools | Fix typings installer for most modules |
410,217 | 04.04.2017 10:07:40 | 25,200 | b0d94e4dc904819fb5b65c75cc05318043e87be7 | Fix build break for VS 2017 | [
{
"change_type": "MODIFY",
"old_path": "Nodejs/Setup/BuildRelease.ps1",
"new_path": "Nodejs/Setup/BuildRelease.ps1",
"diff": "@@ -166,7 +166,7 @@ $symbol_contacts = \"$env:username;dinov;smortaz;jinglou\"\n$vcs_contact = \"ntvscore\"\n# These options are passed to all MSBuild processes\n-$global_msb... | C# | Apache License 2.0 | microsoft/nodejstools | Fix build break for VS 2017 |
410,217 | 04.04.2017 10:49:02 | 25,200 | a049122725c38cd8c2481a6f7f09a0fc9deac77a | Remove project to narrow down issue in build | [
{
"change_type": "MODIFY",
"old_path": "Nodejs/Setup/setup-swix.proj",
"new_path": "Nodejs/Setup/setup-swix.proj",
"diff": "<ItemGroup>\n<ProjectFile Include=\"swix\\Microsoft.VisualStudio.NodejsTools.Targets.swixproj\"/>\n<ProjectFile Include=\"swix\\NodejsTools.vsmanproj\"/>\n- <ProjectFile Includ... | C# | Apache License 2.0 | microsoft/nodejstools | Remove project to narrow down issue in build |
410,217 | 04.04.2017 11:07:31 | 25,200 | eb43bc39d0be6440a32fb1488c497907ae288816 | Update swix build tools | [
{
"change_type": "MODIFY",
"old_path": "Nodejs/Setup/swix/packages.config",
"new_path": "Nodejs/Setup/swix/packages.config",
"diff": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\n<packages>\n<package id=\"MicroBuild.Core\" version=\"0.2.0\"/>\n- <package id=\"MicroBuild.Plugins.SwixBuild\" version=\"... | C# | Apache License 2.0 | microsoft/nodejstools | Update swix build tools |
410,217 | 04.04.2017 13:23:48 | 25,200 | 9b8c636a827c22afae8cc79c587d867032927d01 | Set diagnostic to sane logging | [
{
"change_type": "MODIFY",
"old_path": "Nodejs/Setup/BuildRelease.ps1",
"new_path": "Nodejs/Setup/BuildRelease.ps1",
"diff": "@@ -166,7 +166,7 @@ $symbol_contacts = \"$env:username;dinov;smortaz;jinglou\"\n$vcs_contact = \"ntvscore\"\n# These options are passed to all MSBuild processes\n-$global_msb... | C# | Apache License 2.0 | microsoft/nodejstools | Set diagnostic to sane logging |
410,217 | 04.04.2017 16:36:10 | 25,200 | f4673ee412132668276d45952ecf43d10ee62347 | Don't build the profiles in the vsmanproj | [
{
"change_type": "MODIFY",
"old_path": "Nodejs/Setup/swix/NodejsTools.Profiling.vsmanproj",
"new_path": "Nodejs/Setup/swix/NodejsTools.Profiling.vsmanproj",
"diff": "<OutputPath>$(BinDirectory)\\$(Configuration)\\</OutputPath>\n</PropertyGroup>\n- <ItemGroup>\n- <ProjectReference Include=\"..\\..\\P... | C# | Apache License 2.0 | microsoft/nodejstools | Don't build the profiles in the vsmanproj |
410,217 | 05.04.2017 13:32:11 | 25,200 | 167a447eeb5d16c82a917a350c45d8123addc738 | Fix null ref in string.format | [
{
"change_type": "MODIFY",
"old_path": "Nodejs/Product/Nodejs/Debugger/Communication/DebuggerClient.cs",
"new_path": "Nodejs/Product/Nodejs/Debugger/Communication/DebuggerClient.cs",
"diff": "@@ -195,7 +195,7 @@ namespace Microsoft.NodejsTools.Debugger.Communication {\nif (messageId != null && _mess... | C# | Apache License 2.0 | microsoft/nodejstools | Fix null ref in string.format |
410,217 | 07.04.2017 12:56:42 | 25,200 | 70e57a0c7daf57cc2e4525536f99b80e1e94d289 | Node V8 debugger support
Check the version of the node binary and either force Webkit protocol
(VS 2017), or block debugging with Message (VS 2015). | [
{
"change_type": "MODIFY",
"old_path": "Nodejs/Product/Nodejs/Nodejs.cs",
"new_path": "Nodejs/Product/Nodejs/Nodejs.cs",
"diff": "//*********************************************************//\nusing System;\n+using System.Diagnostics;\nusing System.IO;\n#if !NO_WINDOWS\nusing System.Windows.Forms;\n... | C# | Apache License 2.0 | microsoft/nodejstools | Node V8 debugger support
Check the version of the node binary and either force Webkit protocol
(VS 2017), or block debugging with Message (VS 2015). |
410,217 | 07.04.2017 13:15:39 | 25,200 | 2e1c83364f4e2d18892932425c3513dfbfedf492 | Fix VS 2015 build break. | [
{
"change_type": "MODIFY",
"old_path": "Nodejs/Product/Nodejs/Nodejs.cs",
"new_path": "Nodejs/Product/Nodejs/Nodejs.cs",
"diff": "@@ -156,7 +156,7 @@ namespace Microsoft.NodejsTools {\n#if !DEV15\npublic static void ShowNodeVersionNotSupported() {\nMessageBox.Show(\n- SR.GetString(SR.NodejsNotInstal... | C# | Apache License 2.0 | microsoft/nodejstools | Fix VS 2015 build break. |
410,217 | 07.04.2017 16:24:40 | 25,200 | 76c31f4b78861ce186e166e6aadd96cb14042f8f | Update Buildnumber used for drop location | [
{
"change_type": "MODIFY",
"old_path": "Nodejs/Setup/BuildRelease.ps1",
"new_path": "Nodejs/Setup/BuildRelease.ps1",
"diff": "@@ -461,7 +461,12 @@ if ([int]::Parse([regex]::Match($buildnumber, '^[0-9]+').Value) -ge 65535) {\n$msi_version = \"$release_version.$buildnumber\"\nif ($internal -or $releas... | C# | Apache License 2.0 | microsoft/nodejstools | Update Buildnumber used for drop location |
410,217 | 07.04.2017 16:33:29 | 25,200 | 4bb3c5d3cdc58c84695bf1491f8be89c4fb16dd6 | actually get the value of the environment variable | [
{
"change_type": "MODIFY",
"old_path": "Nodejs/Setup/BuildRelease.ps1",
"new_path": "Nodejs/Setup/BuildRelease.ps1",
"diff": "@@ -461,7 +461,7 @@ if ([int]::Parse([regex]::Match($buildnumber, '^[0-9]+').Value) -ge 65535) {\n$msi_version = \"$release_version.$buildnumber\"\nif ($internal -or $release... | C# | Apache License 2.0 | microsoft/nodejstools | actually get the value of the environment variable |
410,217 | 07.04.2017 17:48:07 | 25,200 | 5e1e526a70906dbd2f3ab7dc0102cbcd0f1b7267 | Make sure the buildindex is correct | [
{
"change_type": "MODIFY",
"old_path": "Nodejs/Setup/BuildRelease.ps1",
"new_path": "Nodejs/Setup/BuildRelease.ps1",
"diff": "@@ -440,9 +440,17 @@ if (-not $outdir) {\n$outdir = $base_outdir\n}\n-$buildnumber = '{0}{1:MMdd}.{2:D2}' -f (((Get-Date).Year - $base_year), (Get-Date), 0)\n+$serverBuildNum... | C# | Apache License 2.0 | microsoft/nodejstools | Make sure the buildindex is correct |
410,217 | 10.04.2017 16:21:29 | 25,200 | 724b638cdd27d7df0a6d9cd15fd3c9446277f133 | Correctly include script arguments when starting node for debugging | [
{
"change_type": "MODIFY",
"old_path": "Nodejs/Product/Nodejs/Debugger/NodeDebugger.cs",
"new_path": "Nodejs/Product/Nodejs/Debugger/NodeDebugger.cs",
"diff": "@@ -113,7 +113,7 @@ namespace Microsoft.NodejsTools.Debugger {\nreturn debuggerPortOrDefault;\n}\n- public static NodeProcess StartNodeProce... | C# | Apache License 2.0 | microsoft/nodejstools | Correctly include script arguments when starting node for debugging |
410,217 | 11.04.2017 15:09:10 | 25,200 | 1fa539aeb087d8f2849f9ab4e5611b9878a65b3d | Update app.js
comment out debug statement | [
{
"change_type": "MODIFY",
"old_path": "Nodejs/Product/Nodejs/ProjectTemplates/AzureExpress4App/app.js",
"new_path": "Nodejs/Product/Nodejs/ProjectTemplates/AzureExpress4App/app.js",
"diff": "@@ -60,5 +60,5 @@ app.use(function (err, req, res, next) {\napp.set('port', process.env.PORT || 3000);\nvar ... | C# | Apache License 2.0 | microsoft/nodejstools | Update app.js
comment out debug statement |
410,217 | 12.04.2017 12:47:21 | 25,200 | 7df89557672fe2a0affbae2bc2de9a3d2e9005fd | Some more clean up and fixes encountered while debugging. | [
{
"change_type": "MODIFY",
"old_path": "Nodejs/Product/Nodejs/ProjectTemplates/CloudService/CloudService.vstemplate",
"new_path": "Nodejs/Product/Nodejs/ProjectTemplates/CloudService/CloudService.vstemplate",
"diff": "-<VSTemplate Version=\"3.0.0\" Type=\"Project\" xmlns=\"http://schemas.microsoft.c... | C# | Apache License 2.0 | microsoft/nodejstools | Some more clean up and fixes encountered while debugging. |
410,218 | 12.04.2017 22:19:44 | 25,200 | a44207834946843f696b18e281299db730430a9e | Explicitly load the VS assemblies on Dev15 | [
{
"change_type": "MODIFY",
"old_path": "Nodejs/Product/TestAdapter/TestExecutor.cs",
"new_path": "Nodejs/Product/TestAdapter/TestExecutor.cs",
"diff": "using System;\nusing System.Collections.Generic;\nusing System.Diagnostics;\n+using System.Globalization;\nusing System.IO;\nusing System.Linq;\nusi... | C# | Apache License 2.0 | microsoft/nodejstools | Explicitly load the VS assemblies on Dev15 |
410,217 | 17.04.2017 10:53:52 | 25,200 | ee63258db5c8e775a729117351c8a67f70ac6fb3 | Move to 1.4 for VS 2017 | [
{
"change_type": "MODIFY",
"old_path": "Nodejs/Product/AssemblyInfoCommon.cs",
"new_path": "Nodejs/Product/AssemblyInfoCommon.cs",
"diff": "@@ -8,6 +8,6 @@ using System.Reflection;\n// (See also AssemblyVersion.cs in this same directory.)\n[assembly: AssemblyCompany(\"Microsoft\")]\n[assembly: Assem... | C# | Apache License 2.0 | microsoft/nodejstools | Move to 1.4 for VS 2017 |
410,217 | 17.04.2017 11:51:32 | 25,200 | ecf16a35e6b3a660ae1e925ea1b0575f6babe38e | make version check more robust
don't use no longer suppoted cmd line argument | [
{
"change_type": "MODIFY",
"old_path": "Nodejs/Product/Nodejs/Debugger/NodeDebugger.cs",
"new_path": "Nodejs/Product/Nodejs/Debugger/NodeDebugger.cs",
"diff": "@@ -144,7 +144,7 @@ namespace Microsoft.NodejsTools.Debugger {\nvar debuggerPortOrDefault = debuggerPort ?? GetDebuggerPort();\n// Node usag... | C# | Apache License 2.0 | microsoft/nodejstools | make version check more robust
don't use no longer suppoted cmd line argument |
410,218 | 18.04.2017 23:21:30 | 25,200 | a931fc42ff8b48eb202aa776f2c5de9e6de7a3a0 | Simplified test execution code | [
{
"change_type": "MODIFY",
"old_path": "Common/Product/SharedProject/ProcessOutput.cs",
"new_path": "Common/Product/SharedProject/ProcessOutput.cs",
"diff": "@@ -58,6 +58,15 @@ namespace Microsoft.VisualStudioTools.Project {\n/// </summary>\npublic virtual void ShowAndActivate() {\n}\n+\n+ /// <summ... | C# | Apache License 2.0 | microsoft/nodejstools | Simplified test execution code |
410,218 | 20.04.2017 01:35:45 | 25,200 | 5cfb3e2e1e5075b52f0b87350ad046e6a7524ff2 | Fixed tape runner | [
{
"change_type": "MODIFY",
"old_path": "Nodejs/Product/Nodejs/TestFrameworks/Tape/tape.js",
"new_path": "Nodejs/Product/Nodejs/TestFrameworks/Tape/tape.js",
"diff": "@@ -57,59 +57,74 @@ function run_tests(testInfo, callback) {\nreturn;\n}\n- var harness = tape.getHarness();\n-\n- testInfo.forEach(fu... | C# | Apache License 2.0 | microsoft/nodejstools | Fixed tape runner |
410,217 | 20.04.2017 12:36:00 | 25,200 | 7d9fa91beac9d51a750a0c4c8e77955381662478 | Fix tab-order in nodejs tools options | [
{
"change_type": "MODIFY",
"old_path": "Nodejs/Product/Nodejs/Options/NodejsGeneralOptionsControl.Designer.cs",
"new_path": "Nodejs/Product/Nodejs/Options/NodejsGeneralOptionsControl.Designer.cs",
"diff": "//\n// _topOptionsPanel\n//\n- this._topOptionsPanel.Controls.Add(this._checkForLongPaths);\n-... | C# | Apache License 2.0 | microsoft/nodejstools | Fix tab-order in nodejs tools options |
410,217 | 21.04.2017 14:12:29 | 25,200 | 7b948a38a8704beaee3ea21907124a01cabb4093 | Correctly implement the IPropertyPage interface
This way the property page scrolls to keep the focused control
visible. | [
{
"change_type": "MODIFY",
"old_path": "Common/Product/SharedProject/CommonPropertyPage.cs",
"new_path": "Common/Product/SharedProject/CommonPropertyPage.cs",
"diff": "@@ -19,9 +19,9 @@ namespace Microsoft.VisualStudioTools.Project\n/// </summary>\npublic abstract class CommonPropertyPage : IPropert... | C# | Apache License 2.0 | microsoft/nodejstools | Correctly implement the IPropertyPage interface
This way the property page scrolls to keep the focused control
visible. |
410,217 | 19.04.2017 14:41:28 | 25,200 | 71424b133546e2f07d2f61d39e8436709eb12ea0 | Set Name property correctly for controls.
Set the name property correctly for controls by pointing them to
the associated label. | [
{
"change_type": "MODIFY",
"old_path": "Nodejs/Product/Nodejs/Nodejs.csproj",
"new_path": "Nodejs/Product/Nodejs/Nodejs.csproj",
"diff": "<Reference Include=\"Microsoft.ApplicationInsights.PersistenceChannel, Version=1.2.3.490, Culture=neutral, PublicKeyToken=31bf3856ad364e35, processorArchitecture=... | C# | Apache License 2.0 | microsoft/nodejstools | Set Name property correctly for controls.
Set the name property correctly for controls by pointing them to
the associated label. |
410,217 | 21.04.2017 14:32:14 | 25,200 | 4f0e99630610f46305c2d5fcf33a207e4044d6ed | Add accessible name to browse buttons | [
{
"change_type": "MODIFY",
"old_path": "Nodejs/Product/Nodejs/Project/NodejsGeneralPropertyPageControl.cs.resx",
"new_path": "Nodejs/Product/Nodejs/Project/NodejsGeneralPropertyPageControl.cs.resx",
"diff": "<data name=\"_browsePath.Text\" xml:space=\"preserve\">\n<value>...</value>\n</data>\n+ <dat... | C# | Apache License 2.0 | microsoft/nodejstools | Add accessible name to browse buttons |
410,217 | 21.04.2017 17:18:51 | 25,200 | ac0d7d1d0b3f033b3fbb0855ca4c08d8aaaeb4b2 | Fix narrator and tab order issues in Install NPM UI | [
{
"change_type": "MODIFY",
"old_path": "Nodejs/Product/Nodejs/NpmUI/NpmPackageInstallWindow.xaml",
"new_path": "Nodejs/Product/Nodejs/NpmUI/NpmPackageInstallWindow.xaml",
"diff": "<DataTemplate x:Key=\"PackageInfoTemplate\">\n<StackPanel x:Name=\"PackageInfo\">\n-\n- <TextBlock Margin=\"0\" x:Name=\... | C# | Apache License 2.0 | microsoft/nodejstools | Fix narrator and tab order issues in Install NPM UI |
410,217 | 24.04.2017 11:46:34 | 25,200 | 928096f94844c506dc4053de41bc581bfcf7d7a1 | Remove the options page for the diagnostics pane.
We previously removed the diagnostics pane, now removing the options too. | [
{
"change_type": "MODIFY",
"old_path": "Nodejs/Product/Nodejs/Logging/LiveLogger.cs",
"new_path": "Nodejs/Product/Nodejs/Logging/LiveLogger.cs",
"diff": "using System;\nusing System.Diagnostics;\nusing System.Globalization;\n-using Microsoft.NodejsTools.Options;\n-using Microsoft.VisualStudioTools.P... | C# | Apache License 2.0 | microsoft/nodejstools | Remove the options page for the diagnostics pane.
We previously removed the diagnostics pane, now removing the options too. |
410,217 | 24.04.2017 14:50:20 | 25,200 | c39ef640d46a79503fd5e2a6fc6bfc08273ad975 | Replace packages.config with project.json
This way we can use a wildcard for the version, which helps
prevent issues when referencing MicroBuild packages. | [
{
"change_type": "MODIFY",
"old_path": "EnvironmentSetup.ps1",
"new_path": "EnvironmentSetup.ps1",
"diff": "@@ -68,7 +68,7 @@ if ($microbuild -or ($vstarget -eq \"15.0\" -and -not $skipRestore)) {\nWrite-Output \"\"\nWrite-Output \"Installing Nuget MicroBuild packages\"\n- & \"$rootdir\\Nodejs\\.nug... | C# | Apache License 2.0 | microsoft/nodejstools | Replace packages.config with project.json
This way we can use a wildcard for the version, which helps
prevent issues when referencing MicroBuild packages. |
410,217 | 25.04.2017 14:06:06 | 25,200 | a9be2edb0cc90b96494d15a2f8e4394abf55cdea | Include an option to force the use of the chrome debugging protocol.
This is to enable the chrome protocol on Node 7.5 | [
{
"change_type": "MODIFY",
"old_path": "Nodejs/Product/Nodejs/Project/NodejsProjectLauncher.cs",
"new_path": "Nodejs/Product/Nodejs/Project/NodejsProjectLauncher.cs",
"diff": "@@ -16,6 +16,7 @@ using System.Web;\nusing System.Windows.Forms;\nusing Microsoft.NodejsTools.Debugger;\nusing Microsoft.Nod... | C# | Apache License 2.0 | microsoft/nodejstools | Include an option to force the use of the chrome debugging protocol.
This is to enable the chrome protocol on Node 7.5 |
410,204 | 27.04.2017 16:04:49 | 25,200 | c7339a9dfbe33908315830243f0536bd39c0aea0 | Added support for WebKit V2 Debugger | [
{
"change_type": "MODIFY",
"old_path": "Nodejs/Product/Nodejs/Nodejs.csproj",
"new_path": "Nodejs/Product/Nodejs/Nodejs.csproj",
"diff": "<Reference Include=\"Microsoft.VisualStudio.Imaging.Interop.14.0.DesignTime, Version=14.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a, processorArchitec... | C# | Apache License 2.0 | microsoft/nodejstools | Added support for WebKit V2 Debugger |
410,217 | 28.04.2017 14:55:54 | 25,200 | 5d301325ee1d4365b5aed922684f159705dcc23b | Remove no longer needed projects. | [
{
"change_type": "MODIFY",
"old_path": "Nodejs/Setup/BuildRelease.ps1",
"new_path": "Nodejs/Setup/BuildRelease.ps1",
"diff": "@@ -148,7 +148,6 @@ $base_outdir = \"\\\\pytools\\Release\\Nodejs\"\n$version_file = gi \"$buildroot\\Nodejs\\Product\\AssemblyVersion.cs\"\n$build_project = gi \"$buildroot\... | C# | Apache License 2.0 | microsoft/nodejstools | Remove no longer needed projects. |
410,217 | 28.04.2017 15:04:18 | 25,200 | e513fac7a1fedadbda4f55c7b55d01c00873e798 | Make sure we get the SetupConfiguration. | [
{
"change_type": "MODIFY",
"old_path": "Nodejs/Product/Nodejs/Project/NodejsProjectLauncher.cs",
"new_path": "Nodejs/Product/Nodejs/Project/NodejsProjectLauncher.cs",
"diff": "@@ -348,7 +348,7 @@ namespace Microsoft.NodejsTools.Project\n{\nvar serviceProvider = _project.Site;\n- var setupConfigurati... | C# | Apache License 2.0 | microsoft/nodejstools | Make sure we get the SetupConfiguration. |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.