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 |
|---|---|---|---|---|---|---|---|---|---|
20,255 | 20.07.2022 12:22:10 | 25,200 | 18342bee44c6ae766e2cea262873b3f6c7f3ab67 | Fix CI test after update to lettre
AFter updating lettre, FileTransport saved emails as an .eml rather than a .json
The CI have been chaged to account for this | [
{
"change_type": "MODIFY",
"old_path": "integration-tests/integration-test-script/utils.py",
"new_path": "integration-tests/integration-test-script/utils.py",
"diff": "+import email\nfrom pprint import pprint\nfrom termcolor import colored\n@@ -93,9 +94,11 @@ def read_email(node):\n# TODO: this is O... | Rust | Apache License 2.0 | althea-net/althea_rs | Fix CI test after update to lettre
AFter updating lettre, FileTransport saved emails as an .eml rather than a .json
The CI have been chaged to account for this |
20,255 | 21.07.2022 10:54:30 | 25,200 | db0f0fddea16cedacd9e5e24cedb05f8d6a5a0e7 | Remove the Config crate from rita
It looks like all this crate is used for is to load a toml file | [
{
"change_type": "MODIFY",
"old_path": "Cargo.lock",
"new_path": "Cargo.lock",
"diff": "@@ -116,7 +116,7 @@ dependencies = [\n\"http\",\n\"log\",\n\"regex\",\n- \"serde 1.0.140\",\n+ \"serde\",\n]\n[[package]]\n@@ -216,7 +216,7 @@ dependencies = [\n\"once_cell\",\n\"pin-project-lite\",\n\"regex\",\n... | Rust | Apache License 2.0 | althea-net/althea_rs | Remove the Config crate from rita
It looks like all this crate is used for is to load a toml file |
20,244 | 02.08.2022 08:36:50 | 14,400 | e655b79376e1587eb44a3d070e7b59a21297c6cb | Bump for Beta 20 rc2
Updates dependencies and bumps for the latest release | [
{
"change_type": "MODIFY",
"old_path": "Cargo.lock",
"new_path": "Cargo.lock",
"diff": "@@ -227,16 +227,16 @@ dependencies = [\n[[package]]\nname = \"actix-web-httpauth\"\n-version = \"0.6.0\"\n+version = \"0.8.0\"\nsource = \"registry+https://github.com/rust-lang/crates.io-index\"\n-checksum = \"08... | Rust | Apache License 2.0 | althea-net/althea_rs | Bump for Beta 20 rc2
Updates dependencies and bumps for the latest release |
20,255 | 05.08.2022 12:49:17 | 25,200 | 30df87c73ecc39eaf78da2c8c304f207a1f15705 | Remove bounty ip and port from rita | [
{
"change_type": "MODIFY",
"old_path": "docs/api/router-dashboard.md",
"new_path": "docs/api/router-dashboard.md",
"diff": "@@ -453,8 +453,6 @@ application/json\" -d '\\{\"url\": \"https://somewhere.safe\"\\}'\n},\n\"network\": {\n\"babel_port\": 6872,\n- \"bounty_ip\": \"fd96::1337:e1f\",\n- \"boun... | Rust | Apache License 2.0 | althea-net/althea_rs | Remove bounty ip and port from rita |
20,255 | 08.08.2022 10:12:33 | 25,200 | 10534842a4d602f4bf1157a28de83bf22a645c56 | Cargo audit: removing owning_ref dep | [
{
"change_type": "MODIFY",
"old_path": "Cargo.lock",
"new_path": "Cargo.lock",
"diff": "@@ -1061,9 +1061,9 @@ checksum = \"8f5f3913fa0bfe7ee1fd8248b6b9f42a5af4b9d65ec2dd2c3c26132b950ecfc2\"\n[[package]]\nname = \"generic-array\"\n-version = \"0.14.5\"\n+version = \"0.14.6\"\nsource = \"registry+http... | Rust | Apache License 2.0 | althea-net/althea_rs | Cargo audit: removing owning_ref dep |
20,243 | 12.08.2022 10:23:19 | 25,200 | 65bdf56300edd5d62043b6cefd1a4f883ab20ba5 | Changed serialization for OperatorUpdateMessage
Changed serialization for OperatorUpdateMessage to serialize as a
string to prevent the bincode serialization error. Also, wrote a unit
test to validate that there was no issue with serde. | [
{
"change_type": "MODIFY",
"old_path": "Cargo.lock",
"new_path": "Cargo.lock",
"diff": "@@ -318,6 +318,7 @@ dependencies = [\n\"arrayvec 0.7.2\",\n\"babel_monitor\",\n\"base64\",\n+ \"bincode\",\n\"clarity\",\n\"hex\",\n\"ipnetwork 0.20.0\",\n"
},
{
"change_type": "MODIFY",
"old_path": "... | Rust | Apache License 2.0 | althea-net/althea_rs | Changed serialization for OperatorUpdateMessage
Changed serialization for OperatorUpdateMessage to serialize as a
string to prevent the bincode serialization error. Also, wrote a unit
test to validate that there was no issue with serde. |
20,244 | 12.08.2022 10:10:41 | 14,400 | 4d031d2e8018036c2421fcb08c06966ebd6fe693 | Always save exit registration
Specific dashboard actions where not saving instantly, like exit registration.
This patch adds saving logic for these endpoints and removes some
redundant saving functions which where only used in one location.
There is also a potential logic fix in the saving loop logic never
updating the... | [
{
"change_type": "MODIFY",
"old_path": "rita_bin/src/client.rs",
"new_path": "rita_bin/src/client.rs",
"diff": "@@ -144,10 +144,9 @@ fn main() {\nstart_rita_common_loops();\nstart_rita_client_loops();\n- save_to_disk_loop(\n- SettingsOnDisk::RitaClientSettings(settings::get_rita_client()),\n- &args.... | Rust | Apache License 2.0 | althea-net/althea_rs | Always save exit registration
Specific dashboard actions where not saving instantly, like exit registration.
This patch adds saving logic for these endpoints and removes some
redundant saving functions which where only used in one location.
There is also a potential logic fix in the saving loop logic never
updating t... |
20,255 | 28.08.2022 22:28:47 | 25,200 | de9e8cb85e137dbe15e2669ba9f48c96529fade4 | Log every step of peer listener and remove explicit panics in tunnel manager in hopes of finding a peerlistener panic bug | [
{
"change_type": "MODIFY",
"old_path": "rita_common/src/network_endpoints/mod.rs",
"new_path": "rita_common/src/network_endpoints/mod.rs",
"diff": "@@ -46,6 +46,7 @@ pub async fn make_payments(item: Json<PaymentTx>) -> HttpResponse {\n}\npub async fn hello_response(item: Json<LocalIdentity>, req: Ht... | Rust | Apache License 2.0 | althea-net/althea_rs | Log every step of peer listener and remove explicit panics in tunnel manager in hopes of finding a peerlistener panic bug |
20,255 | 30.08.2022 06:31:06 | 25,200 | 36f1b7aeade105be9f7ad0c1ad5c38dc1312de5b | Fixed bug and updated docs for manaul exit addition | [
{
"change_type": "MODIFY",
"old_path": "docs/api/router-dashboard.md",
"new_path": "docs/api/router-dashboard.md",
"diff": "@@ -116,7 +116,7 @@ This file documents the dashboard API found in Rita client.\n- URL: `<rita ip>:<rita_dashboard_port>/exits'\n- Comment: Merges a supplied exit list with the... | Rust | Apache License 2.0 | althea-net/althea_rs | Fixed bug and updated docs for manaul exit addition |
20,255 | 01.09.2022 10:10:13 | 25,200 | 74d2ed6be678d2b6a429767ae27342ddfe9705cc | Restructure Peer listener by cloning a UDP socket to send a hello in tunnel manager
This change removes the need for calling the peer listener lock in Tunnel Manager. If this
was where a panic/deadlock took place, this change fixes it | [
{
"change_type": "MODIFY",
"old_path": "rita_common/src/peer_listener/mod.rs",
"new_path": "rita_common/src/peer_listener/mod.rs",
"diff": "@@ -26,7 +26,6 @@ lazy_static! {\n#[derive(Debug)]\npub struct PeerListener {\n- pub contacting_neighbors: bool,\npub interfaces: HashMap<String, ListenInterfac... | Rust | Apache License 2.0 | althea-net/althea_rs | Restructure Peer listener by cloning a UDP socket to send a hello in tunnel manager
This change removes the need for calling the peer listener lock in Tunnel Manager. If this
was where a panic/deadlock took place, this change fixes it |
20,253 | 30.08.2022 15:15:52 | 25,200 | 78eac056a9f13cbfa0100edb451656bf126545c5 | Make billing details editable from ops tools
Billing details now includes a sequence number which keeps track of
updates sent by ops, which now sends back billing details as part
of the router checkin process. | [
{
"change_type": "MODIFY",
"old_path": "althea_types/src/interop.rs",
"new_path": "althea_types/src/interop.rs",
"diff": "@@ -525,6 +525,8 @@ pub struct OperatorUpdateMessage {\ndeserialize_with = \"data_deserialize\"\n)]\npub contact_info: Option<ContactType>,\n+ /// Billing details from ops tools,... | Rust | Apache License 2.0 | althea-net/althea_rs | Make billing details editable from ops tools
Billing details now includes a sequence number which keeps track of
updates sent by ops, which now sends back billing details as part
of the router checkin process. |
20,243 | 07.09.2022 10:00:38 | 25,200 | c9ef9e0c8420f3937b2eba0f09c521891c8a095e | Removing deprecated daos endpoint
Removing daos endpoints/routes since they were no longer useful for
the althea dash. They were no longer used as operators became the more
useful endpoint. | [
{
"change_type": "MODIFY",
"old_path": "rita_client/src/dashboard/mod.rs",
"new_path": "rita_client/src/dashboard/mod.rs",
"diff": "@@ -76,14 +76,6 @@ pub fn start_client_dashboard(rita_dashboard_port: u16) {\n\"/backup_created/{status}\",\nweb::post().to(set_backup_created),\n)\n- .route(\"/dao_lis... | Rust | Apache License 2.0 | althea-net/althea_rs | Removing deprecated daos endpoint
Removing daos endpoints/routes since they were no longer useful for
the althea dash. They were no longer used as operators became the more
useful endpoint. |
20,255 | 08.09.2022 08:22:44 | 25,200 | d844fb343850334ac8a76fbb4d35b9af8a613bf4 | Added Conntrack info to hardware details | [
{
"change_type": "MODIFY",
"old_path": "althea_kernel_interface/src/hardware_info.rs",
"new_path": "althea_kernel_interface/src/hardware_info.rs",
"diff": "@@ -2,6 +2,7 @@ use crate::file_io::get_lines;\nuse crate::KernelInterfaceError as Error;\nuse althea_types::extract_wifi_station_data;\nuse alt... | Rust | Apache License 2.0 | althea-net/althea_rs | Added Conntrack info to hardware details |
20,243 | 20.09.2022 13:06:14 | 25,200 | d77416acec46d3ce85e25ee37790c1daa691fa31 | Serde default tag added to conntrackfield in hardwareinfo struct
Without the default serde tag, the conntrack field causes an issue
with deserialization which prevents ops tools to load devices correctly. | [
{
"change_type": "MODIFY",
"old_path": "althea_types/src/interop.rs",
"new_path": "althea_types/src/interop.rs",
"diff": "@@ -672,6 +672,7 @@ pub struct HardwareInfo {\n#[serde(default)]\npub wifi_devices: Vec<WifiDevice>,\n// Info about the max connections, number of rows in conntrack table and cur... | Rust | Apache License 2.0 | althea-net/althea_rs | Serde default tag added to conntrackfield in hardwareinfo struct
Without the default serde tag, the conntrack field causes an issue
with deserialization which prevents ops tools to load devices correctly. |
20,255 | 21.09.2022 08:48:03 | 25,200 | f3b30dfa40ee36672eb298a948cca87ef7f85411 | Peer Listener Logging PR | [
{
"change_type": "MODIFY",
"old_path": "rita_common/src/peer_listener/mod.rs",
"new_path": "rita_common/src/peer_listener/mod.rs",
"diff": "@@ -135,12 +135,14 @@ impl Clone for PeerListener {\n/// Creates a listen interface on all interfaces in the peer_interfaces hashmap.\nfn listen_to_available_if... | Rust | Apache License 2.0 | althea-net/althea_rs | Peer Listener Logging PR |
20,255 | 22.09.2022 09:31:21 | 25,200 | eedb144850444b1d91fcebb69568b2b3931fad81 | Remove explicit uci panics | [
{
"change_type": "MODIFY",
"old_path": "althea_kernel_interface/src/ip_addr.rs",
"new_path": "althea_kernel_interface/src/ip_addr.rs",
"diff": "@@ -49,18 +49,31 @@ impl dyn KernelInterface {\n/// to /etc/network/addr. SLAAC takes this ip and assigns a /64 to hosts that connect\n/// to the router\npu... | Rust | Apache License 2.0 | althea-net/althea_rs | Remove explicit uci panics |
20,255 | 04.10.2022 12:43:07 | 25,200 | 50301d8541811a43137685d0246a6f35b35b4828 | Added code that checks that tunnels present in rita are being monitored by babel
Sometimes due to babel restarting under rita, babel loses all interfaces it monitors leading to communication issues. This commits checks every loop
for interfaces that are not being monitored and re-monitors them with babel. | [
{
"change_type": "MODIFY",
"old_path": "rita_common/src/rita_loop/slow_loop.rs",
"new_path": "rita_common/src/rita_loop/slow_loop.rs",
"diff": "use crate::simulated_txfee_manager::tick_simulated_tx;\nuse crate::token_bridge::tick_token_bridge;\n+use crate::tunnel_manager::tm_monitor_check;\nuse acti... | Rust | Apache License 2.0 | althea-net/althea_rs | Added code that checks that tunnels present in rita are being monitored by babel
Sometimes due to babel restarting under rita, babel loses all interfaces it monitors leading to communication issues. This commits checks every loop
for interfaces that are not being monitored and re-monitors them with babel. |
20,255 | 26.07.2022 12:43:45 | 25,200 | e17b637d64db842dca5bbb114bf7ad387d4f4c13 | Add wg_exit_new for backwards compatibility
This is the first step to give exits instances unique identities. This allows for older clients to connect
to exits normally with a single ip, while newer clients can connect to a newer interfaces which allows for exit switching | [
{
"change_type": "MODIFY",
"old_path": "althea_kernel_interface/src/exit_server_tunnel.rs",
"new_path": "althea_kernel_interface/src/exit_server_tunnel.rs",
"diff": "@@ -22,12 +22,13 @@ impl dyn KernelInterface {\nclients: &HashSet<ExitClient>,\nlisten_port: u16,\nprivate_key_path: &str,\n+ if_name:... | Rust | Apache License 2.0 | althea-net/althea_rs | Add wg_exit_new for backwards compatibility
This is the first step to give exits instances unique identities. This allows for older clients to connect
to exits normally with a single ip, while newer clients can connect to a newer interfaces which allows for exit switching |
20,255 | 04.08.2022 11:37:38 | 25,200 | f8dec26d92664c3924ed679e488cb36499eb4f28 | Configure exit switcher to use a list of exit identities instead of subnetting
Now that exits have unique wg keys, we hit and exit endpoint to get a list of exit indentities. We use this list to cycle through exit metrics to choose the best exit
to connect to | [
{
"change_type": "MODIFY",
"old_path": "althea_types/src/interop.rs",
"new_path": "althea_types/src/interop.rs",
"diff": "@@ -255,9 +255,17 @@ pub struct EncryptedExitState {\n/// Wrapper for secure box containing a list of ips\n#[derive(Debug, Serialize, Deserialize, PartialEq, Eq, Hash, Clone)]\n-... | Rust | Apache License 2.0 | althea-net/althea_rs | Configure exit switcher to use a list of exit identities instead of subnetting
Now that exits have unique wg keys, we hit and exit endpoint to get a list of exit indentities. We use this list to cycle through exit metrics to choose the best exit
to connect to |
20,255 | 05.08.2022 10:46:42 | 25,200 | 329cc2b423bd44be3350e71351c3a739189d378a | Remove subnetting functionality from client side
Now that the exits send a list of exit identites, subnetting is no longer needed to know the exit ip addrs. We now
simply iterative through the list we receive from the exit | [
{
"change_type": "MODIFY",
"old_path": "Cargo.lock",
"new_path": "Cargo.lock",
"diff": "@@ -847,9 +847,9 @@ dependencies = [\n[[package]]\nname = \"email_address\"\n-version = \"0.2.1\"\n+version = \"0.2.3\"\nsource = \"registry+https://github.com/rust-lang/crates.io-index\"\n-checksum = \"8684b7c9c... | Rust | Apache License 2.0 | althea-net/althea_rs | Remove subnetting functionality from client side
Now that the exits send a list of exit identites, subnetting is no longer needed to know the exit ip addrs. We now
simply iterative through the list we receive from the exit |
20,255 | 15.08.2022 20:04:58 | 25,200 | 4cde0d8408130e5cbfc8bc40fc8f9a5babb1b773 | Set up ipv4 and ipv6 routes correctly for rita exit | [
{
"change_type": "MODIFY",
"old_path": "althea_kernel_interface/src/exit_server_tunnel.rs",
"new_path": "althea_kernel_interface/src/exit_server_tunnel.rs",
"diff": "@@ -94,31 +94,61 @@ impl dyn KernelInterface {\n&self,\nclient_ipv6_list: String,\nclient_mesh: String,\n+ client_internal_ip: String,... | Rust | Apache License 2.0 | althea-net/althea_rs | Set up ipv4 and ipv6 routes correctly for rita exit |
20,255 | 23.09.2022 09:12:41 | 25,200 | cff557bd04adc8b9fa63db2ce3efd101d564ee30 | Replaced wg_exit_new with wg_exit_V2 | [
{
"change_type": "MODIFY",
"old_path": "althea_kernel_interface/src/exit_server_tunnel.rs",
"new_path": "althea_kernel_interface/src/exit_server_tunnel.rs",
"diff": "@@ -98,7 +98,7 @@ impl dyn KernelInterface {\ninterface: &str,\n) {\n// Setup ipv4 route\n- // 1.) Select all ipv4 routes with 'client... | Rust | Apache License 2.0 | althea-net/althea_rs | Replaced wg_exit_new with wg_exit_V2 |
20,255 | 29.09.2022 10:26:41 | 25,200 | 300650096a51014c833f90267f5055dfbb4dd71d | Fix manual exit addition docs | [
{
"change_type": "MODIFY",
"old_path": "docs/api/router-dashboard.md",
"new_path": "docs/api/router-dashboard.md",
"diff": "@@ -116,7 +116,7 @@ This file documents the dashboard API found in Rita client.\n- URL: `<rita ip>:<rita_dashboard_port>/exits'\n- Comment: Merges a supplied exit list with the... | Rust | Apache License 2.0 | althea-net/althea_rs | Fix manual exit addition docs |
20,255 | 29.09.2022 13:53:26 | 25,200 | df5d5d4174b2aef760e152eaaa2b254a6d4811a2 | Fix route setup bug. | [
{
"change_type": "MODIFY",
"old_path": "althea_kernel_interface/src/exit_server_tunnel.rs",
"new_path": "althea_kernel_interface/src/exit_server_tunnel.rs",
"diff": "@@ -195,6 +195,8 @@ impl dyn KernelInterface {\nclient_internal_ip: String,\ninterface: &str,\n) {\n+ let mut interface_cloned = inter... | Rust | Apache License 2.0 | althea-net/althea_rs | Fix route setup bug. |
20,259 | 06.10.2022 16:21:27 | 14,400 | 252262c240a08b631d159ae471bef445cbeded3c | Update authorized keys
Network Operator or managed keys can be cycled out | [
{
"change_type": "MODIFY",
"old_path": "althea_types/src/interop.rs",
"new_path": "althea_types/src/interop.rs",
"diff": "@@ -470,6 +470,11 @@ pub enum OperatorAction {\n/// Sets the min gas value to the provided value, primarily intended for use on xDai where\n/// the validators set a minimum gas p... | Rust | Apache License 2.0 | althea-net/althea_rs | Update authorized keys
Network Operator or managed keys can be cycled out |
20,244 | 07.10.2022 08:19:26 | 14,400 | a5d49dc8cac417d5efa896bf34a746cd3a89c8ec | Bump for Beta 20 RC3 | [
{
"change_type": "MODIFY",
"old_path": "Cargo.lock",
"new_path": "Cargo.lock",
"diff": "@@ -47,7 +47,7 @@ dependencies = [\n\"pin-project-lite\",\n\"smallvec\",\n\"tokio\",\n- \"tokio-util 0.7.3\",\n+ \"tokio-util 0.7.4\",\n]\n[[package]]\n@@ -64,14 +64,14 @@ dependencies = [\n\"memchr\",\n\"pin-pro... | Rust | Apache License 2.0 | althea-net/althea_rs | Bump for Beta 20 RC3 |
20,255 | 11.10.2022 10:30:36 | 25,200 | ad0e3395ff573bd82c168cc28b29c1095548da0b | Add a config flag to reset all ipv6 database data | [
{
"change_type": "MODIFY",
"old_path": "rita_exit/src/rita_loop/mod.rs",
"new_path": "rita_exit/src/rita_loop/mod.rs",
"diff": "//! Two threads are generated by this, one actual worker thread and a watchdog restarting thread that only\n//! wakes up to restart the inner thread if anything goes wrong.... | Rust | Apache License 2.0 | althea-net/althea_rs | Add a config flag to reset all ipv6 database data |
20,243 | 13.10.2022 10:00:08 | 25,200 | 2b3c18ef0ce27779b79cb76e60aac2842b4469f0 | Adjusting wifi names to remove quotes | [
{
"change_type": "MODIFY",
"old_path": "rita_client/src/dashboard/wifi.rs",
"new_path": "rita_client/src/dashboard/wifi.rs",
"diff": "@@ -692,7 +692,7 @@ fn get_wifi_config_internal() -> Result<Vec<WifiInterface>, RitaClientError> {\nfor (k, v) in items {\nif v[\".type\"] == \"wifi-device\" {\nlet m... | Rust | Apache License 2.0 | althea-net/althea_rs | Adjusting wifi names to remove quotes |
20,255 | 17.10.2022 13:39:33 | 25,200 | 17dfcb816162b0f0b6bd72ffb86da058301a208e | Added checks to ensure cluster exits are set up correctly in the config | [
{
"change_type": "MODIFY",
"old_path": "Cargo.lock",
"new_path": "Cargo.lock",
"diff": "@@ -2210,6 +2210,7 @@ dependencies = [\n\"env_logger\",\n\"flate2\",\n\"hex-literal\",\n+ \"ipnetwork\",\n\"jemallocator\",\n\"lazy_static\",\n\"log\",\n"
},
{
"change_type": "MODIFY",
"old_path": "ri... | Rust | Apache License 2.0 | althea-net/althea_rs | Added checks to ensure cluster exits are set up correctly in the config |
20,255 | 18.10.2022 13:30:56 | 25,200 | 6c198b3999ce076de9e57a13c31aadcb478db135 | Delete wg_exit_v2 on startup | [
{
"change_type": "MODIFY",
"old_path": "clu/src/lib.rs",
"new_path": "clu/src/lib.rs",
"diff": "@@ -70,6 +70,10 @@ pub fn cleanup() -> Result<(), NewCluError> {\ntrace!(\"Failed to delete wg_exit {:?}\", e);\n}\n+ if let Err(e) = KI.del_interface(\"wg_exit_v2\") {\n+ trace!(\"Failed to delete wg_exi... | Rust | Apache License 2.0 | althea-net/althea_rs | Delete wg_exit_v2 on startup |
20,255 | 19.10.2022 10:03:54 | 25,200 | 7cd54923c7d94e664008c8dd52fdbf2e7ed60366 | Update rita dockerfile to use posgresql 15 | [
{
"change_type": "MODIFY",
"old_path": "integration-tests/container/Dockerfile",
"new_path": "integration-tests/container/Dockerfile",
"diff": "@@ -6,8 +6,8 @@ RUN apt-get update && apt-get install -y sudo iputils-ping iproute2 jq vim netca\nRUN apt-get install -y -t unstable iperf3\nRUN curl https:... | Rust | Apache License 2.0 | althea-net/althea_rs | Update rita dockerfile to use posgresql 15 |
20,255 | 25.10.2022 12:48:30 | 25,200 | 2aab676230c169fd6f368edc4b7c84b657421c5b | Added 'subnet' to 'root_ip' conversion in rita settings to allow older routers to update to new config format | [
{
"change_type": "MODIFY",
"old_path": "settings/src/client.rs",
"new_path": "settings/src/client.rs",
"diff": "@@ -7,12 +7,15 @@ use crate::{json_merge, set_rita_client, SettingsError};\nuse althea_types::wg_key::WgKey;\nuse althea_types::{ContactStorage, ExitState, Identity};\nuse clarity::Address... | Rust | Apache License 2.0 | althea-net/althea_rs | Added 'subnet' to 'root_ip' conversion in rita settings to allow older routers to update to new config format |
20,244 | 05.11.2022 17:12:07 | 14,400 | 018b20b3dbf4c0ea8f1ae898bc6a02e1b4fa8c0f | Don't log clients on every run | [
{
"change_type": "MODIFY",
"old_path": "rita_exit/src/database/mod.rs",
"new_path": "rita_exit/src/database/mod.rs",
"diff": "@@ -509,7 +509,7 @@ pub fn get_client_interface(\nnew_wg_exit_clients: HashMap<WgKey, SystemTime>,\nwg_exit_clients: HashMap<WgKey, SystemTime>,\n) -> Result<String, RitaExit... | Rust | Apache License 2.0 | althea-net/althea_rs | Don't log clients on every run |
20,259 | 09.11.2022 16:46:28 | 18,000 | 705464fdd5298b01c5cdd6af46f068fffbee48f2 | Add ssh keys to the correct file
The previous ssh key add logic added keys to the wrong file and had a
few other minor logical issues fixed in testing here. | [
{
"change_type": "MODIFY",
"old_path": "rita_client/src/operator_update/mod.rs",
"new_path": "rita_client/src/operator_update/mod.rs",
"diff": "@@ -21,7 +21,7 @@ use rita_common::rita_loop::is_gateway;\nuse rita_common::tunnel_manager::neighbor_status::get_neighbor_status;\nuse rita_common::tunnel_m... | Rust | Apache License 2.0 | althea-net/althea_rs | Add ssh keys to the correct file
The previous ssh key add logic added keys to the wrong file and had a
few other minor logical issues fixed in testing here. |
20,244 | 10.11.2022 15:08:45 | 18,000 | af175007ff44656595763db0cefbbdfa560b631a | Bump for Beta 20 RC4 | [
{
"change_type": "MODIFY",
"old_path": "Cargo.lock",
"new_path": "Cargo.lock",
"diff": "@@ -2186,7 +2186,7 @@ dependencies = [\n[[package]]\nname = \"rita_bin\"\n-version = \"0.20.3\"\n+version = \"0.20.4\"\ndependencies = [\n\"actix 0.13.0\",\n\"actix-web\",\n@@ -2220,7 +2220,7 @@ dependencies = [\... | Rust | Apache License 2.0 | althea-net/althea_rs | Bump for Beta 20 RC4 |
20,244 | 11.11.2022 09:02:44 | 18,000 | 91eef112ad8606476acbba4305b144950cd15a75 | Fix integration tests
Somthing in the unstable packages feed must be breaking dynamic linking,
in this case we can just remove the unstable package feed entierly since
we only needed iperf3 which is now available in the standard package
feeds. | [
{
"change_type": "MODIFY",
"old_path": "integration-tests/container/Dockerfile",
"new_path": "integration-tests/container/Dockerfile",
"diff": "FROM postgres\n-RUN echo \"deb http://deb.debian.org/debian/ unstable main\" > /etc/apt/sources.list.d/unstable.list\n-RUN printf 'Package: *\\nPin: release... | Rust | Apache License 2.0 | althea-net/althea_rs | Fix integration tests
Somthing in the unstable packages feed must be breaking dynamic linking,
in this case we can just remove the unstable package feed entierly since
we only needed iperf3 which is now available in the standard package
feeds. |
20,244 | 30.11.2022 14:55:50 | 18,000 | 5ffc017a6b4eb48e93886c1a75512027455513a0 | Bump for Beta 20 RC5 | [
{
"change_type": "MODIFY",
"old_path": "Cargo.lock",
"new_path": "Cargo.lock",
"diff": "@@ -270,9 +270,9 @@ dependencies = [\n[[package]]\nname = \"aho-corasick\"\n-version = \"0.7.19\"\n+version = \"0.7.20\"\nsource = \"registry+https://github.com/rust-lang/crates.io-index\"\n-checksum = \"b4f55bd9... | Rust | Apache License 2.0 | althea-net/althea_rs | Bump for Beta 20 RC5 |
20,243 | 17.11.2022 10:37:32 | 28,800 | 59ccfda8684e724c9b63f08c51b5b20e4c27868a | Creating new endpoint to grab all lan devices
Endpoint handles parsing ip neigh command from the kernel command as
well as grabbing device names from their dhcp lease. It also attempts
to remove any ip addresses that are not LAN based. | [
{
"change_type": "MODIFY",
"old_path": "Cargo.lock",
"new_path": "Cargo.lock",
"diff": "@@ -301,6 +301,7 @@ dependencies = [\n\"itertools 0.10.5\",\n\"lazy_static\",\n\"log\",\n+ \"mac_address\",\n\"oping\",\n\"regex\",\n\"serde\",\n@@ -718,7 +719,7 @@ version = \"3.2.3\"\nsource = \"registry+https:... | Rust | Apache License 2.0 | althea-net/althea_rs | Creating new endpoint to grab all lan devices
Endpoint handles parsing ip neigh command from the kernel command as
well as grabbing device names from their dhcp lease. It also attempts
to remove any ip addresses that are not LAN based. |
20,244 | 30.11.2022 17:29:48 | 18,000 | 5b710c3bc8b781f83e7dc2cb69b094db1f62b34e | Simplify operator update logic
Now that operator updates are in their own loop we no longer needd any
logic for calling the function more often than we actually want to run
it. | [
{
"change_type": "MODIFY",
"old_path": "rita_client/src/operator_update/mod.rs",
"new_path": "rita_client/src/operator_update/mod.rs",
"diff": "@@ -35,7 +35,6 @@ use std::io::BufRead;\nuse std::io::BufReader;\nuse std::io::Write;\nuse std::os::unix::fs::PermissionsExt;\n-use std::sync::{Arc, RwLock}... | Rust | Apache License 2.0 | althea-net/althea_rs | Simplify operator update logic
Now that operator updates are in their own loop we no longer needd any
logic for calling the function more often than we actually want to run
it. |
20,244 | 30.11.2022 17:33:18 | 18,000 | a20ac82099a93af7926f0fe4cc3beb1b438667f6 | Simplify duration control in all loops
This patch removes code focused on trying to sync up Rita loops to even
seconds, there's both a risk of logic strageness here and it's generally
unjustified complexity. | [
{
"change_type": "MODIFY",
"old_path": "rita_client/src/rita_loop/mod.rs",
"new_path": "rita_client/src/rita_loop/mod.rs",
"diff": "@@ -65,7 +65,7 @@ pub fn metrics_permitted() -> bool {\n}\n// the speed in seconds for the client loop\n-pub const CLIENT_LOOP_SPEED: u64 = 5;\n+pub const CLIENT_LOOP_S... | Rust | Apache License 2.0 | althea-net/althea_rs | Simplify duration control in all loops
This patch removes code focused on trying to sync up Rita loops to even
seconds, there's both a risk of logic strageness here and it's generally
unjustified complexity. |
20,255 | 05.12.2022 12:26:12 | 28,800 | f7c2e727f702e4f9d79a434d225130ff83f7e7bd | Remove cake qdisc that was attached to the end of a client class on the htb qdisc | [
{
"change_type": "MODIFY",
"old_path": "althea_kernel_interface/src/traffic_control.rs",
"new_path": "althea_kernel_interface/src/traffic_control.rs",
"diff": "@@ -397,26 +397,6 @@ impl dyn KernelInterface {\n)));\n}\n- let output = self.run_command(\n- \"tc\",\n- &[\n- \"qdisc\",\n- modifier,\n- \"... | Rust | Apache License 2.0 | althea-net/althea_rs | Remove cake qdisc that was attached to the end of a client class on the htb qdisc |
20,255 | 06.12.2022 14:29:33 | 28,800 | 629a77060093ceda170806f59d75e30742cd5241 | Set flapping threshold to 50%
The flapping thres determines how much better an exit metric needs to be than our current babel metric
in order to switch to it. We set it currently to 50% as a conservative value to ensure flapping doesnt
happen every 15 mins | [
{
"change_type": "MODIFY",
"old_path": "rita_client/src/exit_manager/exit_switcher.rs",
"new_path": "rita_client/src/exit_manager/exit_switcher.rs",
"diff": "@@ -31,6 +31,11 @@ use std::sync::RwLock;\n/// use an exit without swtiching is 15 mins, this values is 15 * 60/5\nconst METRIC_ENTRIES: usize... | Rust | Apache License 2.0 | althea-net/althea_rs | Set flapping threshold to 50%
The flapping thres determines how much better an exit metric needs to be than our current babel metric
in order to switch to it. We set it currently to 50% as a conservative value to ensure flapping doesnt
happen every 15 mins |
20,255 | 07.12.2022 09:42:59 | 28,800 | 4cb7519028bcfd1da40d31da8f03136c35cd4d06 | Send current exit info to OpTools | [
{
"change_type": "MODIFY",
"old_path": "althea_types/src/interop.rs",
"new_path": "althea_types/src/interop.rs",
"diff": "@@ -587,6 +587,14 @@ pub struct ShaperSettings {\npub min_speed: usize,\n}\n+/// This struct is sent up to op to display info related to a routers connect exit there\n+#[derive(D... | Rust | Apache License 2.0 | althea-net/althea_rs | Send current exit info to OpTools |
20,244 | 09.12.2022 18:15:03 | 18,000 | eb8fa7442e1acbb48378a1f67b25e945fd7e815c | Bump for Beta 20rc6 | [
{
"change_type": "MODIFY",
"old_path": "rita_bin/Cargo.toml",
"new_path": "rita_bin/Cargo.toml",
"diff": "[package]\nname = \"rita_bin\"\n-version = \"0.20.5\"\n+version = \"0.20.6\"\nedition = \"2018\"\nlicense = \"Apache-2.0\"\nbuild = \"build.rs\"\n"
},
{
"change_type": "MODIFY",
"old... | Rust | Apache License 2.0 | althea-net/althea_rs | Bump for Beta 20rc6 |
20,253 | 08.12.2022 11:51:57 | 28,800 | b3692e576413feeae9d3363f04b106ff8aa82427 | Add a new container for integration tests | [
{
"change_type": "MODIFY",
"old_path": ".github/workflows/rust.yml",
"new_path": ".github/workflows/rust.yml",
"diff": "@@ -114,3 +114,12 @@ jobs:\nrun: sudo apt-get update && sudo apt install -y wireguard linux-source linux-headers-$(uname -r) build-essential && sudo modprobe wireguard\n- name: Run... | Rust | Apache License 2.0 | althea-net/althea_rs | Add a new container for integration tests |
20,255 | 09.12.2022 11:59:52 | 28,800 | 0ab8eee18a8409d501c2b469a8c26dda88928886 | Display Client public ipv6 addr on Ops | [
{
"change_type": "MODIFY",
"old_path": "althea_types/src/interop.rs",
"new_path": "althea_types/src/interop.rs",
"diff": "@@ -592,7 +592,15 @@ pub struct ShaperSettings {\npub struct CurExitInfo {\npub cluster_name: Option<String>,\npub instance_name: Option<String>,\n- pub instance_ip: Option<Strin... | Rust | Apache License 2.0 | althea-net/althea_rs | Display Client public ipv6 addr on Ops |
20,244 | 15.12.2022 16:32:18 | 18,000 | 6c7eef09af31f5e531846168b0cd58d6c33cb260 | Move tunnel manager GC to slow loop
Tunnel manager gc was in the fast loop in rita common because for some
time we had only migrated the fast loop to async/await. Now that this is
no longer a concern it can be migrated back. | [
{
"change_type": "MODIFY",
"old_path": "rita_common/src/rita_loop/fast_loop.rs",
"new_path": "rita_common/src/rita_loop/fast_loop.rs",
"diff": "@@ -7,16 +7,12 @@ use crate::network_monitor::NetworkInfo as NetworkMonitorTick;\nuse crate::payment_controller::tick_payment_controller;\nuse crate::paymen... | Rust | Apache License 2.0 | althea-net/althea_rs | Move tunnel manager GC to slow loop
Tunnel manager gc was in the fast loop in rita common because for some
time we had only migrated the fast loop to async/await. Now that this is
no longer a concern it can be migrated back. |
20,244 | 16.12.2022 09:07:41 | 18,000 | 9e9cc85100fb7112cfc846815ffe7b9b71caba5f | Remove dead structs from TunnelManager
Not sure how dead code detection didn't get these they aren't marked to
be ignored and are clearly left over from the actix days. | [
{
"change_type": "MODIFY",
"old_path": "rita_common/src/tunnel_manager/mod.rs",
"new_path": "rita_common/src/tunnel_manager/mod.rs",
"diff": "@@ -28,17 +28,12 @@ use std::collections::HashSet;\nuse std::collections::VecDeque;\nuse std::fmt;\nuse std::fmt::Display;\n-use std::fmt::{Formatter, Result ... | Rust | Apache License 2.0 | althea-net/althea_rs | Remove dead structs from TunnelManager
Not sure how dead code detection didn't get these they aren't marked to
be ignored and are clearly left over from the actix days. |
20,244 | 16.12.2022 12:43:36 | 18,000 | dd280f29004b16654d255f5c1c5f393b010b1238 | Refine loop logging
This patch removes redundant log statements and adds timing statements
where they are now more interesting. Mostly this is an artifact of the
actix refactor some actions that used to take a variable amount of time
are now completely uninteresting. | [
{
"change_type": "MODIFY",
"old_path": "rita_common/src/rita_loop/fast_loop.rs",
"new_path": "rita_common/src/rita_loop/fast_loop.rs",
"diff": "@@ -48,17 +48,10 @@ pub fn start_rita_fast_loop() {\nlet babel_port = settings::get_rita_common().network.babel_port;\ntrace!(\"Common tick!\");\n- let star... | Rust | Apache License 2.0 | althea-net/althea_rs | Refine loop logging
This patch removes redundant log statements and adds timing statements
where they are now more interesting. Mostly this is an artifact of the
actix refactor some actions that used to take a variable amount of time
are now completely uninteresting. |
20,244 | 16.12.2022 13:01:22 | 18,000 | 5e832a893df0b9148ce30149dfc778f128cf26ff | Optimize rita fast loop
This increases the parallelism and reduces the number of babel requests
made by the common fast loop. | [
{
"change_type": "MODIFY",
"old_path": "rita_common/src/rita_loop/fast_loop.rs",
"new_path": "rita_common/src/rita_loop/fast_loop.rs",
"diff": "@@ -15,6 +15,7 @@ use actix_async::System as AsyncSystem;\nuse babel_monitor::open_babel_stream;\nuse babel_monitor::parse_neighs;\nuse babel_monitor::parse... | Rust | Apache License 2.0 | althea-net/althea_rs | Optimize rita fast loop
This increases the parallelism and reduces the number of babel requests
made by the common fast loop. |
20,255 | 19.12.2022 11:01:17 | 28,800 | f08c925225c98fe534e2f4587af45cc72a5beea0 | Better Logging
Log when class is deleted. Remove logs that print ip6tables setup sevveral times every tick | [
{
"change_type": "MODIFY",
"old_path": "rita_exit/src/database/mod.rs",
"new_path": "rita_exit/src/database/mod.rs",
"diff": "@@ -472,7 +472,12 @@ pub fn setup_clients(\nex_nic.clone(),\n);\n- info!(\"IPV6: Setup client ip6tables rules with: {:?}\", res);\n+ if res.is_err() {\n+ error!(\n+ \"IPV6 Er... | Rust | Apache License 2.0 | althea-net/althea_rs | Better Logging
Log when class is deleted. Remove logs that print ip6tables setup sevveral times every tick |
20,255 | 20.12.2022 15:43:56 | 28,800 | c755248e3df3dfa6c75de2e11febd15d43aba96c | Add flag to enable/disable enforcement in payment settings | [
{
"change_type": "MODIFY",
"old_path": "rita_common/src/debt_keeper/mod.rs",
"new_path": "rita_common/src/debt_keeper/mod.rs",
"diff": "@@ -574,6 +574,7 @@ impl DebtKeeper {\nlet pay_threshold = get_pay_thresh();\nlet debt_limit_enabled = payment_settings.debt_limit_enabled;\nlet apply_incoming_cred... | Rust | Apache License 2.0 | althea-net/althea_rs | Add flag to enable/disable enforcement in payment settings |
20,244 | 22.12.2022 20:26:32 | 18,000 | bece562772312f3ddf58fbab1679aa91d154d455 | Bump for Beta 20 RC7 | [
{
"change_type": "MODIFY",
"old_path": "Cargo.lock",
"new_path": "Cargo.lock",
"diff": "@@ -2243,7 +2243,7 @@ dependencies = [\n[[package]]\nname = \"rita_bin\"\n-version = \"0.20.6\"\n+version = \"0.20.7\"\ndependencies = [\n\"actix 0.13.0\",\n\"actix-web\",\n@@ -2277,7 +2277,7 @@ dependencies = [\... | Rust | Apache License 2.0 | althea-net/althea_rs | Bump for Beta 20 RC7 |
20,255 | 06.01.2023 10:55:49 | 28,800 | 4ba9b1c1d1335511a3c98774070460423ac36042 | Remove cake codel shaping setup on wg_exit on rita_client | [
{
"change_type": "MODIFY",
"old_path": "althea_kernel_interface/src/exit_client_tunnel.rs",
"new_path": "althea_kernel_interface/src/exit_client_tunnel.rs",
"diff": "@@ -168,8 +168,7 @@ impl dyn KernelInterface {\n)));\n}\n- let _res = self.set_codel_shaping(\"wg_exit\", args.user_specified_speed, t... | Rust | Apache License 2.0 | althea-net/althea_rs | Remove cake codel shaping setup on wg_exit on rita_client |
20,253 | 06.01.2023 17:04:15 | 28,800 | e2d82f1c43e189cf8bb2c95d314056299558bb74 | Fix integration test failing inaccurately | [
{
"change_type": "MODIFY",
"old_path": "scripts/integration-test-v2.sh",
"new_path": "scripts/integration-test-v2.sh",
"diff": "@@ -9,8 +9,9 @@ REPOFOLDER=$DIR/..\ngit archive --format=tar.gz -o $DOCKERFOLDER/rita.tar.gz --prefix=althea_rs/ HEAD\npushd $DOCKERFOLDER\ntime docker build -t integration... | Rust | Apache License 2.0 | althea-net/althea_rs | Fix integration test failing inaccurately |
20,244 | 09.01.2023 12:09:36 | 18,000 | 96bed027d0b013ac8b5eb01fed987e483f033155 | Bump for Beta 20 rc8 | [
{
"change_type": "MODIFY",
"old_path": "Cargo.lock",
"new_path": "Cargo.lock",
"diff": "@@ -395,7 +395,7 @@ dependencies = [\n\"clarity\",\n\"futures 0.3.25\",\n\"log\",\n- \"num 0.4.0\",\n+ \"num\",\n\"num256\",\n\"rand\",\n\"serde\",\n@@ -491,9 +491,9 @@ checksum = \"bef38d45163c2f1dde094a7dfd33cc... | Rust | Apache License 2.0 | althea-net/althea_rs | Bump for Beta 20 rc8 |
20,244 | 17.01.2023 11:35:08 | 18,000 | 2084c24d8ba4d9c7ba6a335703b75252349868d8 | Remove light client functionality
This patch removes the phone based light client funcionality, with our
transition to full LTE based systems how we interact with phones on the
network will change significantly and this code simply isn't useful as
it has no current users. | [
{
"change_type": "MODIFY",
"old_path": "althea_types/src/user_info.rs",
"new_path": "althea_types/src/user_info.rs",
"diff": "@@ -51,9 +51,6 @@ pub struct InstallationDetails {\n/// point to point links going downstream. If the vec is empty there are no\n/// relay antennas\npub relay_antennas: Vec<I... | Rust | Apache License 2.0 | althea-net/althea_rs | Remove light client functionality
This patch removes the phone based light client funcionality, with our
transition to full LTE based systems how we interact with phones on the
network will change significantly and this code simply isn't useful as
it has no current users. |
20,253 | 19.12.2022 13:36:49 | 28,800 | ae40ef8e4797c4d21fbed92dc4bb034a767bf3fa | Add namespaces to new integration test container | [
{
"change_type": "MODIFY",
"old_path": "Cargo.lock",
"new_path": "Cargo.lock",
"diff": "@@ -2649,6 +2649,9 @@ dependencies = [\n[[package]]\nname = \"test_runner\"\nversion = \"0.1.0\"\n+dependencies = [\n+ \"althea_kernel_interface\",\n+]\n[[package]]\nname = \"thiserror\"\n"
},
{
"change_t... | Rust | Apache License 2.0 | althea-net/althea_rs | Add namespaces to new integration test container |
20,253 | 29.12.2022 22:09:08 | 28,800 | 351931ccc7c3810daa77242a12729dab24b3ac20 | Run babel and rita inside namespaces
New threads for babel and rita respectively run these for each namespace and
set the namespace as the thread's owner. | [
{
"change_type": "MODIFY",
"old_path": "Cargo.lock",
"new_path": "Cargo.lock",
"diff": "@@ -79,7 +79,7 @@ dependencies = [\n\"actix-tls\",\n\"actix-utils\",\n\"ahash\",\n- \"base64\",\n+ \"base64 0.13.1\",\n\"bitflags\",\n\"brotli\",\n\"bytes\",\n@@ -233,7 +233,7 @@ checksum = \"6dda62cf04bc3a9ad2ea... | Rust | Apache License 2.0 | althea-net/althea_rs | Run babel and rita inside namespaces
New threads for babel and rita respectively run these for each namespace and
set the namespace as the thread's owner. |
20,253 | 20.01.2023 10:12:59 | 28,800 | 13889e645c0c2b626ad22567f9e4e9149d9dbf26 | Settings add load_from_disk feature
This feature loads and saves RitaClientSettings from a saved file and is meant only for
use in the integration test, where the usual lazy static cannot be used as multiple
instances of rita hosted in threads all try to access the same version of settings. | [
{
"change_type": "MODIFY",
"old_path": "integration_tests_v2/container/Dockerfile",
"new_path": "integration_tests_v2/container/Dockerfile",
"diff": "@@ -10,4 +10,4 @@ RUN cd /var/babeld/babeld && make install\n# note that changes have to be checked in to be pulled in and tested! we pull this in nea... | Rust | Apache License 2.0 | althea-net/althea_rs | Settings add load_from_disk feature
This feature loads and saves RitaClientSettings from a saved file and is meant only for
use in the integration test, where the usual lazy static cannot be used as multiple
instances of rita hosted in threads all try to access the same version of settings. |
20,253 | 24.01.2023 10:18:52 | 28,800 | 9589a2e28b1a525a4ebc4972d92f88ad0f068c71 | Update rita-test.toml to be compatible with new integration test | [
{
"change_type": "MODIFY",
"old_path": "scripts/rita-test.toml",
"new_path": "scripts/rita-test.toml",
"diff": "@@ -11,9 +11,8 @@ babel_port = 6872\nrita_hello_port = 4876\nrita_contact_port = 4874\nrita_dashboard_port = 4877\n-wg_private_key = \"priv\"\n+rita_tick_interval = 5\nwg_private_key_path ... | Rust | Apache License 2.0 | althea-net/althea_rs | Update rita-test.toml to be compatible with new integration test |
20,255 | 25.01.2023 12:53:00 | 28,800 | e71319ceebe0ad9926f45075763032b617df4c41 | Fix exit manager exit change bug
When an exit is manually changed, the last exit also changes and doesnt trigger teh
linux setup exit tunnel function. Storing this in a lazy static instead of derviving each tick
should account for manual changes to exits | [
{
"change_type": "MODIFY",
"old_path": "rita_client/src/exit_manager/mod.rs",
"new_path": "rita_client/src/exit_manager/mod.rs",
"diff": "@@ -85,6 +85,16 @@ pub struct ExitManager {\npub selected_exit_list: HashMap<String, SelectedExit>,\n/// Every tick we query an exit endpoint to get a list of exi... | Rust | Apache License 2.0 | althea-net/althea_rs | Fix exit manager exit change bug
When an exit is manually changed, the last exit also changes and doesnt trigger teh
linux setup exit tunnel function. Storing this in a lazy static instead of derviving each tick
should account for manual changes to exits |
20,255 | 25.01.2023 14:49:54 | 28,800 | bc5a5049324cf7763164c7ef5fa477e9b443a484 | Fix bug in payment validator
Calling HISTORY lock twice in a function leads to a deadlock | [
{
"change_type": "MODIFY",
"old_path": "rita_common/src/payment_validator/mod.rs",
"new_path": "rita_common/src/payment_validator/mod.rs",
"diff": "@@ -99,8 +99,8 @@ impl Default for PaymentValidator {\n}\n/// This stores payments of all tx that we sent to different nodes.\n-pub fn store_payment(pmt... | Rust | Apache License 2.0 | althea-net/althea_rs | Fix bug in payment validator
Calling HISTORY lock twice in a function leads to a deadlock |
20,255 | 26.01.2023 12:56:14 | 28,800 | f8aaefd1f0e054b5f3181b22564ee85031009597 | Restructure payment validator to use atomic setters/getters for lazy static | [
{
"change_type": "MODIFY",
"old_path": "rita_common/src/payment_validator/mod.rs",
"new_path": "rita_common/src/payment_validator/mod.rs",
"diff": "@@ -82,6 +82,43 @@ pub struct PaymentValidator {\nsuccessful_transactions: HashSet<Uint256>,\n}\n+// Setters and getters HISTORY lazy static\n+pub fn ad... | Rust | Apache License 2.0 | althea-net/althea_rs | Restructure payment validator to use atomic setters/getters for lazy static |
20,244 | 28.01.2023 07:19:44 | 18,000 | 9f94b080c070b67e848d101fc6e5da5b17ced0de | Bump for Beta 20 RC9 | [
{
"change_type": "MODIFY",
"old_path": "rita_bin/Cargo.toml",
"new_path": "rita_bin/Cargo.toml",
"diff": "[package]\nname = \"rita_bin\"\n-version = \"0.20.8\"\n+version = \"0.20.9\"\nedition = \"2018\"\nlicense = \"Apache-2.0\"\nbuild = \"build.rs\"\n"
},
{
"change_type": "MODIFY",
"old... | Rust | Apache License 2.0 | althea-net/althea_rs | Bump for Beta 20 RC9 |
20,255 | 31.01.2023 09:52:52 | 28,800 | 2fd7ec0ff89381abd99d05af829a43ab8b66558e | Remove return on status error for opkg update
Output of opkg update always returns an error since opkg cannot download our customfeed url. Returning in this case would not run
opkg install and stop the update process. We should continue to try to run opkg even after an error | [
{
"change_type": "MODIFY",
"old_path": "Cargo.lock",
"new_path": "Cargo.lock",
"diff": "@@ -2195,7 +2195,7 @@ dependencies = [\n[[package]]\nname = \"rita_bin\"\n-version = \"0.20.8\"\n+version = \"0.20.9\"\ndependencies = [\n\"actix 0.13.0\",\n\"actix-web\",\n@@ -2229,7 +2229,7 @@ dependencies = [\... | Rust | Apache License 2.0 | althea-net/althea_rs | Remove return on status error for opkg update
Output of opkg update always returns an error since opkg cannot download our customfeed url. Returning in this case would not run
opkg install and stop the update process. We should continue to try to run opkg even after an error |
20,244 | 31.01.2023 15:24:48 | 18,000 | c93c7b6bd3e973fb2ad1ed674f95c665689a1df4 | Bump for Beta 20 RC10 | [
{
"change_type": "MODIFY",
"old_path": "Cargo.lock",
"new_path": "Cargo.lock",
"diff": "@@ -69,9 +69,9 @@ dependencies = [\n[[package]]\nname = \"actix-http\"\n-version = \"3.2.2\"\n+version = \"3.3.0\"\nsource = \"registry+https://github.com/rust-lang/crates.io-index\"\n-checksum = \"0c83abf9903e1f... | Rust | Apache License 2.0 | althea-net/althea_rs | Bump for Beta 20 RC10 |
20,247 | 02.02.2023 21:26:35 | 28,800 | d59393547955b7c090c679e7d7da1af9c82b7473 | fix wire_enabled bug
The value was lost in translation when converting from the Op Tools response to the local settings. The merge_settings_safely fn was previously just dropping the new values. It now actually merges them into settings which are then saved to memory later. | [
{
"change_type": "MODIFY",
"old_path": "rita_client/src/operator_update/mod.rs",
"new_path": "rita_client/src/operator_update/mod.rs",
"diff": "@@ -245,7 +245,9 @@ pub async fn operator_update() {\noperator.operator_fee = new_operator_fee;\noperator.installation_details = None;\nrita_client.operator... | Rust | Apache License 2.0 | althea-net/althea_rs | fix wire_enabled bug
The value was lost in translation when converting from the Op Tools response to the local settings. The merge_settings_safely fn was previously just dropping the new values. It now actually merges them into settings which are then saved to memory later. |
20,244 | 03.02.2023 17:48:34 | 18,000 | 8b4d1193c688723a60e21cba08b831df580fc97a | Filter out pbs-wlan
This fitler is required for light client specific interfaces and network
configurations. New firmware builds no longer have this interface but
old firmware builds still have it around. So we need to keep filtering
it until they have totally turned over. Somthing that will take years at
least. | [
{
"change_type": "MODIFY",
"old_path": "rita_client/src/dashboard/interfaces.rs",
"new_path": "rita_client/src/dashboard/interfaces.rs",
"diff": "@@ -71,12 +71,22 @@ pub fn get_interfaces() -> Result<HashMap<String, InterfaceMode>, RitaClientErro\n// it's a list and we need to handle that\nif value.... | Rust | Apache License 2.0 | althea-net/althea_rs | Filter out pbs-wlan
This fitler is required for light client specific interfaces and network
configurations. New firmware builds no longer have this interface but
old firmware builds still have it around. So we need to keep filtering
it until they have totally turned over. Somthing that will take years at
least. |
20,253 | 03.02.2023 10:20:42 | 28,800 | 19e044300025fd7aeef98b21c2a9242998f79d84 | Add test routes to the integration test environment
test_routes tests setup of babel routes within the network, based on
the current hard coded setup of 5-node config. | [
{
"change_type": "MODIFY",
"old_path": "Cargo.lock",
"new_path": "Cargo.lock",
"diff": "@@ -893,6 +893,12 @@ dependencies = [\n\"instant\",\n]\n+[[package]]\n+name = \"fixedbitset\"\n+version = \"0.4.2\"\n+source = \"registry+https://github.com/rust-lang/crates.io-index\"\n+checksum = \"0ce7134b9999... | Rust | Apache License 2.0 | althea-net/althea_rs | Add test routes to the integration test environment
test_routes tests setup of babel routes within the network, based on
the current hard coded setup of 5-node config. |
244,071 | 23.01.2017 11:58:37 | 0 | a14c4f3d5a99dfea6b2dd216087b1075a2b2e90c | Added support for SBT based builds | [
{
"change_type": "MODIFY",
"old_path": "README.md",
"new_path": "README.md",
"diff": "@@ -178,6 +178,47 @@ android {\nCurrently, the generated `classpath.txt` does not contain android platform library, e.g., `/opt/android-sdk-linux/platforms/android-23/android.jar`. You would need to add it manually... | Java | MIT License | georgewfraser/java-language-server | Added support for SBT based builds |
244,057 | 07.09.2018 21:44:20 | 14,400 | 9ef02db431615fdd1462a8c48cfdcea22f5b1f72 | Check for drive-letter prefixed paths | [
{
"change_type": "MODIFY",
"old_path": "src/main/java/org/javacs/ChildFirstClassLoader.java",
"new_path": "src/main/java/org/javacs/ChildFirstClassLoader.java",
"diff": "@@ -8,6 +8,8 @@ import java.nio.file.Paths;\nimport java.util.Arrays;\nimport java.util.logging.Logger;\n+import org.javacs.Urls;\... | Java | MIT License | georgewfraser/java-language-server | Check for drive-letter prefixed paths |
244,057 | 07.09.2018 22:26:06 | 14,400 | c3be00697f80c5749df7ea03231287dc05428776 | Account for backslashes | [
{
"change_type": "MODIFY",
"old_path": "src/main/java/org/javacs/Urls.java",
"new_path": "src/main/java/org/javacs/Urls.java",
"diff": "@@ -13,11 +13,12 @@ public final class Urls {\nelse\nreturn new URL(path);\n} catch (MalformedURLException e) {\n- throw new RuntimeException(e);\n+ throw new Runti... | Java | MIT License | georgewfraser/java-language-server | Account for backslashes |
244,057 | 08.09.2018 00:04:23 | 14,400 | 10b0e69d7fa9aef647a78150d4aa81338dd9ada9 | Add missing visibility modifier | [
{
"change_type": "MODIFY",
"old_path": "src/main/java/org/javacs/Urls.java",
"new_path": "src/main/java/org/javacs/Urls.java",
"diff": "@@ -25,7 +25,7 @@ public final class Urls {\n}\n}\n- static boolean isSystemPath(String path) {\n+ private static boolean isSystemPath(String path) {\nreturn path.s... | Java | MIT License | georgewfraser/java-language-server | Add missing visibility modifier |
244,057 | 09.09.2018 16:20:15 | 14,400 | 9998081cd796fbb9cc940f39e72ad20ceaa80552 | Remove unecessary OS-dependent tests. | [
{
"change_type": "MODIFY",
"old_path": "src/test/java/org/javacs/UrlsTest.java",
"new_path": "src/test/java/org/javacs/UrlsTest.java",
"diff": "@@ -2,9 +2,6 @@ package org.javacs;\nimport static org.hamcrest.CoreMatchers.containsString;\nimport static org.hamcrest.CoreMatchers.equalTo;\n-import stat... | Java | MIT License | georgewfraser/java-language-server | Remove unecessary OS-dependent tests. |
244,052 | 01.01.2019 21:27:25 | 18,000 | 989cdfa4e7958ef56979706723244c2f06203070 | fix: adding java module exports for LSP | [
{
"change_type": "MODIFY",
"old_path": "src/main/java/module-info.java",
"new_path": "src/main/java/module-info.java",
"diff": "@@ -6,4 +6,5 @@ open module javacs {\nrequires gson;\nuses javax.tools.JavaCompiler;\n+ exports org.javacs.lsp;\n}\n"
},
{
"change_type": "ADD",
"old_path": nul... | Java | MIT License | georgewfraser/java-language-server | fix: adding java module exports for LSP |
244,052 | 01.01.2019 21:27:52 | 18,000 | 03c11ab291eebe0ffd71a4b391ec692989fdba85 | Adding support for textDocument/documentLink | [
{
"change_type": "MODIFY",
"old_path": "src/main/java/org/javacs/lsp/DocumentLinkParams.java",
"new_path": "src/main/java/org/javacs/lsp/DocumentLinkParams.java",
"diff": "package org.javacs.lsp;\npublic class DocumentLinkParams {\n+ public TextDocumentIdentifier textDocument;\n+ public DocumentLink... | Java | MIT License | georgewfraser/java-language-server | Adding support for textDocument/documentLink |
244,059 | 05.02.2019 17:37:36 | 18,000 | 6cff7e1266e71c73c07dad1712e678004452901f | Turning off the ANSI control sequences which causes dependency resolution issues on some systems | [
{
"change_type": "MODIFY",
"old_path": "src/main/java/org/javacs/InferConfig.java",
"new_path": "src/main/java/org/javacs/InferConfig.java",
"diff": "@@ -283,6 +283,7 @@ class InferConfig {\nvar command =\nList.of(\ngetMvnCommand(),\n+ \"--batch-mode\", // Turns off ANSI control sequences\n\"validat... | Java | MIT License | georgewfraser/java-language-server | Turning off the ANSI control sequences which causes dependency resolution issues on some systems |
244,061 | 17.02.2019 23:57:45 | 0 | d343f43f51925514cdf69931c178c387afd9b5f1 | Add installation instructions for vim
What
===
Add installation instructions for vim using the vim plugin vim-lsc.
Why
===
This tool works great in vim but it isn't straight forward setting it
up. These instructions will help others get off the ground using this
tool with vim. | [
{
"change_type": "MODIFY",
"old_path": "README.md",
"new_path": "README.md",
"diff": "# Language Server for Java using the [Java compiler API](https://docs.oracle.com/javase/10/docs/api/jdk.compiler-summary.html)\n-A Java [language server](https://github.com/Microsoft/vscode-languageserver-protocol)... | Java | MIT License | georgewfraser/java-language-server | Add installation instructions for vim
What
===
Add installation instructions for vim using the vim plugin vim-lsc.
Why
===
This tool works great in vim but it isn't straight forward setting it
up. These instructions will help others get off the ground using this
tool with vim. |
244,061 | 17.02.2019 21:15:59 | 0 | db0146d2b85fd81d96766dafa92416eb3866cba1 | Make existing scripts work with linux | [
{
"change_type": "DELETE",
"old_path": "scripts/link_debian.sh",
"new_path": null,
"diff": "-#!/bin/bash\n-# Links everything into a self-contained executable using jlink.\n-\n-set -e\n-\n-# Needed if you have a java version other than 11 as default\n-JAVA_HOME='/usr/lib/jvm/java-11-openjdk-amd64'\n... | Java | MIT License | georgewfraser/java-language-server | Make existing scripts work with linux |
244,061 | 17.02.2019 21:17:58 | 0 | c6b1550e0d70b8ed3d454a5a058e7e205e3843fa | Use the java home set earlier as the real java home | [
{
"change_type": "MODIFY",
"old_path": "scripts/link_windows.sh",
"new_path": "scripts/link_windows.sh",
"diff": "@@ -32,8 +32,8 @@ if [ ! -e jdks/windows/jdk-11.0.1 ]; then\nfi\n# Set env variables to build with mac toolchain but windows target\n+REAL_JAVA_HOME=$JAVA_HOME\nJAVA_HOME=\"./jdks/window... | Java | MIT License | georgewfraser/java-language-server | Use the java home set earlier as the real java home |
244,061 | 18.02.2019 01:47:57 | 0 | 4dab3d97c069313e6d497c77162965f7464e50cb | Change to just check java version | [
{
"change_type": "MODIFY",
"old_path": "scripts/benchmark.sh",
"new_path": "scripts/benchmark.sh",
"diff": "#!/bin/bash\n-# Needed if you have a java version other than 11 as default\n-JAVA_HOME=$(/usr/libexec/java_home -v 11)\n+# Check JAVA_HOME points to correct java version\n+./scripts/check_java... | Java | MIT License | georgewfraser/java-language-server | Change to just check java version |
244,061 | 18.02.2019 01:52:55 | 0 | a0e414cdef08fc68786f32edfeac91005a794dd6 | Error if java binary doesn't exist | [
{
"change_type": "MODIFY",
"old_path": "scripts/check_java_home.sh",
"new_path": "scripts/check_java_home.sh",
"diff": "set -e\nif [[ -z \"${JAVA_HOME}\" ]]; then\n- echo \"error: JAVA_HOME must be set\"\n+ echo \"JAVA_HOME must be set\"\nexit 1\nfi\necho \"JAVA_HOME is set to: $JAVA_HOME\"\n+if [ !... | Java | MIT License | georgewfraser/java-language-server | Error if java binary doesn't exist |
244,061 | 06.03.2019 07:09:59 | 0 | c672bfae82ee2cb46f5c604a0ad7aa5fc028474a | Support other locations for finding src.zip
What
===
Support other locations for finding src.zip so that it is found it if
lives at either:
- JAVA_HOME/lib/src.zip
- JAVA_HOME/src.zip
Why
===
I've observed in testing that some installations of JVMs include src.zip
in the root, others in a lib/src.zip. | [
{
"change_type": "MODIFY",
"old_path": "src/main/java/org/javacs/Lib.java",
"new_path": "src/main/java/org/javacs/Lib.java",
"diff": "@@ -3,18 +3,25 @@ package org.javacs;\nimport java.io.File;\nimport java.lang.System;\nimport java.util.Optional;\n+import java.util.Arrays;\nimport java.nio.file.*;\... | Java | MIT License | georgewfraser/java-language-server | Support other locations for finding src.zip
What
===
Support other locations for finding src.zip so that it is found it if
lives at either:
- JAVA_HOME/lib/src.zip
- JAVA_HOME/src.zip
Why
===
I've observed in testing that some installations of JVMs include src.zip
in the root, others in a lib/src.zip. |
244,061 | 06.03.2019 07:21:12 | 0 | edae08737d4552283be500714830e14c05a14351 | Only include docs if they are not blank
Sometimes the docs are present but an empty string. Lets not add it
unless there's actually text to add. This presents the data a little
better to clients since clients don't get an empty MarkedString. | [
{
"change_type": "MODIFY",
"old_path": "src/main/java/org/javacs/JavaLanguageServer.java",
"new_path": "src/main/java/org/javacs/JavaLanguageServer.java",
"diff": "@@ -32,6 +32,7 @@ import java.util.Optional;\nimport java.util.Set;\nimport java.util.StringJoiner;\nimport java.util.UUID;\n+import jav... | Java | MIT License | georgewfraser/java-language-server | Only include docs if they are not blank
Sometimes the docs are present but an empty string. Lets not add it
unless there's actually text to add. This presents the data a little
better to clients since clients don't get an empty MarkedString. |
244,073 | 21.06.2019 18:07:48 | -3,600 | 1bcf6d74c6d8251cda5672ab934b6ba9ddbb2622 | Allow JDK versions higher than 11 | [
{
"change_type": "MODIFY",
"old_path": "scripts/check_java_home.sh",
"new_path": "scripts/check_java_home.sh",
"diff": "@@ -16,9 +16,9 @@ if [ ! -f \"$JAVA_HOME/bin/java\" ]; then\nfi\njava_version=$(\"$JAVA_HOME/bin/java\" -version 2>&1 | sed -n ';s/.* version \"\\(.*\\)\\.\\(.*\\)\\..*\".*/\\1/p;'... | Java | MIT License | georgewfraser/java-language-server | Allow JDK versions higher than 11 |
244,060 | 18.07.2019 16:58:53 | -7,200 | cc1a3e74a02552aaaa93ea22877ac10a8662fcd6 | Correctly verify that directory witch ends with `.java` is not a java file. | [
{
"change_type": "MODIFY",
"old_path": "src/main/java/org/javacs/FileStore.java",
"new_path": "src/main/java/org/javacs/FileStore.java",
"diff": "@@ -353,7 +353,7 @@ class FileStore {\n// because it doesn't realize there are already up-to-date .class files.\n// The better solution would be for java-... | Java | MIT License | georgewfraser/java-language-server | Correctly verify that directory witch ends with `.java` is not a java file. (#103) |
244,054 | 22.10.2019 21:43:17 | 25,200 | 195778f559ce8eb3f1778b157ce32cd1bdf33ae3 | Add some prerequisites to the Installing section. | [
{
"change_type": "MODIFY",
"old_path": "README.md",
"new_path": "README.md",
"diff": "@@ -171,7 +171,15 @@ The java service process will output a log file to stderr, which is visible in V\n### Installing\n-If you have npm and maven installed, you should be able to install locally using\n+Before inst... | Java | MIT License | georgewfraser/java-language-server | Add some prerequisites to the Installing section. (#120) |
244,058 | 15.11.2019 22:23:40 | 28,800 | 564f167eebd2345cf03f1517d17eb59f3bcb87c0 | Fix go-to-interface | [
{
"change_type": "MODIFY",
"old_path": "src/main/java/org/javacs/CompileBatch.java",
"new_path": "src/main/java/org/javacs/CompileBatch.java",
"diff": "@@ -241,7 +241,11 @@ class CompileBatch implements AutoCloseable {\npublic static final List<TreePath> CODE_NOT_FOUND = List.of();\nList<TreePath> d... | Java | MIT License | georgewfraser/java-language-server | Fix go-to-interface |
244,058 | 15.11.2019 22:27:36 | 28,800 | b9d644fbb70c38c96fc241ae2ec7fd50d16ea55a | Color interface | [
{
"change_type": "MODIFY",
"old_path": "lib/treeSitterColor.ts",
"new_path": "lib/treeSitterColor.ts",
"diff": "@@ -45,7 +45,7 @@ export function colorJava(root: Parser.SyntaxNode, visibleRanges: { start: numbe\ncase 'identifier':\nconst parent = parents[parents.length-1];\n// If this identifier is ... | Java | MIT License | georgewfraser/java-language-server | Color interface |
244,058 | 15.11.2019 22:40:12 | 28,800 | ac7fef4e7e56fb4434c5ad478216c2ee16b212cc | Detect unused args | [
{
"change_type": "MODIFY",
"old_path": "src/main/java/org/javacs/WarnUnused.java",
"new_path": "src/main/java/org/javacs/WarnUnused.java",
"diff": "@@ -97,14 +97,22 @@ class WarnUnused extends TreeScanner<Void, Void> {\n}\nprivate boolean isLocalVariable(TreePath path) {\n- if (path.getLeaf() instan... | Java | MIT License | georgewfraser/java-language-server | Detect unused args |
244,058 | 15.11.2019 23:14:39 | 28,800 | 1f7d693d6a2490a83e9be465eed73b7aec31a2c1 | Rename variable code action | [
{
"change_type": "MODIFY",
"old_path": "src/main/java/org/javacs/CompileBatch.java",
"new_path": "src/main/java/org/javacs/CompileBatch.java",
"diff": "@@ -140,7 +140,7 @@ class CompileBatch implements AutoCloseable {\n}\nprivate boolean okUnused(Name name) {\n- return name.charAt(0) == '_'; // TODO... | Java | MIT License | georgewfraser/java-language-server | Rename variable code action |
244,058 | 16.11.2019 09:13:32 | 28,800 | 66a3f97f01eec780f740f8c7d02cf1a6033e0093 | Restart compiler as needed | [
{
"change_type": "MODIFY",
"old_path": "TODOS.md",
"new_path": "TODOS.md",
"diff": "- Restart debug test doesn't work\n- Javac doesn't find protobuf classes in bazel\n- Replace <a href=...>text</a> with text in docs, see List.copyOf for example.\n-- When no overload is matched, go-to all definitions... | Java | MIT License | georgewfraser/java-language-server | Restart compiler as needed |
244,058 | 16.11.2019 12:49:25 | 28,800 | 77fd932fab1100c73fd2d7623a2a6dd5fce240c9 | Simplify go-to | [
{
"change_type": "MODIFY",
"old_path": "TODOS.md",
"new_path": "TODOS.md",
"diff": "- Package template of new package which is sibling of existing package shows sibling + leaf, not parent + leaf.\n- `Thing#close()` shows 0 references for `try (thing)`\n- Changing `class Foo {}` to `static class Foo ... | Java | MIT License | georgewfraser/java-language-server | Simplify go-to |
244,058 | 16.11.2019 12:57:14 | 28,800 | 24e00043b0b6d14faf92df615402020623a2173a | Ignore static imports | [
{
"change_type": "MODIFY",
"old_path": "src/main/java/org/javacs/CompileBatch.java",
"new_path": "src/main/java/org/javacs/CompileBatch.java",
"diff": "@@ -336,6 +336,7 @@ class CompileBatch implements AutoCloseable {\n// Take the intersection of existing imports ^ existing identifiers\nvar qualifie... | Java | MIT License | georgewfraser/java-language-server | Ignore static imports |
244,058 | 16.11.2019 15:33:18 | 28,800 | 6877dfc1989f73402742d7c976b697c9b0ca4f11 | Skip invalid diags | [
{
"change_type": "MODIFY",
"old_path": "src/main/java/org/javacs/CompileBatch.java",
"new_path": "src/main/java/org/javacs/CompileBatch.java",
"diff": "@@ -155,6 +155,7 @@ class CompileBatch implements AutoCloseable {\nif (source == null) continue;\nvar path = Paths.get(source.toUri());\nif (!file.e... | Java | MIT License | georgewfraser/java-language-server | Skip invalid diags |
244,058 | 16.11.2019 16:26:50 | 28,800 | c3ebbf0cd46f2640b27ee18a239fa0c190fd18f7 | Move prepend _ into Refactor | [
{
"change_type": "MODIFY",
"old_path": "TODOS.md",
"new_path": "TODOS.md",
"diff": "- `return json.get(\"name\").` doesn't auto-complete\n- `return \"foo\"\\n.` doesn't auto-complete\n- Restart debug test doesn't work\n-- Javac doesn't find protobuf classes in bazel\n- Replace <a href=...>text</a> w... | Java | MIT License | georgewfraser/java-language-server | Move prepend _ into Refactor |
244,058 | 16.11.2019 18:58:03 | 28,800 | 760063e362fb826a411dd3c5f340b7a6e7e704ba | More complex refactoring | [
{
"change_type": "MODIFY",
"old_path": "TODOS.md",
"new_path": "TODOS.md",
"diff": "- Delete unused tree\n- Fix imports\n- Create method\n+ - Implement abstract methods\n+ - static, final are redundant in interfaces inners\n- Selection\n- Extract constant\n- Extract variable\n"
},
{
"change_... | Java | MIT License | georgewfraser/java-language-server | More complex refactoring |
244,058 | 16.11.2019 19:07:17 | 28,800 | 47f39ff7d7abc0a287107c60cd770c031a504c8f | Make more selective | [
{
"change_type": "MODIFY",
"old_path": "src/main/java/org/javacs/Refactor.java",
"new_path": "src/main/java/org/javacs/Refactor.java",
"diff": "package org.javacs;\n+import com.sun.source.tree.Tree;\nimport com.sun.source.tree.VariableTree;\nimport com.sun.source.util.TreePath;\nimport java.util.Lis... | Java | MIT License | georgewfraser/java-language-server | Make more selective |
244,058 | 16.11.2019 19:22:46 | 28,800 | 4589a56f1832d7f454d43d9e4e7d4611dcf2359b | Convert-to-block refactor | [
{
"change_type": "MODIFY",
"old_path": "src/main/java/org/javacs/FindRange.java",
"new_path": "src/main/java/org/javacs/FindRange.java",
"diff": "@@ -3,7 +3,6 @@ package org.javacs;\nimport com.sun.source.tree.*;\nimport com.sun.source.util.*;\nimport java.util.Objects;\n-import java.util.logging.Lo... | Java | MIT License | georgewfraser/java-language-server | Convert-to-block refactor |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.