diff --git a/.github/ISSUE_TEMPLATE/query-request.md b/.github/ISSUE_TEMPLATE/query-request.md index e65fb64..75af657 100644 --- a/.github/ISSUE_TEMPLATE/query-request.md +++ b/.github/ISSUE_TEMPLATE/query-request.md @@ -8,12 +8,12 @@ assignees: mohayemin --- **A one-line English description of the query.** -Ex. List all code changes having one-to-many function call replacement. +Ex. List all migrations having code changes. This should be the same as what you described in the issue title. **(Optional) if the one-line description seems insufficient, describe the query further.** **Proposed query syntax** ```bash -python pymigbench.py list -dt cc -f program_element="function call" cardinality="1-n" +python pymigbench.py list -dt mg -f code_changes=<> ``` diff --git a/CONTRIBUTING.md b/CONTRIBUTING.md index cfb8938..46e0ea5 100644 --- a/CONTRIBUTING.md +++ b/CONTRIBUTING.md @@ -5,12 +5,9 @@ Please follow this document to find the best way you can contribute. ## Submit new migration data We will be happy to include manually validated Python library migration data in PyMigBench. Please [submit a data request](https://github.com/ualberta-smr/PyMigBench/issues/new?template=data-request.md) and attach your dataset to the issue. -We currently support three types of data: library pairs, migrations and code changes. -You can submit only library pairs or library pairs and migrations or all three types of data. +We currently support two types of data: library pairs and migrations. The data should be in YAML format as described in our [dataset page](https://ualberta-smr.github.io/PyMigBench/dataset). -Alternatively, you can submit one CSV file per dataset, where each row represents one item. -The header should be same as the properties in the YAML files. -Please leave the IDs blank. +Please leave the IDs blank as we will assign them. We will review your data and add it to the benchmark, or contact you if there are any issues. diff --git a/README.md b/README.md index ef474b8..aa60aac 100644 --- a/README.md +++ b/README.md @@ -1,12 +1,5 @@ # PyMigBench -Library migration is the process of replacing one library with another in a client project. -_PyMigBench_ is a benchmark of Python Library Migration that we developed in the paper: -> Mohayeminul Islam, Ajay Kumar Jha, Sarah Nadi. -> PyMigBench and PyMigTax: A Benchmark and Taxonomy for Python Library Migration. -> _Empirical Software Engineering (Under Review)_. +PyMigBench is a benchmark of Python Library Migrations. +This repository contains the dataset and the tool to access the dataset. +This repository contains the benchmark data and the source code of the tool to explore the data. Please visit [the PyMigBench website](https://ualberta-smr.github.io/PyMigBench) to learn more about the dataset and the tool. -Other than the benchmark, we also developed _PyMigTax_, -a taxonomy of the migration related code changes that we include in PyMigBench. -Please read the [preprint version of the paper](https://arxiv.org/abs/2207.01124) to learn more about PyMigBench and PyMigTax. - -This repository contains the benchmark data and the tools to explore the data. Please visit [the PyMigBench website](https://ualberta-smr.github.io/PyMigBench) to learn more about the dataset and the tool. diff --git a/code/core/Arguments.py b/code/core/Arguments.py index a5c84e8..3fc5906 100644 --- a/code/core/Arguments.py +++ b/code/core/Arguments.py @@ -35,7 +35,7 @@ def build_arguments() -> Arguments: parser.add_argument("-d", "-dt", "--data-types", nargs='+', help="The data types that you want to fetch. " "Different queries accept different numbers of arguments.", - choices=["all", "lp", "mg", "cc"]) + choices=["all", "lp", "mg"]) parser.add_argument("-f", "--filters", required=False, nargs='+', help="Additional filters. The format varies based on the query.") parser.add_argument("-o", "--output-format", required=False, default="yaml", diff --git a/code/core/Constants.py b/code/core/Constants.py index 7725c57..6ce48c0 100644 --- a/code/core/Constants.py +++ b/code/core/Constants.py @@ -1,11 +1,9 @@ LibPairKey = "lp" MigrationKey = "mg" -CodeChangeKey = "cc" -DataTypeKeys = [LibPairKey, MigrationKey, CodeChangeKey] +DataTypeKeys = [LibPairKey, MigrationKey] DataTypeName = { LibPairKey: "library pair", - MigrationKey: "migration", - CodeChangeKey: "code change" + MigrationKey: "migration" } diff --git a/code/db/CodeChange.py b/code/db/CodeChange.py deleted file mode 100644 index 37ebe41..0000000 --- a/code/db/CodeChange.py +++ /dev/null @@ -1,15 +0,0 @@ -from db.DataItem import DataItem - - -class CodeChange(DataItem): - repo: str - commit: str - source: str - target: str - pair_id: str - file_path: str - program_element: str - cardinality: str - properties: list[str] - source_version_line: str - target_version_line: str diff --git a/code/db/Db.py b/code/db/Db.py index f4e03f2..075d3a9 100644 --- a/code/db/Db.py +++ b/code/db/Db.py @@ -4,15 +4,13 @@ import yaml -from core.Constants import CodeChangeKey, MigrationKey, LibPairKey -from db.CodeChange import CodeChange +from core.Constants import MigrationKey, LibPairKey from db.DataItem import DataItem from db.LibPair import LibPair from db.Migration import Migration class Db: - code_changes: dict[str, CodeChange] migrations: dict[str, Migration] lib_pairs: dict[str, LibPair] _mapping: dict[str, dict[str, DataItem]] @@ -21,11 +19,9 @@ def __init__(self, data_root: str): self.data_root = data_root def load(self): - self.code_changes = self.load_items("codechange", CodeChange) self.migrations = self.load_items("migration", Migration) self.lib_pairs = self.load_items("libpair", LibPair) self._mapping = { - CodeChangeKey: self.code_changes, MigrationKey: self.migrations, LibPairKey: self.lib_pairs, } diff --git a/code/db/Migration.py b/code/db/Migration.py index 3e3ec7d..0573fa6 100644 --- a/code/db/Migration.py +++ b/code/db/Migration.py @@ -8,3 +8,9 @@ class Migration(DataItem): commit: str pair_id: str commit_message: str + code_changes: list + + +class CodeChange: + filepath: str + lines: list[str] diff --git a/code/format/JSONFormat.py b/code/format/JSONFormat.py index ef0b871..440ff2f 100644 --- a/code/format/JSONFormat.py +++ b/code/format/JSONFormat.py @@ -5,5 +5,5 @@ class JSONFormat(OutputFormat): - def format(self, result: Result): - return json.dumps(result, indent=2, sort_keys=False, default=vars) + def format_impl(self, result: Result): + return json.dumps(result.items, indent=2, sort_keys=False, default=vars) diff --git a/code/format/OutputFormat.py b/code/format/OutputFormat.py index 73527be..2151f4c 100644 --- a/code/format/OutputFormat.py +++ b/code/format/OutputFormat.py @@ -4,6 +4,11 @@ class OutputFormat(ABC): - @abstractmethod def format(self, result: Result): + count = f"{result.count} items returned" + output = f"{count}\n\n{self.format_impl(result)}\n{count}\n" + return output + + @abstractmethod + def format_impl(self, result: Result): pass diff --git a/code/format/YAMLFormat.py b/code/format/YAMLFormat.py index e9ca808..5b0be74 100644 --- a/code/format/YAMLFormat.py +++ b/code/format/YAMLFormat.py @@ -6,5 +6,5 @@ class YAMLFormat(OutputFormat): - def format(self, result: Result): - return yaml.safe_dump(to_dict(result), sort_keys=False) + def format_impl(self, result: Result): + return yaml.safe_dump(to_dict(result.items), sort_keys=False) diff --git a/data/codechange/100_1.yaml b/data/codechange/100_1.yaml deleted file mode 100644 index a849bf3..0000000 --- a/data/codechange/100_1.yaml +++ /dev/null @@ -1,13 +0,0 @@ -id: '100_1' -repo: stefal/rtkbase -commit: cf856c0cc9cbb0f810d59c9419f8789a1f9f5a80 -source: gevent -target: eventlet -pair_id: gevent,eventlet -filepath: web_app/server.py -program_element: import -cardinality: 1-1 -properties: -- full statement replacement -source_version_line: '26' -target_version_line: '28' diff --git a/data/codechange/101_1.yaml b/data/codechange/101_1.yaml deleted file mode 100644 index 89d3b0b..0000000 --- a/data/codechange/101_1.yaml +++ /dev/null @@ -1,13 +0,0 @@ -id: '101_1' -repo: stefal/rtkbase -commit: cf856c0cc9cbb0f810d59c9419f8789a1f9f5a80 -source: gevent -target: eventlet -pair_id: gevent,eventlet -filepath: web_app/server.py -program_element: function call -cardinality: 1-1 -properties: -- function name change -source_version_line: '27' -target_version_line: '29' diff --git a/data/codechange/102_1.yaml b/data/codechange/102_1.yaml deleted file mode 100644 index 38dcde4..0000000 --- a/data/codechange/102_1.yaml +++ /dev/null @@ -1,12 +0,0 @@ -id: '102_1' -repo: duanhongyi/dwebsocket -commit: d707ff652fd74c3420e83a50fc9b1b9026ed0d98 -source: gevent -target: eventlet -pair_id: gevent,eventlet -filepath: examples/run_eventlet.py -program_element: function call -cardinality: n-n -properties: [] -source_version_line: 14-15 -target_version_line: '16' diff --git a/data/codechange/103_1.yaml b/data/codechange/103_1.yaml deleted file mode 100644 index d43bcd2..0000000 --- a/data/codechange/103_1.yaml +++ /dev/null @@ -1,13 +0,0 @@ -id: '103_1' -repo: duanhongyi/dwebsocket -commit: d707ff652fd74c3420e83a50fc9b1b9026ed0d98 -source: gevent -target: eventlet -pair_id: gevent,eventlet -filepath: examples/run_eventlet.py -program_element: import -cardinality: n-n -properties: -- full statement replacement -source_version_line: '3:5' -target_version_line: '1:6' diff --git a/data/codechange/104_1.yaml b/data/codechange/104_1.yaml deleted file mode 100644 index 97fd73a..0000000 --- a/data/codechange/104_1.yaml +++ /dev/null @@ -1,13 +0,0 @@ -id: '104_1' -repo: duanhongyi/dwebsocket -commit: d707ff652fd74c3420e83a50fc9b1b9026ed0d98 -source: gevent -target: eventlet -pair_id: gevent,eventlet -filepath: examples/run_eventlet.py -program_element: function call -cardinality: 1-1 -properties: -- function name change -source_version_line: '4' -target_version_line: '2' diff --git a/data/codechange/105_1.yaml b/data/codechange/105_1.yaml deleted file mode 100644 index b013ec9..0000000 --- a/data/codechange/105_1.yaml +++ /dev/null @@ -1,14 +0,0 @@ -id: '105_1' -repo: lonelam/onlinejudgeshu -commit: b687d2067b28f6759a47ddcfe7bb575e8f83f679 -source: huey -target: celery -pair_id: huey,celery -filepath: submission/tasks.py -program_element: import -cardinality: 1-1 -properties: -- module name change -- object name change -source_version_line: '2' -target_version_line: '3' diff --git a/data/codechange/106_1.yaml b/data/codechange/106_1.yaml deleted file mode 100644 index a8cd81f..0000000 --- a/data/codechange/106_1.yaml +++ /dev/null @@ -1,13 +0,0 @@ -id: '106_1' -repo: lonelam/onlinejudgeshu -commit: b687d2067b28f6759a47ddcfe7bb575e8f83f679 -source: huey -target: celery -pair_id: huey,celery -filepath: submission/tasks.py -program_element: decorator -cardinality: 1-1 -properties: -- decorator name change -source_version_line: '7' -target_version_line: '7' diff --git a/data/codechange/107_1.yaml b/data/codechange/107_1.yaml deleted file mode 100644 index c041ac9..0000000 --- a/data/codechange/107_1.yaml +++ /dev/null @@ -1,13 +0,0 @@ -id: '107_1' -repo: openstack/oslo.messaging -commit: 5a842ae15582e4eedfb1b2510eaf4a8997701f58 -source: kafka-python -target: confluent-kafka -pair_id: kafka-python,confluent-kafka -filepath: oslo_messaging/_drivers/impl_kafka.py -program_element: function call -cardinality: 1-1 -properties: -- argument transformation -source_version_line: 220-232 -target_version_line: '245' diff --git a/data/codechange/107_2.yaml b/data/codechange/107_2.yaml deleted file mode 100644 index 8caef6e..0000000 --- a/data/codechange/107_2.yaml +++ /dev/null @@ -1,13 +0,0 @@ -id: '107_2' -repo: openstack/oslo.messaging -commit: 5a842ae15582e4eedfb1b2510eaf4a8997701f58 -source: kafka-python -target: confluent-kafka -pair_id: kafka-python,confluent-kafka -filepath: oslo_messaging/_drivers/impl_kafka.py -program_element: function call -cardinality: 1-1 -properties: -- argument transformation -source_version_line: 288-297 -target_version_line: '326' diff --git a/data/codechange/108_1.yaml b/data/codechange/108_1.yaml deleted file mode 100644 index 9f7d70e..0000000 --- a/data/codechange/108_1.yaml +++ /dev/null @@ -1,13 +0,0 @@ -id: '108_1' -repo: openstack/oslo.messaging -commit: 5a842ae15582e4eedfb1b2510eaf4a8997701f58 -source: kafka-python -target: confluent-kafka -pair_id: kafka-python,confluent-kafka -filepath: oslo_messaging/_drivers/impl_kafka.py -program_element: import -cardinality: n-n -properties: -- full statement replacement -source_version_line: 26-28 -target_version_line: 18-19 diff --git a/data/codechange/109_1.yaml b/data/codechange/109_1.yaml deleted file mode 100644 index 4c53e42..0000000 --- a/data/codechange/109_1.yaml +++ /dev/null @@ -1,13 +0,0 @@ -id: '109_1' -repo: biznetgio/restknot -commit: 6b10345398630fbb418f84ca7268d481ecad56ee -source: kafka-python -target: confluent-kafka -pair_id: kafka-python,confluent-kafka -filepath: agent/dnsagent/clis/start.py -program_element: function call -cardinality: 1-n -properties: -- argument transformation -source_version_line: '35' -target_version_line: 35-36 diff --git a/data/codechange/10_1.yaml b/data/codechange/10_1.yaml deleted file mode 100644 index 68650c9..0000000 --- a/data/codechange/10_1.yaml +++ /dev/null @@ -1,13 +0,0 @@ -id: '10_1' -repo: thombashi/pingparsing -commit: 45fac3cb38661f80fc8bd129ce633cfd15423835 -source: dataproperty -target: typepy -pair_id: dataproperty,typepy -filepath: pingparsing/_pingtransmitter.py -program_element: function call -cardinality: 1-1 -properties: -- function name change -source_version_line: '86' -target_version_line: '87' diff --git a/data/codechange/10_10.yaml b/data/codechange/10_10.yaml deleted file mode 100644 index b4a7694..0000000 --- a/data/codechange/10_10.yaml +++ /dev/null @@ -1,13 +0,0 @@ -id: '10_10' -repo: thombashi/pingparsing -commit: 45fac3cb38661f80fc8bd129ce633cfd15423835 -source: dataproperty -target: typepy -pair_id: dataproperty,typepy -filepath: pingparsing/_pingtransmitter.py -program_element: function call -cardinality: 1-1 -properties: -- function name change -source_version_line: '154' -target_version_line: '159' diff --git a/data/codechange/10_2.yaml b/data/codechange/10_2.yaml deleted file mode 100644 index a4bd0e7..0000000 --- a/data/codechange/10_2.yaml +++ /dev/null @@ -1,13 +0,0 @@ -id: '10_2' -repo: thombashi/pingparsing -commit: 45fac3cb38661f80fc8bd129ce633cfd15423835 -source: dataproperty -target: typepy -pair_id: dataproperty,typepy -filepath: pingparsing/_pingtransmitter.py -program_element: function call -cardinality: 1-1 -properties: -- function name change -source_version_line: '100' -target_version_line: '101' diff --git a/data/codechange/10_3.yaml b/data/codechange/10_3.yaml deleted file mode 100644 index f6c67b9..0000000 --- a/data/codechange/10_3.yaml +++ /dev/null @@ -1,13 +0,0 @@ -id: '10_3' -repo: thombashi/pingparsing -commit: 45fac3cb38661f80fc8bd129ce633cfd15423835 -source: dataproperty -target: typepy -pair_id: dataproperty,typepy -filepath: pingparsing/_pingtransmitter.py -program_element: function call -cardinality: 1-1 -properties: -- function name change -source_version_line: '110' -target_version_line: '112' diff --git a/data/codechange/10_4.yaml b/data/codechange/10_4.yaml deleted file mode 100644 index e91af75..0000000 --- a/data/codechange/10_4.yaml +++ /dev/null @@ -1,13 +0,0 @@ -id: '10_4' -repo: thombashi/pingparsing -commit: 45fac3cb38661f80fc8bd129ce633cfd15423835 -source: dataproperty -target: typepy -pair_id: dataproperty,typepy -filepath: pingparsing/_pingtransmitter.py -program_element: function call -cardinality: 1-1 -properties: -- function name change -source_version_line: '110' -target_version_line: '112' diff --git a/data/codechange/10_5.yaml b/data/codechange/10_5.yaml deleted file mode 100644 index b77d0c7..0000000 --- a/data/codechange/10_5.yaml +++ /dev/null @@ -1,13 +0,0 @@ -id: '10_5' -repo: thombashi/pingparsing -commit: 45fac3cb38661f80fc8bd129ce633cfd15423835 -source: dataproperty -target: typepy -pair_id: dataproperty,typepy -filepath: pingparsing/_pingtransmitter.py -program_element: function call -cardinality: 1-1 -properties: -- function name change -source_version_line: '122' -target_version_line: '125' diff --git a/data/codechange/10_6.yaml b/data/codechange/10_6.yaml deleted file mode 100644 index cc83752..0000000 --- a/data/codechange/10_6.yaml +++ /dev/null @@ -1,13 +0,0 @@ -id: '10_6' -repo: thombashi/pingparsing -commit: 45fac3cb38661f80fc8bd129ce633cfd15423835 -source: dataproperty -target: typepy -pair_id: dataproperty,typepy -filepath: pingparsing/_pingtransmitter.py -program_element: function call -cardinality: 1-1 -properties: -- function name change -source_version_line: '122' -target_version_line: '125' diff --git a/data/codechange/10_7.yaml b/data/codechange/10_7.yaml deleted file mode 100644 index dd4d0c7..0000000 --- a/data/codechange/10_7.yaml +++ /dev/null @@ -1,13 +0,0 @@ -id: '10_7' -repo: thombashi/pingparsing -commit: 45fac3cb38661f80fc8bd129ce633cfd15423835 -source: dataproperty -target: typepy -pair_id: dataproperty,typepy -filepath: pingparsing/_pingtransmitter.py -program_element: function call -cardinality: 1-1 -properties: -- function name change -source_version_line: '144' -target_version_line: '148' diff --git a/data/codechange/10_8.yaml b/data/codechange/10_8.yaml deleted file mode 100644 index db04f76..0000000 --- a/data/codechange/10_8.yaml +++ /dev/null @@ -1,13 +0,0 @@ -id: '10_8' -repo: thombashi/pingparsing -commit: 45fac3cb38661f80fc8bd129ce633cfd15423835 -source: dataproperty -target: typepy -pair_id: dataproperty,typepy -filepath: pingparsing/_pingtransmitter.py -program_element: function call -cardinality: 1-1 -properties: -- function name change -source_version_line: '144' -target_version_line: '148' diff --git a/data/codechange/10_9.yaml b/data/codechange/10_9.yaml deleted file mode 100644 index 185c1ed..0000000 --- a/data/codechange/10_9.yaml +++ /dev/null @@ -1,13 +0,0 @@ -id: '10_9' -repo: thombashi/pingparsing -commit: 45fac3cb38661f80fc8bd129ce633cfd15423835 -source: dataproperty -target: typepy -pair_id: dataproperty,typepy -filepath: pingparsing/_pingtransmitter.py -program_element: function call -cardinality: 1-1 -properties: -- function name change -source_version_line: '154' -target_version_line: '159' diff --git a/data/codechange/110_1.yaml b/data/codechange/110_1.yaml deleted file mode 100644 index c0c0636..0000000 --- a/data/codechange/110_1.yaml +++ /dev/null @@ -1,15 +0,0 @@ -id: '110_1' -repo: biznetgio/restknot -commit: 6b10345398630fbb418f84ca7268d481ecad56ee -source: kafka-python -target: confluent-kafka -pair_id: kafka-python,confluent-kafka -filepath: api/app/helpers/producer.py -program_element: function call -cardinality: 1-1 -properties: -- argument deletion -- argument transformation -- function name change -source_version_line: 18-21 -target_version_line: '20' diff --git a/data/codechange/111_1.yaml b/data/codechange/111_1.yaml deleted file mode 100644 index 5c9c179..0000000 --- a/data/codechange/111_1.yaml +++ /dev/null @@ -1,15 +0,0 @@ -id: '111_1' -repo: biznetgio/restknot -commit: 6b10345398630fbb418f84ca7268d481ecad56ee -source: kafka-python -target: confluent-kafka -pair_id: kafka-python,confluent-kafka -filepath: api/app/helpers/producer.py -program_element: function call -cardinality: 1-1 -properties: -- argument addition -- argument transformation -- function name change -source_version_line: '31' -target_version_line: '36' diff --git a/data/codechange/112_1.yaml b/data/codechange/112_1.yaml deleted file mode 100644 index a0f57b1..0000000 --- a/data/codechange/112_1.yaml +++ /dev/null @@ -1,14 +0,0 @@ -id: '112_1' -repo: biznetgio/restknot -commit: 6b10345398630fbb418f84ca7268d481ecad56ee -source: kafka-python -target: confluent-kafka -pair_id: kafka-python,confluent-kafka -filepath: api/app/helpers/producer.py -program_element: import -cardinality: 1-1 -properties: -- module name change -- object name change -source_version_line: '5' -target_version_line: '5' diff --git a/data/codechange/113_1.yaml b/data/codechange/113_1.yaml deleted file mode 100644 index a892d64..0000000 --- a/data/codechange/113_1.yaml +++ /dev/null @@ -1,13 +0,0 @@ -id: '113_1' -repo: kizniche/mycodo -commit: 547f6d9f22e569007c1066e36ee5142f5e1b533d -source: lockfile -target: fasteners -pair_id: lockfile,fasteners -filepath: mycodo/controller_sensor.py -program_element: import -cardinality: 1-1 -properties: -- full statement replacement -source_version_line: '31' -target_version_line: '26' diff --git a/data/codechange/114_1.yaml b/data/codechange/114_1.yaml deleted file mode 100644 index 28ad12e..0000000 --- a/data/codechange/114_1.yaml +++ /dev/null @@ -1,13 +0,0 @@ -id: '114_1' -repo: kizniche/mycodo -commit: 547f6d9f22e569007c1066e36ee5142f5e1b533d -source: lockfile -target: fasteners -pair_id: lockfile,fasteners -filepath: mycodo/devices/atlas_scientific_i2c.py -program_element: import -cardinality: 1-1 -properties: -- full statement replacement -source_version_line: '7' -target_version_line: '3' diff --git a/data/codechange/115_1.yaml b/data/codechange/115_1.yaml deleted file mode 100644 index f128d86..0000000 --- a/data/codechange/115_1.yaml +++ /dev/null @@ -1,13 +0,0 @@ -id: '115_1' -repo: kizniche/mycodo -commit: 547f6d9f22e569007c1066e36ee5142f5e1b533d -source: lockfile -target: fasteners -pair_id: lockfile,fasteners -filepath: mycodo/devices/atlas_scientific_i2c.py -program_element: function call -cardinality: 1-1 -properties: -- function name change -source_version_line: '77' -target_version_line: '79' diff --git a/data/codechange/116_1.yaml b/data/codechange/116_1.yaml deleted file mode 100644 index 0f034e6..0000000 --- a/data/codechange/116_1.yaml +++ /dev/null @@ -1,14 +0,0 @@ -id: '116_1' -repo: kizniche/mycodo -commit: 547f6d9f22e569007c1066e36ee5142f5e1b533d -source: lockfile -target: fasteners -pair_id: lockfile,fasteners -filepath: mycodo/devices/atlas_scientific_i2c.py -program_element: function call -cardinality: 1-1 -properties: -- argument addition -- argument deletion -source_version_line: '81' -target_version_line: '83' diff --git a/data/codechange/117_1.yaml b/data/codechange/117_1.yaml deleted file mode 100644 index 6c190a0..0000000 --- a/data/codechange/117_1.yaml +++ /dev/null @@ -1,13 +0,0 @@ -id: '117_1' -repo: kizniche/mycodo -commit: 547f6d9f22e569007c1066e36ee5142f5e1b533d -source: lockfile -target: fasteners -pair_id: lockfile,fasteners -filepath: mycodo/devices/atlas_scientific_uart.py -program_element: import -cardinality: 1-1 -properties: -- full statement replacement -source_version_line: '5' -target_version_line: '3' diff --git a/data/codechange/118_1.yaml b/data/codechange/118_1.yaml deleted file mode 100644 index 0196bff..0000000 --- a/data/codechange/118_1.yaml +++ /dev/null @@ -1,13 +0,0 @@ -id: '118_1' -repo: kizniche/mycodo -commit: 547f6d9f22e569007c1066e36ee5142f5e1b533d -source: lockfile -target: fasteners -pair_id: lockfile,fasteners -filepath: mycodo/devices/atlas_scientific_uart.py -program_element: function call -cardinality: 1-1 -properties: -- function name change -source_version_line: '51' -target_version_line: '54' diff --git a/data/codechange/119_1.yaml b/data/codechange/119_1.yaml deleted file mode 100644 index c50192e..0000000 --- a/data/codechange/119_1.yaml +++ /dev/null @@ -1,14 +0,0 @@ -id: '119_1' -repo: kizniche/mycodo -commit: 547f6d9f22e569007c1066e36ee5142f5e1b533d -source: lockfile -target: fasteners -pair_id: lockfile,fasteners -filepath: mycodo/devices/atlas_scientific_uart.py -program_element: function call -cardinality: 1-1 -properties: -- argument addition -- argument deletion -source_version_line: '55' -target_version_line: '58' diff --git a/data/codechange/11_1.yaml b/data/codechange/11_1.yaml deleted file mode 100644 index abdc6b0..0000000 --- a/data/codechange/11_1.yaml +++ /dev/null @@ -1,13 +0,0 @@ -id: '11_1' -repo: thombashi/datetimerange -commit: 936761f779c4f7dc8c2d4c03c47b6e7b6e978a89 -source: dataproperty -target: typepy -pair_id: dataproperty,typepy -filepath: datetimerange/__init__.py -program_element: import -cardinality: 1-1 -properties: -- full statement replacement -source_version_line: '11' -target_version_line: '13' diff --git a/data/codechange/120_1.yaml b/data/codechange/120_1.yaml deleted file mode 100644 index 378619b..0000000 --- a/data/codechange/120_1.yaml +++ /dev/null @@ -1,14 +0,0 @@ -id: '120_1' -repo: kizniche/mycodo -commit: 547f6d9f22e569007c1066e36ee5142f5e1b533d -source: lockfile -target: fasteners -pair_id: lockfile,fasteners -filepath: mycodo/sensors/k30.py -program_element: function call -cardinality: 1-1 -properties: -- argument addition -- argument deletion -source_version_line: '101' -target_version_line: '100' diff --git a/data/codechange/121_1.yaml b/data/codechange/121_1.yaml deleted file mode 100644 index 3ce0ef3..0000000 --- a/data/codechange/121_1.yaml +++ /dev/null @@ -1,13 +0,0 @@ -id: '121_1' -repo: kizniche/mycodo -commit: 547f6d9f22e569007c1066e36ee5142f5e1b533d -source: lockfile -target: fasteners -pair_id: lockfile,fasteners -filepath: mycodo/sensors/k30.py -program_element: import -cardinality: 1-1 -properties: -- full statement replacement -source_version_line: '3' -target_version_line: '3' diff --git a/data/codechange/122_1.yaml b/data/codechange/122_1.yaml deleted file mode 100644 index abd7b01..0000000 --- a/data/codechange/122_1.yaml +++ /dev/null @@ -1,13 +0,0 @@ -id: '122_1' -repo: kizniche/mycodo -commit: 547f6d9f22e569007c1066e36ee5142f5e1b533d -source: lockfile -target: fasteners -pair_id: lockfile,fasteners -filepath: mycodo/sensors/k30.py -program_element: function call -cardinality: 1-1 -properties: -- function name change -source_version_line: '95' -target_version_line: '96' diff --git a/data/codechange/123_1.yaml b/data/codechange/123_1.yaml deleted file mode 100644 index 85c386c..0000000 --- a/data/codechange/123_1.yaml +++ /dev/null @@ -1,14 +0,0 @@ -id: '123_1' -repo: kizniche/mycodo -commit: 547f6d9f22e569007c1066e36ee5142f5e1b533d -source: lockfile -target: fasteners -pair_id: lockfile,fasteners -filepath: mycodo/sensors/mh_z16.py -program_element: function call -cardinality: 1-1 -properties: -- argument addition -- argument deletion -source_version_line: '155' -target_version_line: '156' diff --git a/data/codechange/124_1.yaml b/data/codechange/124_1.yaml deleted file mode 100644 index ab2382c..0000000 --- a/data/codechange/124_1.yaml +++ /dev/null @@ -1,13 +0,0 @@ -id: '124_1' -repo: kizniche/mycodo -commit: 547f6d9f22e569007c1066e36ee5142f5e1b533d -source: lockfile -target: fasteners -pair_id: lockfile,fasteners -filepath: mycodo/sensors/mh_z16.py -program_element: import -cardinality: 1-1 -properties: -- full statement replacement -source_version_line: '22' -target_version_line: '22' diff --git a/data/codechange/125_1.yaml b/data/codechange/125_1.yaml deleted file mode 100644 index 1baa79f..0000000 --- a/data/codechange/125_1.yaml +++ /dev/null @@ -1,13 +0,0 @@ -id: '125_1' -repo: kizniche/mycodo -commit: 547f6d9f22e569007c1066e36ee5142f5e1b533d -source: lockfile -target: fasteners -pair_id: lockfile,fasteners -filepath: mycodo/sensors/mh_z16.py -program_element: function call -cardinality: 1-1 -properties: -- function name change -source_version_line: '51' -target_version_line: '152' diff --git a/data/codechange/126_1.yaml b/data/codechange/126_1.yaml deleted file mode 100644 index 8266ebc..0000000 --- a/data/codechange/126_1.yaml +++ /dev/null @@ -1,14 +0,0 @@ -id: '126_1' -repo: kizniche/mycodo -commit: 547f6d9f22e569007c1066e36ee5142f5e1b533d -source: lockfile -target: fasteners -pair_id: lockfile,fasteners -filepath: mycodo/sensors/mh_z19.py -program_element: function call -cardinality: 1-1 -properties: -- argument addition -- argument deletion -source_version_line: '101' -target_version_line: '102' diff --git a/data/codechange/127_1.yaml b/data/codechange/127_1.yaml deleted file mode 100644 index 529140f..0000000 --- a/data/codechange/127_1.yaml +++ /dev/null @@ -1,13 +0,0 @@ -id: '127_1' -repo: kizniche/mycodo -commit: 547f6d9f22e569007c1066e36ee5142f5e1b533d -source: lockfile -target: fasteners -pair_id: lockfile,fasteners -filepath: mycodo/sensors/mh_z19.py -program_element: import -cardinality: 1-1 -properties: -- full statement replacement -source_version_line: '3' -target_version_line: '3' diff --git a/data/codechange/128_1.yaml b/data/codechange/128_1.yaml deleted file mode 100644 index 472ec2a..0000000 --- a/data/codechange/128_1.yaml +++ /dev/null @@ -1,13 +0,0 @@ -id: '128_1' -repo: kizniche/mycodo -commit: 547f6d9f22e569007c1066e36ee5142f5e1b533d -source: lockfile -target: fasteners -pair_id: lockfile,fasteners -filepath: mycodo/sensors/mh_z19.py -program_element: function call -cardinality: 1-1 -properties: -- function name change -source_version_line: '95' -target_version_line: '98' diff --git a/data/codechange/129_1.yaml b/data/codechange/129_1.yaml deleted file mode 100644 index 03981cf..0000000 --- a/data/codechange/129_1.yaml +++ /dev/null @@ -1,13 +0,0 @@ -id: '129_1' -repo: thombashi/sqlitebiter -commit: 311c7ce50a89316d5cab9bb2daef05315175faf2 -source: logbook -target: loguru -pair_id: logbook,loguru -filepath: sqlitebiter/sqlitebiter.py -program_element: import -cardinality: n-1 -properties: -- full statement replacement -source_version_line: 15-16 -target_version_line: '20' diff --git a/data/codechange/12_1.yaml b/data/codechange/12_1.yaml deleted file mode 100644 index b4a6345..0000000 --- a/data/codechange/12_1.yaml +++ /dev/null @@ -1,14 +0,0 @@ -id: '12_1' -repo: thombashi/datetimerange -commit: 936761f779c4f7dc8c2d4c03c47b6e7b6e978a89 -source: dataproperty -target: typepy -pair_id: dataproperty,typepy -filepath: datetimerange/__init__.py -program_element: function call -cardinality: 1-n -properties: -- argument addition -- argument deletion -source_version_line: 457-458 -target_version_line: 465-466 diff --git a/data/codechange/12_2.yaml b/data/codechange/12_2.yaml deleted file mode 100644 index ba15fe1..0000000 --- a/data/codechange/12_2.yaml +++ /dev/null @@ -1,14 +0,0 @@ -id: '12_2' -repo: thombashi/datetimerange -commit: 936761f779c4f7dc8c2d4c03c47b6e7b6e978a89 -source: dataproperty -target: typepy -pair_id: dataproperty,typepy -filepath: datetimerange/__init__.py -program_element: function call -cardinality: 1-n -properties: -- argument addition -- argument deletion -source_version_line: 484-485 -target_version_line: 498-499 diff --git a/data/codechange/130_1.yaml b/data/codechange/130_1.yaml deleted file mode 100644 index eff4fdf..0000000 --- a/data/codechange/130_1.yaml +++ /dev/null @@ -1,12 +0,0 @@ -id: '130_1' -repo: thombashi/sqlitebiter -commit: 311c7ce50a89316d5cab9bb2daef05315175faf2 -source: logbook -target: loguru -pair_id: logbook,loguru -filepath: sqlitebiter/sqlitebiter.py -program_element: function call -cardinality: n-1 -properties: [] -source_version_line: 64:68 -target_version_line: '64' diff --git a/data/codechange/131_1.yaml b/data/codechange/131_1.yaml deleted file mode 100644 index ab05ed5..0000000 --- a/data/codechange/131_1.yaml +++ /dev/null @@ -1,12 +0,0 @@ -id: '131_1' -repo: thombashi/tcconfig -commit: 7ba8676b3b9347ef15142bfeba30d611822c154d -source: logbook -target: loguru -pair_id: logbook,loguru -filepath: tcconfig/_logger.py -program_element: function call -cardinality: n-1 -properties: [] -source_version_line: '18:29' -target_version_line: '20' diff --git a/data/codechange/132_1.yaml b/data/codechange/132_1.yaml deleted file mode 100644 index fc87418..0000000 --- a/data/codechange/132_1.yaml +++ /dev/null @@ -1,13 +0,0 @@ -id: '132_1' -repo: thombashi/tcconfig -commit: 7ba8676b3b9347ef15142bfeba30d611822c154d -source: logbook -target: loguru -pair_id: logbook,loguru -filepath: tcconfig/_logger.py -program_element: import -cardinality: 1-1 -properties: -- full statement replacement -source_version_line: '6' -target_version_line: '10' diff --git a/data/codechange/133_1.yaml b/data/codechange/133_1.yaml deleted file mode 100644 index 263a5d8..0000000 --- a/data/codechange/133_1.yaml +++ /dev/null @@ -1,13 +0,0 @@ -id: '133_1' -repo: bcgov/gwells -commit: 57d12c42941e0afb07ac46fb51f8316d6c5a0cea -source: openpyxl -target: xlsxwriter -pair_id: openpyxl,xlsxwriter -filepath: app/backend/wells/management/commands/export.py -program_element: import -cardinality: 1-1 -properties: -- module name change -source_version_line: '12' -target_version_line: '12' diff --git a/data/codechange/134_1.yaml b/data/codechange/134_1.yaml deleted file mode 100644 index 9cd486e..0000000 --- a/data/codechange/134_1.yaml +++ /dev/null @@ -1,13 +0,0 @@ -id: '134_1' -repo: bcgov/gwells -commit: 57d12c42941e0afb07ac46fb51f8316d6c5a0cea -source: openpyxl -target: xlsxwriter -pair_id: openpyxl,xlsxwriter -filepath: app/backend/wells/management/commands/export.py -program_element: import -cardinality: 1-1 -properties: -- module name change -source_version_line: '12' -target_version_line: '12' diff --git a/data/codechange/135_1.yaml b/data/codechange/135_1.yaml deleted file mode 100644 index 5a411d8..0000000 --- a/data/codechange/135_1.yaml +++ /dev/null @@ -1,13 +0,0 @@ -id: '135_1' -repo: shoebot/shoebot -commit: 0171fb9ff6ed2fed71dcfe82eef7ca723d609fcf -source: pil -target: pillow -pair_id: pil,pillow -filepath: shoebot/data/img.py -program_element: import -cardinality: 1-1 -properties: -- full statement replacement -source_version_line: '9' -target_version_line: '9' diff --git a/data/codechange/136_1.yaml b/data/codechange/136_1.yaml deleted file mode 100644 index bf11352..0000000 --- a/data/codechange/136_1.yaml +++ /dev/null @@ -1,13 +0,0 @@ -id: '136_1' -repo: rcos/observatory-retired -commit: f970b543dc349460492a32a11731738062bfcc09 -source: pil -target: pillow -pair_id: pil,pillow -filepath: observatory/dashboard/models/Screenshot.py -program_element: import -cardinality: 1-1 -properties: -- full statement replacement -source_version_line: '15' -target_version_line: '15' diff --git a/data/codechange/137_1.yaml b/data/codechange/137_1.yaml deleted file mode 100644 index 85d95ca..0000000 --- a/data/codechange/137_1.yaml +++ /dev/null @@ -1,13 +0,0 @@ -id: '137_1' -repo: weasyl/weasyl -commit: f6230c731f662be1301bdc38f6ab9815c7441144 -source: py-bcrypt -target: bcrypt -pair_id: py-bcrypt,bcrypt -filepath: weasyl/login.py -program_element: function call -cardinality: 1-1 -properties: -- argument transformation -source_version_line: '76' -target_version_line: '77' diff --git a/data/codechange/137_2.yaml b/data/codechange/137_2.yaml deleted file mode 100644 index 402fd08..0000000 --- a/data/codechange/137_2.yaml +++ /dev/null @@ -1,13 +0,0 @@ -id: '137_2' -repo: weasyl/weasyl -commit: f6230c731f662be1301bdc38f6ab9815c7441144 -source: py-bcrypt -target: bcrypt -pair_id: py-bcrypt,bcrypt -filepath: weasyl/login.py -program_element: function call -cardinality: 1-1 -properties: -- argument transformation -source_version_line: '284' -target_version_line: '285' diff --git a/data/codechange/138_1.yaml b/data/codechange/138_1.yaml deleted file mode 100644 index 31877ce..0000000 --- a/data/codechange/138_1.yaml +++ /dev/null @@ -1,13 +0,0 @@ -id: '138_1' -repo: freeopcua/opcua-asyncio -commit: cdaff1575780a99ab035abb08a6ad13414cd4859 -source: pycrypto -target: cryptography -pair_id: pycrypto,cryptography -filepath: opcua/uacrypto.py -program_element: import -cardinality: n-n -properties: -- full statement replacement -source_version_line: 8-15 -target_version_line: 3-7 diff --git a/data/codechange/139_1.yaml b/data/codechange/139_1.yaml deleted file mode 100644 index 6b83bcc..0000000 --- a/data/codechange/139_1.yaml +++ /dev/null @@ -1,14 +0,0 @@ -id: '139_1' -repo: camptocamp/c2cgeoportal -commit: 14388c3d85ab164d7b36b1331534913a1c9d6c9a -source: pycrypto -target: pycryptodome -pair_id: pycrypto,pycryptodome -filepath: geoportal/c2cgeoportal_geoportal/__init__.py -program_element: function call -cardinality: 1-1 -properties: -- argument addition -- argument transformation -source_version_line: '322' -target_version_line: '326' diff --git a/data/codechange/13_1.yaml b/data/codechange/13_1.yaml deleted file mode 100644 index 0ca0e3e..0000000 --- a/data/codechange/13_1.yaml +++ /dev/null @@ -1,13 +0,0 @@ -id: '13_1' -repo: opengisch/qfieldcloud -commit: 4377d67a99ed8b6680276cbf4585cbac18439b37 -source: django-rest-swagger -target: drf-yasg -pair_id: django-rest-swagger,drf-yasg -filepath: web-app/qfieldcloud/urls.py -program_element: import -cardinality: 1-n -properties: -- full statement replacement -source_version_line: '18' -target_version_line: 20-21 diff --git a/data/codechange/140_1.yaml b/data/codechange/140_1.yaml deleted file mode 100644 index e77549a..0000000 --- a/data/codechange/140_1.yaml +++ /dev/null @@ -1,15 +0,0 @@ -id: '140_1' -repo: camptocamp/c2cgeoportal -commit: 14388c3d85ab164d7b36b1331534913a1c9d6c9a -source: pycrypto -target: pycryptodome -pair_id: pycrypto,pycryptodome -filepath: geoportal/c2cgeoportal_geoportal/__init__.py -program_element: function call -cardinality: 1-1 -properties: -- argument addition -- argument transformation -- function name change -source_version_line: '323' -target_version_line: '327' diff --git a/data/codechange/141_1.yaml b/data/codechange/141_1.yaml deleted file mode 100644 index 9f9dd7e..0000000 --- a/data/codechange/141_1.yaml +++ /dev/null @@ -1,14 +0,0 @@ -id: '141_1' -repo: camptocamp/c2cgeoportal -commit: 14388c3d85ab164d7b36b1331534913a1c9d6c9a -source: pycrypto -target: pycryptodome -pair_id: pycrypto,pycryptodome -filepath: geoportal/c2cgeoportal_geoportal/scripts/urllogin.py -program_element: function call -cardinality: 1-1 -properties: -- argument addition -- argument transformation -source_version_line: '48' -target_version_line: '48' diff --git a/data/codechange/142_1.yaml b/data/codechange/142_1.yaml deleted file mode 100644 index 0f1aca4..0000000 --- a/data/codechange/142_1.yaml +++ /dev/null @@ -1,13 +0,0 @@ -id: '142_1' -repo: camptocamp/c2cgeoportal -commit: 14388c3d85ab164d7b36b1331534913a1c9d6c9a -source: pycrypto -target: pycryptodome -pair_id: pycrypto,pycryptodome -filepath: geoportal/c2cgeoportal_geoportal/scripts/urllogin.py -program_element: function call -cardinality: 1-1 -properties: -- function name change -source_version_line: '53' -target_version_line: '53' diff --git a/data/codechange/143_1.yaml b/data/codechange/143_1.yaml deleted file mode 100644 index 7c42b2d..0000000 --- a/data/codechange/143_1.yaml +++ /dev/null @@ -1,13 +0,0 @@ -id: '143_1' -repo: hhyo/archery -commit: e192ca69e2d610bc59a9f10165c7fd1c8ab9b157 -source: pycrypto -target: pycryptodome -pair_id: pycrypto,pycryptodome -filepath: sql/utils/aes_decryptor.py -program_element: function call -cardinality: 1-1 -properties: -- argument transformation -source_version_line: '26' -target_version_line: '26' diff --git a/data/codechange/144_1.yaml b/data/codechange/144_1.yaml deleted file mode 100644 index 81be9dd..0000000 --- a/data/codechange/144_1.yaml +++ /dev/null @@ -1,13 +0,0 @@ -id: '144_1' -repo: snemes/malware-analysis -commit: 02b064b4acc0ae26d6c61246ab3f1f45b750091a -source: pycryptodome -target: pycryptodomex -pair_id: pycryptodome,pycryptodomex -filepath: trickbot/trickbot_artifact_decrypter.py -program_element: import -cardinality: 1-1 -properties: -- module name change -source_version_line: '11' -target_version_line: '11' diff --git a/data/codechange/144_2.yaml b/data/codechange/144_2.yaml deleted file mode 100644 index 8a5b0f5..0000000 --- a/data/codechange/144_2.yaml +++ /dev/null @@ -1,13 +0,0 @@ -id: '144_2' -repo: snemes/malware-analysis -commit: 02b064b4acc0ae26d6c61246ab3f1f45b750091a -source: pycryptodome -target: pycryptodomex -pair_id: pycryptodome,pycryptodomex -filepath: trickbot/trickbot_artifact_decrypter.py -program_element: import -cardinality: 1-1 -properties: -- module name change -source_version_line: '12' -target_version_line: '12' diff --git a/data/codechange/144_3.yaml b/data/codechange/144_3.yaml deleted file mode 100644 index 98598d1..0000000 --- a/data/codechange/144_3.yaml +++ /dev/null @@ -1,13 +0,0 @@ -id: '144_3' -repo: snemes/malware-analysis -commit: 02b064b4acc0ae26d6c61246ab3f1f45b750091a -source: pycryptodome -target: pycryptodomex -pair_id: pycryptodome,pycryptodomex -filepath: trickbot/trickbot_artifact_decrypter.py -program_element: import -cardinality: 1-1 -properties: -- module name change -source_version_line: '13' -target_version_line: '13' diff --git a/data/codechange/144_4.yaml b/data/codechange/144_4.yaml deleted file mode 100644 index 0b9b098..0000000 --- a/data/codechange/144_4.yaml +++ /dev/null @@ -1,13 +0,0 @@ -id: '144_4' -repo: snemes/malware-analysis -commit: 02b064b4acc0ae26d6c61246ab3f1f45b750091a -source: pycryptodome -target: pycryptodomex -pair_id: pycryptodome,pycryptodomex -filepath: trickbot/trickbot_artifact_decrypter.py -program_element: import -cardinality: 1-1 -properties: -- module name change -source_version_line: '14' -target_version_line: '14' diff --git a/data/codechange/145_1.yaml b/data/codechange/145_1.yaml deleted file mode 100644 index 6f56c09..0000000 --- a/data/codechange/145_1.yaml +++ /dev/null @@ -1,13 +0,0 @@ -id: '145_1' -repo: azure/aztk -commit: 19dde429a702c29bdcf86a69805053ecfd02edee -source: pycryptodome -target: pycryptodomex -pair_id: pycryptodome,pycryptodomex -filepath: aztk/client.py -program_element: import -cardinality: 1-1 -properties: -- module name change -source_version_line: '15' -target_version_line: '15' diff --git a/data/codechange/146_1.yaml b/data/codechange/146_1.yaml deleted file mode 100644 index 752b395..0000000 --- a/data/codechange/146_1.yaml +++ /dev/null @@ -1,13 +0,0 @@ -id: '146_1' -repo: azure/aztk -commit: 19dde429a702c29bdcf86a69805053ecfd02edee -source: pycryptodome -target: pycryptodomex -pair_id: pycryptodome,pycryptodomex -filepath: aztk/node_scripts/install/create_user.py -program_element: import -cardinality: 1-1 -properties: -- module name change -source_version_line: '4' -target_version_line: '4' diff --git a/data/codechange/146_2.yaml b/data/codechange/146_2.yaml deleted file mode 100644 index 886d28d..0000000 --- a/data/codechange/146_2.yaml +++ /dev/null @@ -1,13 +0,0 @@ -id: '146_2' -repo: azure/aztk -commit: 19dde429a702c29bdcf86a69805053ecfd02edee -source: pycryptodome -target: pycryptodomex -pair_id: pycryptodome,pycryptodomex -filepath: aztk/node_scripts/install/create_user.py -program_element: import -cardinality: 1-1 -properties: -- module name change -source_version_line: '5' -target_version_line: '5' diff --git a/data/codechange/147_1.yaml b/data/codechange/147_1.yaml deleted file mode 100644 index d72ef29..0000000 --- a/data/codechange/147_1.yaml +++ /dev/null @@ -1,13 +0,0 @@ -id: '147_1' -repo: azure/aztk -commit: 19dde429a702c29bdcf86a69805053ecfd02edee -source: pycryptodome -target: pycryptodomex -pair_id: pycryptodome,pycryptodomex -filepath: aztk/spark/models/models.py -program_element: import -cardinality: 1-1 -properties: -- module name change -source_version_line: '2' -target_version_line: '2' diff --git a/data/codechange/148_1.yaml b/data/codechange/148_1.yaml deleted file mode 100644 index e8844ea..0000000 --- a/data/codechange/148_1.yaml +++ /dev/null @@ -1,13 +0,0 @@ -id: '148_1' -repo: azure/aztk -commit: 19dde429a702c29bdcf86a69805053ecfd02edee -source: pycryptodome -target: pycryptodomex -pair_id: pycryptodome,pycryptodomex -filepath: aztk/utils/secure_utils.py -program_element: import -cardinality: 1-1 -properties: -- module name change -source_version_line: '1' -target_version_line: '1' diff --git a/data/codechange/148_2.yaml b/data/codechange/148_2.yaml deleted file mode 100644 index f3f56ee..0000000 --- a/data/codechange/148_2.yaml +++ /dev/null @@ -1,13 +0,0 @@ -id: '148_2' -repo: azure/aztk -commit: 19dde429a702c29bdcf86a69805053ecfd02edee -source: pycryptodome -target: pycryptodomex -pair_id: pycryptodome,pycryptodomex -filepath: aztk/utils/secure_utils.py -program_element: import -cardinality: 1-1 -properties: -- module name change -source_version_line: '2' -target_version_line: '2' diff --git a/data/codechange/148_3.yaml b/data/codechange/148_3.yaml deleted file mode 100644 index f6dc173..0000000 --- a/data/codechange/148_3.yaml +++ /dev/null @@ -1,13 +0,0 @@ -id: '148_3' -repo: azure/aztk -commit: 19dde429a702c29bdcf86a69805053ecfd02edee -source: pycryptodome -target: pycryptodomex -pair_id: pycryptodome,pycryptodomex -filepath: aztk/utils/secure_utils.py -program_element: import -cardinality: 1-1 -properties: -- module name change -source_version_line: '3' -target_version_line: '3' diff --git a/data/codechange/149_1.yaml b/data/codechange/149_1.yaml deleted file mode 100644 index 4e7c452..0000000 --- a/data/codechange/149_1.yaml +++ /dev/null @@ -1,13 +0,0 @@ -id: '149_1' -repo: malwaredllc/byob -commit: 9291b54ed6a1c727030c571a6ebdf7b344781c8f -source: pycryptodome -target: pycryptodomex -pair_id: pycryptodome,pycryptodomex -filepath: byob/core/security.py -program_element: import -cardinality: 1-1 -properties: -- module name change -source_version_line: '20' -target_version_line: '20' diff --git a/data/codechange/149_2.yaml b/data/codechange/149_2.yaml deleted file mode 100644 index a05e5c7..0000000 --- a/data/codechange/149_2.yaml +++ /dev/null @@ -1,13 +0,0 @@ -id: '149_2' -repo: malwaredllc/byob -commit: 9291b54ed6a1c727030c571a6ebdf7b344781c8f -source: pycryptodome -target: pycryptodomex -pair_id: pycryptodome,pycryptodomex -filepath: byob/core/security.py -program_element: import -cardinality: 1-1 -properties: -- module name change -source_version_line: '21' -target_version_line: '21' diff --git a/data/codechange/149_3.yaml b/data/codechange/149_3.yaml deleted file mode 100644 index 73157f3..0000000 --- a/data/codechange/149_3.yaml +++ /dev/null @@ -1,13 +0,0 @@ -id: '149_3' -repo: malwaredllc/byob -commit: 9291b54ed6a1c727030c571a6ebdf7b344781c8f -source: pycryptodome -target: pycryptodomex -pair_id: pycryptodome,pycryptodomex -filepath: byob/core/security.py -program_element: import -cardinality: 1-1 -properties: -- module name change -source_version_line: '22' -target_version_line: '22' diff --git a/data/codechange/149_4.yaml b/data/codechange/149_4.yaml deleted file mode 100644 index 787179e..0000000 --- a/data/codechange/149_4.yaml +++ /dev/null @@ -1,13 +0,0 @@ -id: '149_4' -repo: malwaredllc/byob -commit: 9291b54ed6a1c727030c571a6ebdf7b344781c8f -source: pycryptodome -target: pycryptodomex -pair_id: pycryptodome,pycryptodomex -filepath: byob/core/security.py -program_element: import -cardinality: 1-1 -properties: -- module name change -source_version_line: '23' -target_version_line: '23' diff --git a/data/codechange/14_1.yaml b/data/codechange/14_1.yaml deleted file mode 100644 index 4931b09..0000000 --- a/data/codechange/14_1.yaml +++ /dev/null @@ -1,13 +0,0 @@ -id: '14_1' -repo: bcgov/theorgbook -commit: 728f86e941dfb6bdbee27628d28425757af5f22d -source: django-rest-swagger -target: drf-yasg -pair_id: django-rest-swagger,drf-yasg -filepath: tob-api/api_v2/swagger.py -program_element: import -cardinality: 1-n -properties: -- full statement replacement -source_version_line: '6' -target_version_line: 7-8 diff --git a/data/codechange/150_1.yaml b/data/codechange/150_1.yaml deleted file mode 100644 index f75c2f8..0000000 --- a/data/codechange/150_1.yaml +++ /dev/null @@ -1,13 +0,0 @@ -id: '150_1' -repo: malwaredllc/byob -commit: 9291b54ed6a1c727030c571a6ebdf7b344781c8f -source: pycryptodome -target: pycryptodomex -pair_id: pycryptodome,pycryptodomex -filepath: byob/core/security.py -program_element: function call -cardinality: 1-1 -properties: -- function name change -source_version_line: '41' -target_version_line: '41' diff --git a/data/codechange/150_2.yaml b/data/codechange/150_2.yaml deleted file mode 100644 index 515b457..0000000 --- a/data/codechange/150_2.yaml +++ /dev/null @@ -1,13 +0,0 @@ -id: '150_2' -repo: malwaredllc/byob -commit: 9291b54ed6a1c727030c571a6ebdf7b344781c8f -source: pycryptodome -target: pycryptodomex -pair_id: pycryptodome,pycryptodomex -filepath: byob/core/security.py -program_element: function call -cardinality: 1-1 -properties: -- function name change -source_version_line: '43' -target_version_line: '43' diff --git a/data/codechange/150_3.yaml b/data/codechange/150_3.yaml deleted file mode 100644 index ff15d23..0000000 --- a/data/codechange/150_3.yaml +++ /dev/null @@ -1,13 +0,0 @@ -id: '150_3' -repo: malwaredllc/byob -commit: 9291b54ed6a1c727030c571a6ebdf7b344781c8f -source: pycryptodome -target: pycryptodomex -pair_id: pycryptodome,pycryptodomex -filepath: byob/core/security.py -program_element: function call -cardinality: 1-1 -properties: -- function name change -source_version_line: '44' -target_version_line: '44' diff --git a/data/codechange/150_4.yaml b/data/codechange/150_4.yaml deleted file mode 100644 index 2c21d4c..0000000 --- a/data/codechange/150_4.yaml +++ /dev/null @@ -1,13 +0,0 @@ -id: '150_4' -repo: malwaredllc/byob -commit: 9291b54ed6a1c727030c571a6ebdf7b344781c8f -source: pycryptodome -target: pycryptodomex -pair_id: pycryptodome,pycryptodomex -filepath: byob/core/security.py -program_element: function call -cardinality: 1-1 -properties: -- function name change -source_version_line: '46' -target_version_line: '46' diff --git a/data/codechange/150_5.yaml b/data/codechange/150_5.yaml deleted file mode 100644 index f09bf07..0000000 --- a/data/codechange/150_5.yaml +++ /dev/null @@ -1,13 +0,0 @@ -id: '150_5' -repo: malwaredllc/byob -commit: 9291b54ed6a1c727030c571a6ebdf7b344781c8f -source: pycryptodome -target: pycryptodomex -pair_id: pycryptodome,pycryptodomex -filepath: byob/core/security.py -program_element: function call -cardinality: 1-1 -properties: -- function name change -source_version_line: '64' -target_version_line: '64' diff --git a/data/codechange/150_6.yaml b/data/codechange/150_6.yaml deleted file mode 100644 index c718555..0000000 --- a/data/codechange/150_6.yaml +++ /dev/null @@ -1,13 +0,0 @@ -id: '150_6' -repo: malwaredllc/byob -commit: 9291b54ed6a1c727030c571a6ebdf7b344781c8f -source: pycryptodome -target: pycryptodomex -pair_id: pycryptodome,pycryptodomex -filepath: byob/core/security.py -program_element: function call -cardinality: 1-1 -properties: -- function name change -source_version_line: '85' -target_version_line: '85' diff --git a/data/codechange/151_1.yaml b/data/codechange/151_1.yaml deleted file mode 100644 index d8f34bf..0000000 --- a/data/codechange/151_1.yaml +++ /dev/null @@ -1,13 +0,0 @@ -id: '151_1' -repo: malwaredllc/byob -commit: 9291b54ed6a1c727030c571a6ebdf7b344781c8f -source: pycryptodome -target: pycryptodomex -pair_id: pycryptodome,pycryptodomex -filepath: byob/core/security.py -program_element: attribute access -cardinality: 1-1 -properties: -- attribute name change -source_version_line: '64' -target_version_line: '64' diff --git a/data/codechange/151_2.yaml b/data/codechange/151_2.yaml deleted file mode 100644 index 6157272..0000000 --- a/data/codechange/151_2.yaml +++ /dev/null @@ -1,13 +0,0 @@ -id: '151_2' -repo: malwaredllc/byob -commit: 9291b54ed6a1c727030c571a6ebdf7b344781c8f -source: pycryptodome -target: pycryptodomex -pair_id: pycryptodome,pycryptodomex -filepath: byob/core/security.py -program_element: attribute access -cardinality: 1-1 -properties: -- attribute name change -source_version_line: '84' -target_version_line: '84' diff --git a/data/codechange/151_3.yaml b/data/codechange/151_3.yaml deleted file mode 100644 index 59ce4c4..0000000 --- a/data/codechange/151_3.yaml +++ /dev/null @@ -1,13 +0,0 @@ -id: '151_3' -repo: malwaredllc/byob -commit: 9291b54ed6a1c727030c571a6ebdf7b344781c8f -source: pycryptodome -target: pycryptodomex -pair_id: pycryptodome,pycryptodomex -filepath: byob/core/security.py -program_element: attribute access -cardinality: 1-1 -properties: -- attribute name change -source_version_line: '84' -target_version_line: '84' diff --git a/data/codechange/151_4.yaml b/data/codechange/151_4.yaml deleted file mode 100644 index b4397fb..0000000 --- a/data/codechange/151_4.yaml +++ /dev/null @@ -1,13 +0,0 @@ -id: '151_4' -repo: malwaredllc/byob -commit: 9291b54ed6a1c727030c571a6ebdf7b344781c8f -source: pycryptodome -target: pycryptodomex -pair_id: pycryptodome,pycryptodomex -filepath: byob/core/security.py -program_element: attribute access -cardinality: 1-1 -properties: -- attribute name change -source_version_line: '85' -target_version_line: '85' diff --git a/data/codechange/152_1.yaml b/data/codechange/152_1.yaml deleted file mode 100644 index f6fe73f..0000000 --- a/data/codechange/152_1.yaml +++ /dev/null @@ -1,13 +0,0 @@ -id: '152_1' -repo: malwaredllc/byob -commit: 9291b54ed6a1c727030c571a6ebdf7b344781c8f -source: pycryptodome -target: pycryptodomex -pair_id: pycryptodome,pycryptodomex -filepath: byob/modules/ransom.py -program_element: attribute access -cardinality: 1-1 -properties: -- attribute name change -source_version_line: '68' -target_version_line: '68' diff --git a/data/codechange/152_2.yaml b/data/codechange/152_2.yaml deleted file mode 100644 index 7b46e93..0000000 --- a/data/codechange/152_2.yaml +++ /dev/null @@ -1,13 +0,0 @@ -id: '152_2' -repo: malwaredllc/byob -commit: 9291b54ed6a1c727030c571a6ebdf7b344781c8f -source: pycryptodome -target: pycryptodomex -pair_id: pycryptodome,pycryptodomex -filepath: byob/modules/ransom.py -program_element: attribute access -cardinality: 1-1 -properties: -- attribute name change -source_version_line: '131' -target_version_line: '131' diff --git a/data/codechange/152_3.yaml b/data/codechange/152_3.yaml deleted file mode 100644 index de66a1b..0000000 --- a/data/codechange/152_3.yaml +++ /dev/null @@ -1,13 +0,0 @@ -id: '152_3' -repo: malwaredllc/byob -commit: 9291b54ed6a1c727030c571a6ebdf7b344781c8f -source: pycryptodome -target: pycryptodomex -pair_id: pycryptodome,pycryptodomex -filepath: byob/modules/ransom.py -program_element: attribute access -cardinality: 1-1 -properties: -- attribute name change -source_version_line: '187' -target_version_line: '187' diff --git a/data/codechange/152_4.yaml b/data/codechange/152_4.yaml deleted file mode 100644 index 95fad92..0000000 --- a/data/codechange/152_4.yaml +++ /dev/null @@ -1,13 +0,0 @@ -id: '152_4' -repo: malwaredllc/byob -commit: 9291b54ed6a1c727030c571a6ebdf7b344781c8f -source: pycryptodome -target: pycryptodomex -pair_id: pycryptodome,pycryptodomex -filepath: byob/modules/ransom.py -program_element: attribute access -cardinality: 1-1 -properties: -- attribute name change -source_version_line: '212' -target_version_line: '212' diff --git a/data/codechange/153_1.yaml b/data/codechange/153_1.yaml deleted file mode 100644 index 3a285b6..0000000 --- a/data/codechange/153_1.yaml +++ /dev/null @@ -1,13 +0,0 @@ -id: '153_1' -repo: malwaredllc/byob -commit: 9291b54ed6a1c727030c571a6ebdf7b344781c8f -source: pycryptodome -target: pycryptodomex -pair_id: pycryptodome,pycryptodomex -filepath: byob/modules/ransom.py -program_element: function call -cardinality: 1-1 -properties: -- function name change -source_version_line: '75' -target_version_line: '75' diff --git a/data/codechange/153_2.yaml b/data/codechange/153_2.yaml deleted file mode 100644 index f435d4b..0000000 --- a/data/codechange/153_2.yaml +++ /dev/null @@ -1,13 +0,0 @@ -id: '153_2' -repo: malwaredllc/byob -commit: 9291b54ed6a1c727030c571a6ebdf7b344781c8f -source: pycryptodome -target: pycryptodomex -pair_id: pycryptodome,pycryptodomex -filepath: byob/modules/ransom.py -program_element: function call -cardinality: 1-1 -properties: -- function name change -source_version_line: '132' -target_version_line: '132' diff --git a/data/codechange/153_3.yaml b/data/codechange/153_3.yaml deleted file mode 100644 index 7a9c6b8..0000000 --- a/data/codechange/153_3.yaml +++ /dev/null @@ -1,13 +0,0 @@ -id: '153_3' -repo: malwaredllc/byob -commit: 9291b54ed6a1c727030c571a6ebdf7b344781c8f -source: pycryptodome -target: pycryptodomex -pair_id: pycryptodome,pycryptodomex -filepath: byob/modules/ransom.py -program_element: function call -cardinality: 1-1 -properties: -- function name change -source_version_line: '133' -target_version_line: '133' diff --git a/data/codechange/153_4.yaml b/data/codechange/153_4.yaml deleted file mode 100644 index 4d99838..0000000 --- a/data/codechange/153_4.yaml +++ /dev/null @@ -1,13 +0,0 @@ -id: '153_4' -repo: malwaredllc/byob -commit: 9291b54ed6a1c727030c571a6ebdf7b344781c8f -source: pycryptodome -target: pycryptodomex -pair_id: pycryptodome,pycryptodomex -filepath: byob/modules/ransom.py -program_element: function call -cardinality: 1-1 -properties: -- function name change -source_version_line: '188' -target_version_line: '188' diff --git a/data/codechange/153_5.yaml b/data/codechange/153_5.yaml deleted file mode 100644 index 27c16bc..0000000 --- a/data/codechange/153_5.yaml +++ /dev/null @@ -1,13 +0,0 @@ -id: '153_5' -repo: malwaredllc/byob -commit: 9291b54ed6a1c727030c571a6ebdf7b344781c8f -source: pycryptodome -target: pycryptodomex -pair_id: pycryptodome,pycryptodomex -filepath: byob/modules/ransom.py -program_element: function call -cardinality: 1-1 -properties: -- function name change -source_version_line: '213' -target_version_line: '213' diff --git a/data/codechange/154_1.yaml b/data/codechange/154_1.yaml deleted file mode 100644 index b3fd73d..0000000 --- a/data/codechange/154_1.yaml +++ /dev/null @@ -1,13 +0,0 @@ -id: '154_1' -repo: milvus-io/bootcamp -commit: 89c7afc6548362e9bbf1dbf6142aabb02bc3bb93 -source: pymilvus-orm -target: pymilvus -pair_id: pymilvus-orm,pymilvus -filepath: benchmark_test/scripts/milvus_helpers.py -program_element: import -cardinality: 1-1 -properties: -- module name change -source_version_line: '2' -target_version_line: '2' diff --git a/data/codechange/154_2.yaml b/data/codechange/154_2.yaml deleted file mode 100644 index 6f09106..0000000 --- a/data/codechange/154_2.yaml +++ /dev/null @@ -1,13 +0,0 @@ -id: '154_2' -repo: milvus-io/bootcamp -commit: 89c7afc6548362e9bbf1dbf6142aabb02bc3bb93 -source: pymilvus-orm -target: pymilvus -pair_id: pymilvus-orm,pymilvus -filepath: benchmark_test/scripts/milvus_helpers.py -program_element: import -cardinality: 1-1 -properties: -- module name change -source_version_line: '3' -target_version_line: '2' diff --git a/data/codechange/154_3.yaml b/data/codechange/154_3.yaml deleted file mode 100644 index ff53e40..0000000 --- a/data/codechange/154_3.yaml +++ /dev/null @@ -1,13 +0,0 @@ -id: '154_3' -repo: milvus-io/bootcamp -commit: 89c7afc6548362e9bbf1dbf6142aabb02bc3bb93 -source: pymilvus-orm -target: pymilvus -pair_id: pymilvus-orm,pymilvus -filepath: benchmark_test/scripts/milvus_helpers.py -program_element: import -cardinality: 1-1 -properties: -- module name change -source_version_line: '4' -target_version_line: '2' diff --git a/data/codechange/154_4.yaml b/data/codechange/154_4.yaml deleted file mode 100644 index 5fe36b3..0000000 --- a/data/codechange/154_4.yaml +++ /dev/null @@ -1,13 +0,0 @@ -id: '154_4' -repo: milvus-io/bootcamp -commit: 89c7afc6548362e9bbf1dbf6142aabb02bc3bb93 -source: pymilvus-orm -target: pymilvus -pair_id: pymilvus-orm,pymilvus -filepath: benchmark_test/scripts/milvus_helpers.py -program_element: import -cardinality: 1-1 -properties: -- module name change -source_version_line: '5' -target_version_line: '2' diff --git a/data/codechange/154_5.yaml b/data/codechange/154_5.yaml deleted file mode 100644 index ec0ee66..0000000 --- a/data/codechange/154_5.yaml +++ /dev/null @@ -1,13 +0,0 @@ -id: '154_5' -repo: milvus-io/bootcamp -commit: 89c7afc6548362e9bbf1dbf6142aabb02bc3bb93 -source: pymilvus-orm -target: pymilvus -pair_id: pymilvus-orm,pymilvus -filepath: benchmark_test/scripts/milvus_helpers.py -program_element: import -cardinality: 1-1 -properties: -- module name change -source_version_line: '7' -target_version_line: '2' diff --git a/data/codechange/155_1.yaml b/data/codechange/155_1.yaml deleted file mode 100644 index 6d6a90c..0000000 --- a/data/codechange/155_1.yaml +++ /dev/null @@ -1,14 +0,0 @@ -id: '155_1' -repo: milvus-io/bootcamp -commit: 89c7afc6548362e9bbf1dbf6142aabb02bc3bb93 -source: pymilvus-orm -target: pymilvus -pair_id: pymilvus-orm,pymilvus -filepath: benchmark_test/scripts/milvus_helpers.py -program_element: function call -cardinality: 1-1 -properties: -- argument addition -- function name change -source_version_line: '98' -target_version_line: '96' diff --git a/data/codechange/156_1.yaml b/data/codechange/156_1.yaml deleted file mode 100644 index f16f16b..0000000 --- a/data/codechange/156_1.yaml +++ /dev/null @@ -1,13 +0,0 @@ -id: '156_1' -repo: milvus-io/bootcamp -commit: a7f4c3f13e007116d88d9a2776f471a4e4f1fc81 -source: pymilvus-orm -target: pymilvus -pair_id: pymilvus-orm,pymilvus -filepath: solutions/question_answering_system/quick_deploy/server/src/milvus_helpers.py -program_element: import -cardinality: n-1 -properties: -- module name change -source_version_line: 2-5:7 -target_version_line: '2' diff --git a/data/codechange/157_1.yaml b/data/codechange/157_1.yaml deleted file mode 100644 index 252edae..0000000 --- a/data/codechange/157_1.yaml +++ /dev/null @@ -1,13 +0,0 @@ -id: '157_1' -repo: milvus-io/bootcamp -commit: e5073e4c0c3e799822e939268d80c8f0601ea4cf -source: pymilvus-orm -target: pymilvus -pair_id: pymilvus-orm,pymilvus -filepath: solutions/video_similarity_search/object_detection/server/src/milvus_helpers.py -program_element: import -cardinality: n-1 -properties: -- module name change -source_version_line: 2-5:7 -target_version_line: '3' diff --git a/data/codechange/158_1.yaml b/data/codechange/158_1.yaml deleted file mode 100644 index b09ff14..0000000 --- a/data/codechange/158_1.yaml +++ /dev/null @@ -1,13 +0,0 @@ -id: '158_1' -repo: milvus-io/bootcamp -commit: e5073e4c0c3e799822e939268d80c8f0601ea4cf -source: pymilvus-orm -target: pymilvus -pair_id: pymilvus-orm,pymilvus -filepath: solutions/video_similarity_search/quick_deploy/server/src/milvus_helpers.py -program_element: import -cardinality: n-1 -properties: -- module name change -source_version_line: 2-5:7 -target_version_line: '3' diff --git a/data/codechange/159_1.yaml b/data/codechange/159_1.yaml deleted file mode 100644 index 2d277c1..0000000 --- a/data/codechange/159_1.yaml +++ /dev/null @@ -1,13 +0,0 @@ -id: '159_1' -repo: toufool/auto-split -commit: 86244b6c190f48200826788fa6af4bd8d26b230f -source: pyqt5 -target: pyside6 -pair_id: pyqt5,pyside6 -filepath: src/about.py -program_element: attribute access -cardinality: 1-1 -properties: -- attribute name change -source_version_line: '32' -target_version_line: '32' diff --git a/data/codechange/159_2.yaml b/data/codechange/159_2.yaml deleted file mode 100644 index 7118585..0000000 --- a/data/codechange/159_2.yaml +++ /dev/null @@ -1,13 +0,0 @@ -id: '159_2' -repo: toufool/auto-split -commit: 86244b6c190f48200826788fa6af4bd8d26b230f -source: pyqt5 -target: pyside6 -pair_id: pyqt5,pyside6 -filepath: src/about.py -program_element: attribute access -cardinality: 1-1 -properties: -- attribute name change -source_version_line: '32' -target_version_line: '32' diff --git a/data/codechange/159_3.yaml b/data/codechange/159_3.yaml deleted file mode 100644 index c623c98..0000000 --- a/data/codechange/159_3.yaml +++ /dev/null @@ -1,13 +0,0 @@ -id: '159_3' -repo: toufool/auto-split -commit: 86244b6c190f48200826788fa6af4bd8d26b230f -source: pyqt5 -target: pyside6 -pair_id: pyqt5,pyside6 -filepath: src/about.py -program_element: attribute access -cardinality: 1-1 -properties: -- attribute name change -source_version_line: '48' -target_version_line: '48' diff --git a/data/codechange/15_1.yaml b/data/codechange/15_1.yaml deleted file mode 100644 index d643b0f..0000000 --- a/data/codechange/15_1.yaml +++ /dev/null @@ -1,13 +0,0 @@ -id: '15_1' -repo: stefal/rtkbase -commit: a4c347a2ede5fba1d0e787193b7dc4079ab4fd6f -source: eventlet -target: gevent -pair_id: eventlet,gevent -filepath: web_app/server.py -program_element: import -cardinality: 1-1 -properties: -- full statement replacement -source_version_line: '28' -target_version_line: '26' diff --git a/data/codechange/160_1.yaml b/data/codechange/160_1.yaml deleted file mode 100644 index d7c0282..0000000 --- a/data/codechange/160_1.yaml +++ /dev/null @@ -1,13 +0,0 @@ -id: '160_1' -repo: toufool/auto-split -commit: 86244b6c190f48200826788fa6af4bd8d26b230f -source: pyqt5 -target: pyside6 -pair_id: pyqt5,pyside6 -filepath: src/about.py -program_element: function call -cardinality: 1-1 -properties: -- function name change -source_version_line: '77' -target_version_line: '79' diff --git a/data/codechange/161_1.yaml b/data/codechange/161_1.yaml deleted file mode 100644 index 70915ef..0000000 --- a/data/codechange/161_1.yaml +++ /dev/null @@ -1,13 +0,0 @@ -id: '161_1' -repo: toufool/auto-split -commit: 86244b6c190f48200826788fa6af4bd8d26b230f -source: pyqt5 -target: pyside6 -pair_id: pyqt5,pyside6 -filepath: src/about.py -program_element: import -cardinality: 1-1 -properties: -- module name change -source_version_line: '9' -target_version_line: '9' diff --git a/data/codechange/162_1.yaml b/data/codechange/162_1.yaml deleted file mode 100644 index a884880..0000000 --- a/data/codechange/162_1.yaml +++ /dev/null @@ -1,13 +0,0 @@ -id: '162_1' -repo: toufool/auto-split -commit: 86244b6c190f48200826788fa6af4bd8d26b230f -source: pyqt5 -target: pyside6 -pair_id: pyqt5,pyside6 -filepath: src/AutoSplit.py -program_element: function call -cardinality: 1-1 -properties: -- argument transformation -source_version_line: '139' -target_version_line: '141' diff --git a/data/codechange/163_1.yaml b/data/codechange/163_1.yaml deleted file mode 100644 index 3f40bde..0000000 --- a/data/codechange/163_1.yaml +++ /dev/null @@ -1,13 +0,0 @@ -id: '163_1' -repo: toufool/auto-split -commit: 86244b6c190f48200826788fa6af4bd8d26b230f -source: pyqt5 -target: pyside6 -pair_id: pyqt5,pyside6 -filepath: src/AutoSplit.py -program_element: attribute access -cardinality: 1-1 -properties: -- attribute name change -source_version_line: '164' -target_version_line: '166' diff --git a/data/codechange/163_2.yaml b/data/codechange/163_2.yaml deleted file mode 100644 index 15f1340..0000000 --- a/data/codechange/163_2.yaml +++ /dev/null @@ -1,13 +0,0 @@ -id: '163_2' -repo: toufool/auto-split -commit: 86244b6c190f48200826788fa6af4bd8d26b230f -source: pyqt5 -target: pyside6 -pair_id: pyqt5,pyside6 -filepath: src/AutoSplit.py -program_element: attribute access -cardinality: 1-1 -properties: -- attribute name change -source_version_line: '617' -target_version_line: '619' diff --git a/data/codechange/163_3.yaml b/data/codechange/163_3.yaml deleted file mode 100644 index e777469..0000000 --- a/data/codechange/163_3.yaml +++ /dev/null @@ -1,13 +0,0 @@ -id: '163_3' -repo: toufool/auto-split -commit: 86244b6c190f48200826788fa6af4bd8d26b230f -source: pyqt5 -target: pyside6 -pair_id: pyqt5,pyside6 -filepath: src/AutoSplit.py -program_element: attribute access -cardinality: 1-1 -properties: -- attribute name change -source_version_line: '680' -target_version_line: '682' diff --git a/data/codechange/163_4.yaml b/data/codechange/163_4.yaml deleted file mode 100644 index 09fd720..0000000 --- a/data/codechange/163_4.yaml +++ /dev/null @@ -1,13 +0,0 @@ -id: '163_4' -repo: toufool/auto-split -commit: 86244b6c190f48200826788fa6af4bd8d26b230f -source: pyqt5 -target: pyside6 -pair_id: pyqt5,pyside6 -filepath: src/AutoSplit.py -program_element: attribute access -cardinality: 1-1 -properties: -- attribute name change -source_version_line: '881' -target_version_line: '883' diff --git a/data/codechange/164_1.yaml b/data/codechange/164_1.yaml deleted file mode 100644 index af70ca5..0000000 --- a/data/codechange/164_1.yaml +++ /dev/null @@ -1,13 +0,0 @@ -id: '164_1' -repo: toufool/auto-split -commit: 86244b6c190f48200826788fa6af4bd8d26b230f -source: pyqt5 -target: pyside6 -pair_id: pyqt5,pyside6 -filepath: src/AutoSplit.py -program_element: import -cardinality: 1-1 -properties: -- module name change -source_version_line: '4' -target_version_line: '4' diff --git a/data/codechange/165_1.yaml b/data/codechange/165_1.yaml deleted file mode 100644 index ca6767b..0000000 --- a/data/codechange/165_1.yaml +++ /dev/null @@ -1,13 +0,0 @@ -id: '165_1' -repo: toufool/auto-split -commit: 86244b6c190f48200826788fa6af4bd8d26b230f -source: pyqt5 -target: pyside6 -pair_id: pyqt5,pyside6 -filepath: src/AutoSplit.py -program_element: function call -cardinality: 1-1 -properties: -- function name change -source_version_line: '968' -target_version_line: '961' diff --git a/data/codechange/166_1.yaml b/data/codechange/166_1.yaml deleted file mode 100644 index 71994f8..0000000 --- a/data/codechange/166_1.yaml +++ /dev/null @@ -1,13 +0,0 @@ -id: '166_1' -repo: toufool/auto-split -commit: 86244b6c190f48200826788fa6af4bd8d26b230f -source: pyqt5 -target: pyside6 -pair_id: pyqt5,pyside6 -filepath: src/design.py -program_element: attribute access -cardinality: 1-1 -properties: -- attribute name change -source_version_line: '29' -target_version_line: '31' diff --git a/data/codechange/166_10.yaml b/data/codechange/166_10.yaml deleted file mode 100644 index d471369..0000000 --- a/data/codechange/166_10.yaml +++ /dev/null @@ -1,13 +0,0 @@ -id: '166_10' -repo: toufool/auto-split -commit: 86244b6c190f48200826788fa6af4bd8d26b230f -source: pyqt5 -target: pyside6 -pair_id: pyqt5,pyside6 -filepath: src/design.py -program_element: attribute access -cardinality: 1-1 -properties: -- attribute name change -source_version_line: '109' -target_version_line: '111' diff --git a/data/codechange/166_11.yaml b/data/codechange/166_11.yaml deleted file mode 100644 index a92e339..0000000 --- a/data/codechange/166_11.yaml +++ /dev/null @@ -1,13 +0,0 @@ -id: '166_11' -repo: toufool/auto-split -commit: 86244b6c190f48200826788fa6af4bd8d26b230f -source: pyqt5 -target: pyside6 -pair_id: pyqt5,pyside6 -filepath: src/design.py -program_element: attribute access -cardinality: 1-1 -properties: -- attribute name change -source_version_line: '155' -target_version_line: '157' diff --git a/data/codechange/166_12.yaml b/data/codechange/166_12.yaml deleted file mode 100644 index 45709ca..0000000 --- a/data/codechange/166_12.yaml +++ /dev/null @@ -1,13 +0,0 @@ -id: '166_12' -repo: toufool/auto-split -commit: 86244b6c190f48200826788fa6af4bd8d26b230f -source: pyqt5 -target: pyside6 -pair_id: pyqt5,pyside6 -filepath: src/design.py -program_element: attribute access -cardinality: 1-1 -properties: -- attribute name change -source_version_line: '172' -target_version_line: '174' diff --git a/data/codechange/166_13.yaml b/data/codechange/166_13.yaml deleted file mode 100644 index 7740b9a..0000000 --- a/data/codechange/166_13.yaml +++ /dev/null @@ -1,13 +0,0 @@ -id: '166_13' -repo: toufool/auto-split -commit: 86244b6c190f48200826788fa6af4bd8d26b230f -source: pyqt5 -target: pyside6 -pair_id: pyqt5,pyside6 -filepath: src/design.py -program_element: attribute access -cardinality: 1-1 -properties: -- attribute name change -source_version_line: '176' -target_version_line: '178' diff --git a/data/codechange/166_14.yaml b/data/codechange/166_14.yaml deleted file mode 100644 index 0821f9b..0000000 --- a/data/codechange/166_14.yaml +++ /dev/null @@ -1,13 +0,0 @@ -id: '166_14' -repo: toufool/auto-split -commit: 86244b6c190f48200826788fa6af4bd8d26b230f -source: pyqt5 -target: pyside6 -pair_id: pyqt5,pyside6 -filepath: src/design.py -program_element: attribute access -cardinality: 1-1 -properties: -- attribute name change -source_version_line: '180' -target_version_line: '182' diff --git a/data/codechange/166_15.yaml b/data/codechange/166_15.yaml deleted file mode 100644 index 017de1a..0000000 --- a/data/codechange/166_15.yaml +++ /dev/null @@ -1,13 +0,0 @@ -id: '166_15' -repo: toufool/auto-split -commit: 86244b6c190f48200826788fa6af4bd8d26b230f -source: pyqt5 -target: pyside6 -pair_id: pyqt5,pyside6 -filepath: src/design.py -program_element: attribute access -cardinality: 1-1 -properties: -- attribute name change -source_version_line: '184' -target_version_line: '186' diff --git a/data/codechange/166_16.yaml b/data/codechange/166_16.yaml deleted file mode 100644 index bcbcf56..0000000 --- a/data/codechange/166_16.yaml +++ /dev/null @@ -1,13 +0,0 @@ -id: '166_16' -repo: toufool/auto-split -commit: 86244b6c190f48200826788fa6af4bd8d26b230f -source: pyqt5 -target: pyside6 -pair_id: pyqt5,pyside6 -filepath: src/design.py -program_element: attribute access -cardinality: 1-1 -properties: -- attribute name change -source_version_line: '188' -target_version_line: '190' diff --git a/data/codechange/166_17.yaml b/data/codechange/166_17.yaml deleted file mode 100644 index bebd5de..0000000 --- a/data/codechange/166_17.yaml +++ /dev/null @@ -1,13 +0,0 @@ -id: '166_17' -repo: toufool/auto-split -commit: 86244b6c190f48200826788fa6af4bd8d26b230f -source: pyqt5 -target: pyside6 -pair_id: pyqt5,pyside6 -filepath: src/design.py -program_element: attribute access -cardinality: 1-1 -properties: -- attribute name change -source_version_line: '192' -target_version_line: '194' diff --git a/data/codechange/166_18.yaml b/data/codechange/166_18.yaml deleted file mode 100644 index 7fe8297..0000000 --- a/data/codechange/166_18.yaml +++ /dev/null @@ -1,13 +0,0 @@ -id: '166_18' -repo: toufool/auto-split -commit: 86244b6c190f48200826788fa6af4bd8d26b230f -source: pyqt5 -target: pyside6 -pair_id: pyqt5,pyside6 -filepath: src/design.py -program_element: attribute access -cardinality: 1-1 -properties: -- attribute name change -source_version_line: '194' -target_version_line: '196' diff --git a/data/codechange/166_19.yaml b/data/codechange/166_19.yaml deleted file mode 100644 index e9b63b1..0000000 --- a/data/codechange/166_19.yaml +++ /dev/null @@ -1,13 +0,0 @@ -id: '166_19' -repo: toufool/auto-split -commit: 86244b6c190f48200826788fa6af4bd8d26b230f -source: pyqt5 -target: pyside6 -pair_id: pyqt5,pyside6 -filepath: src/design.py -program_element: attribute access -cardinality: 1-1 -properties: -- attribute name change -source_version_line: '198' -target_version_line: '200' diff --git a/data/codechange/166_2.yaml b/data/codechange/166_2.yaml deleted file mode 100644 index f3d6cb5..0000000 --- a/data/codechange/166_2.yaml +++ /dev/null @@ -1,13 +0,0 @@ -id: '166_2' -repo: toufool/auto-split -commit: 86244b6c190f48200826788fa6af4bd8d26b230f -source: pyqt5 -target: pyside6 -pair_id: pyqt5,pyside6 -filepath: src/design.py -program_element: attribute access -cardinality: 1-1 -properties: -- attribute name change -source_version_line: '37' -target_version_line: '39' diff --git a/data/codechange/166_20.yaml b/data/codechange/166_20.yaml deleted file mode 100644 index b8e251e..0000000 --- a/data/codechange/166_20.yaml +++ /dev/null @@ -1,13 +0,0 @@ -id: '166_20' -repo: toufool/auto-split -commit: 86244b6c190f48200826788fa6af4bd8d26b230f -source: pyqt5 -target: pyside6 -pair_id: pyqt5,pyside6 -filepath: src/design.py -program_element: attribute access -cardinality: 1-1 -properties: -- attribute name change -source_version_line: '200' -target_version_line: '202' diff --git a/data/codechange/166_21.yaml b/data/codechange/166_21.yaml deleted file mode 100644 index 4e9cf41..0000000 --- a/data/codechange/166_21.yaml +++ /dev/null @@ -1,13 +0,0 @@ -id: '166_21' -repo: toufool/auto-split -commit: 86244b6c190f48200826788fa6af4bd8d26b230f -source: pyqt5 -target: pyside6 -pair_id: pyqt5,pyside6 -filepath: src/design.py -program_element: attribute access -cardinality: 1-1 -properties: -- attribute name change -source_version_line: '204' -target_version_line: '206' diff --git a/data/codechange/166_22.yaml b/data/codechange/166_22.yaml deleted file mode 100644 index e47d00d..0000000 --- a/data/codechange/166_22.yaml +++ /dev/null @@ -1,13 +0,0 @@ -id: '166_22' -repo: toufool/auto-split -commit: 86244b6c190f48200826788fa6af4bd8d26b230f -source: pyqt5 -target: pyside6 -pair_id: pyqt5,pyside6 -filepath: src/design.py -program_element: attribute access -cardinality: 1-1 -properties: -- attribute name change -source_version_line: '206' -target_version_line: '208' diff --git a/data/codechange/166_23.yaml b/data/codechange/166_23.yaml deleted file mode 100644 index 5dc7084..0000000 --- a/data/codechange/166_23.yaml +++ /dev/null @@ -1,13 +0,0 @@ -id: '166_23' -repo: toufool/auto-split -commit: 86244b6c190f48200826788fa6af4bd8d26b230f -source: pyqt5 -target: pyside6 -pair_id: pyqt5,pyside6 -filepath: src/design.py -program_element: attribute access -cardinality: 1-1 -properties: -- attribute name change -source_version_line: '210' -target_version_line: '212' diff --git a/data/codechange/166_24.yaml b/data/codechange/166_24.yaml deleted file mode 100644 index d54dcc6..0000000 --- a/data/codechange/166_24.yaml +++ /dev/null @@ -1,13 +0,0 @@ -id: '166_24' -repo: toufool/auto-split -commit: 86244b6c190f48200826788fa6af4bd8d26b230f -source: pyqt5 -target: pyside6 -pair_id: pyqt5,pyside6 -filepath: src/design.py -program_element: attribute access -cardinality: 1-1 -properties: -- attribute name change -source_version_line: '212' -target_version_line: '214' diff --git a/data/codechange/166_25.yaml b/data/codechange/166_25.yaml deleted file mode 100644 index 4414cca..0000000 --- a/data/codechange/166_25.yaml +++ /dev/null @@ -1,13 +0,0 @@ -id: '166_25' -repo: toufool/auto-split -commit: 86244b6c190f48200826788fa6af4bd8d26b230f -source: pyqt5 -target: pyside6 -pair_id: pyqt5,pyside6 -filepath: src/design.py -program_element: attribute access -cardinality: 1-1 -properties: -- attribute name change -source_version_line: '216' -target_version_line: '218' diff --git a/data/codechange/166_26.yaml b/data/codechange/166_26.yaml deleted file mode 100644 index 5b3bd53..0000000 --- a/data/codechange/166_26.yaml +++ /dev/null @@ -1,13 +0,0 @@ -id: '166_26' -repo: toufool/auto-split -commit: 86244b6c190f48200826788fa6af4bd8d26b230f -source: pyqt5 -target: pyside6 -pair_id: pyqt5,pyside6 -filepath: src/design.py -program_element: attribute access -cardinality: 1-1 -properties: -- attribute name change -source_version_line: '218' -target_version_line: '220' diff --git a/data/codechange/166_27.yaml b/data/codechange/166_27.yaml deleted file mode 100644 index 916391d..0000000 --- a/data/codechange/166_27.yaml +++ /dev/null @@ -1,13 +0,0 @@ -id: '166_27' -repo: toufool/auto-split -commit: 86244b6c190f48200826788fa6af4bd8d26b230f -source: pyqt5 -target: pyside6 -pair_id: pyqt5,pyside6 -filepath: src/design.py -program_element: attribute access -cardinality: 1-1 -properties: -- attribute name change -source_version_line: '222' -target_version_line: '224' diff --git a/data/codechange/166_28.yaml b/data/codechange/166_28.yaml deleted file mode 100644 index 0c7b833..0000000 --- a/data/codechange/166_28.yaml +++ /dev/null @@ -1,13 +0,0 @@ -id: '166_28' -repo: toufool/auto-split -commit: 86244b6c190f48200826788fa6af4bd8d26b230f -source: pyqt5 -target: pyside6 -pair_id: pyqt5,pyside6 -filepath: src/design.py -program_element: attribute access -cardinality: 1-1 -properties: -- attribute name change -source_version_line: '224' -target_version_line: '226' diff --git a/data/codechange/166_29.yaml b/data/codechange/166_29.yaml deleted file mode 100644 index a2f0964..0000000 --- a/data/codechange/166_29.yaml +++ /dev/null @@ -1,13 +0,0 @@ -id: '166_29' -repo: toufool/auto-split -commit: 86244b6c190f48200826788fa6af4bd8d26b230f -source: pyqt5 -target: pyside6 -pair_id: pyqt5,pyside6 -filepath: src/design.py -program_element: attribute access -cardinality: 1-1 -properties: -- attribute name change -source_version_line: '228' -target_version_line: '230' diff --git a/data/codechange/166_3.yaml b/data/codechange/166_3.yaml deleted file mode 100644 index e1b997d..0000000 --- a/data/codechange/166_3.yaml +++ /dev/null @@ -1,13 +0,0 @@ -id: '166_3' -repo: toufool/auto-split -commit: 86244b6c190f48200826788fa6af4bd8d26b230f -source: pyqt5 -target: pyside6 -pair_id: pyqt5,pyside6 -filepath: src/design.py -program_element: attribute access -cardinality: 1-1 -properties: -- attribute name change -source_version_line: '40' -target_version_line: '42' diff --git a/data/codechange/166_30.yaml b/data/codechange/166_30.yaml deleted file mode 100644 index a49fe77..0000000 --- a/data/codechange/166_30.yaml +++ /dev/null @@ -1,13 +0,0 @@ -id: '166_30' -repo: toufool/auto-split -commit: 86244b6c190f48200826788fa6af4bd8d26b230f -source: pyqt5 -target: pyside6 -pair_id: pyqt5,pyside6 -filepath: src/design.py -program_element: attribute access -cardinality: 1-1 -properties: -- attribute name change -source_version_line: '230' -target_version_line: '232' diff --git a/data/codechange/166_31.yaml b/data/codechange/166_31.yaml deleted file mode 100644 index 91b8a02..0000000 --- a/data/codechange/166_31.yaml +++ /dev/null @@ -1,13 +0,0 @@ -id: '166_31' -repo: toufool/auto-split -commit: 86244b6c190f48200826788fa6af4bd8d26b230f -source: pyqt5 -target: pyside6 -pair_id: pyqt5,pyside6 -filepath: src/design.py -program_element: attribute access -cardinality: 1-1 -properties: -- attribute name change -source_version_line: '234' -target_version_line: '236' diff --git a/data/codechange/166_32.yaml b/data/codechange/166_32.yaml deleted file mode 100644 index 195bb2a..0000000 --- a/data/codechange/166_32.yaml +++ /dev/null @@ -1,13 +0,0 @@ -id: '166_32' -repo: toufool/auto-split -commit: 86244b6c190f48200826788fa6af4bd8d26b230f -source: pyqt5 -target: pyside6 -pair_id: pyqt5,pyside6 -filepath: src/design.py -program_element: attribute access -cardinality: 1-1 -properties: -- attribute name change -source_version_line: '236' -target_version_line: '238' diff --git a/data/codechange/166_33.yaml b/data/codechange/166_33.yaml deleted file mode 100644 index b0eec3a..0000000 --- a/data/codechange/166_33.yaml +++ /dev/null @@ -1,13 +0,0 @@ -id: '166_33' -repo: toufool/auto-split -commit: 86244b6c190f48200826788fa6af4bd8d26b230f -source: pyqt5 -target: pyside6 -pair_id: pyqt5,pyside6 -filepath: src/design.py -program_element: attribute access -cardinality: 1-1 -properties: -- attribute name change -source_version_line: '240' -target_version_line: '242' diff --git a/data/codechange/166_34.yaml b/data/codechange/166_34.yaml deleted file mode 100644 index 83e4700..0000000 --- a/data/codechange/166_34.yaml +++ /dev/null @@ -1,13 +0,0 @@ -id: '166_34' -repo: toufool/auto-split -commit: 86244b6c190f48200826788fa6af4bd8d26b230f -source: pyqt5 -target: pyside6 -pair_id: pyqt5,pyside6 -filepath: src/design.py -program_element: attribute access -cardinality: 1-1 -properties: -- attribute name change -source_version_line: '242' -target_version_line: '244' diff --git a/data/codechange/166_35.yaml b/data/codechange/166_35.yaml deleted file mode 100644 index 9e58974..0000000 --- a/data/codechange/166_35.yaml +++ /dev/null @@ -1,13 +0,0 @@ -id: '166_35' -repo: toufool/auto-split -commit: 86244b6c190f48200826788fa6af4bd8d26b230f -source: pyqt5 -target: pyside6 -pair_id: pyqt5,pyside6 -filepath: src/design.py -program_element: attribute access -cardinality: 1-1 -properties: -- attribute name change -source_version_line: '249' -target_version_line: '251' diff --git a/data/codechange/166_36.yaml b/data/codechange/166_36.yaml deleted file mode 100644 index 3e93c1c..0000000 --- a/data/codechange/166_36.yaml +++ /dev/null @@ -1,13 +0,0 @@ -id: '166_36' -repo: toufool/auto-split -commit: 86244b6c190f48200826788fa6af4bd8d26b230f -source: pyqt5 -target: pyside6 -pair_id: pyqt5,pyside6 -filepath: src/design.py -program_element: attribute access -cardinality: 1-1 -properties: -- attribute name change -source_version_line: '251' -target_version_line: '253' diff --git a/data/codechange/166_37.yaml b/data/codechange/166_37.yaml deleted file mode 100644 index 4edb1ee..0000000 --- a/data/codechange/166_37.yaml +++ /dev/null @@ -1,13 +0,0 @@ -id: '166_37' -repo: toufool/auto-split -commit: 86244b6c190f48200826788fa6af4bd8d26b230f -source: pyqt5 -target: pyside6 -pair_id: pyqt5,pyside6 -filepath: src/design.py -program_element: attribute access -cardinality: 1-1 -properties: -- attribute name change -source_version_line: '262' -target_version_line: '264' diff --git a/data/codechange/166_38.yaml b/data/codechange/166_38.yaml deleted file mode 100644 index d4b55e4..0000000 --- a/data/codechange/166_38.yaml +++ /dev/null @@ -1,13 +0,0 @@ -id: '166_38' -repo: toufool/auto-split -commit: 86244b6c190f48200826788fa6af4bd8d26b230f -source: pyqt5 -target: pyside6 -pair_id: pyqt5,pyside6 -filepath: src/design.py -program_element: attribute access -cardinality: 1-1 -properties: -- attribute name change -source_version_line: '308' -target_version_line: '310' diff --git a/data/codechange/166_39.yaml b/data/codechange/166_39.yaml deleted file mode 100644 index 125d375..0000000 --- a/data/codechange/166_39.yaml +++ /dev/null @@ -1,13 +0,0 @@ -id: '166_39' -repo: toufool/auto-split -commit: 86244b6c190f48200826788fa6af4bd8d26b230f -source: pyqt5 -target: pyside6 -pair_id: pyqt5,pyside6 -filepath: src/design.py -program_element: attribute access -cardinality: 1-1 -properties: -- attribute name change -source_version_line: '312' -target_version_line: '314' diff --git a/data/codechange/166_4.yaml b/data/codechange/166_4.yaml deleted file mode 100644 index 826108b..0000000 --- a/data/codechange/166_4.yaml +++ /dev/null @@ -1,13 +0,0 @@ -id: '166_4' -repo: toufool/auto-split -commit: 86244b6c190f48200826788fa6af4bd8d26b230f -source: pyqt5 -target: pyside6 -pair_id: pyqt5,pyside6 -filepath: src/design.py -program_element: attribute access -cardinality: 1-1 -properties: -- attribute name change -source_version_line: '52' -target_version_line: '54' diff --git a/data/codechange/166_40.yaml b/data/codechange/166_40.yaml deleted file mode 100644 index 25edd2a..0000000 --- a/data/codechange/166_40.yaml +++ /dev/null @@ -1,13 +0,0 @@ -id: '166_40' -repo: toufool/auto-split -commit: 86244b6c190f48200826788fa6af4bd8d26b230f -source: pyqt5 -target: pyside6 -pair_id: pyqt5,pyside6 -filepath: src/design.py -program_element: attribute access -cardinality: 1-1 -properties: -- attribute name change -source_version_line: '317' -target_version_line: '319' diff --git a/data/codechange/166_41.yaml b/data/codechange/166_41.yaml deleted file mode 100644 index 59b3598..0000000 --- a/data/codechange/166_41.yaml +++ /dev/null @@ -1,13 +0,0 @@ -id: '166_41' -repo: toufool/auto-split -commit: 86244b6c190f48200826788fa6af4bd8d26b230f -source: pyqt5 -target: pyside6 -pair_id: pyqt5,pyside6 -filepath: src/design.py -program_element: attribute access -cardinality: 1-1 -properties: -- attribute name change -source_version_line: '326' -target_version_line: '328' diff --git a/data/codechange/166_42.yaml b/data/codechange/166_42.yaml deleted file mode 100644 index b4ef3ab..0000000 --- a/data/codechange/166_42.yaml +++ /dev/null @@ -1,13 +0,0 @@ -id: '166_42' -repo: toufool/auto-split -commit: 86244b6c190f48200826788fa6af4bd8d26b230f -source: pyqt5 -target: pyside6 -pair_id: pyqt5,pyside6 -filepath: src/design.py -program_element: attribute access -cardinality: 1-1 -properties: -- attribute name change -source_version_line: '365' -target_version_line: '367' diff --git a/data/codechange/166_43.yaml b/data/codechange/166_43.yaml deleted file mode 100644 index 8252748..0000000 --- a/data/codechange/166_43.yaml +++ /dev/null @@ -1,13 +0,0 @@ -id: '166_43' -repo: toufool/auto-split -commit: 86244b6c190f48200826788fa6af4bd8d26b230f -source: pyqt5 -target: pyside6 -pair_id: pyqt5,pyside6 -filepath: src/design.py -program_element: attribute access -cardinality: 1-1 -properties: -- attribute name change -source_version_line: '373' -target_version_line: '375' diff --git a/data/codechange/166_44.yaml b/data/codechange/166_44.yaml deleted file mode 100644 index 244279b..0000000 --- a/data/codechange/166_44.yaml +++ /dev/null @@ -1,13 +0,0 @@ -id: '166_44' -repo: toufool/auto-split -commit: 86244b6c190f48200826788fa6af4bd8d26b230f -source: pyqt5 -target: pyside6 -pair_id: pyqt5,pyside6 -filepath: src/design.py -program_element: attribute access -cardinality: 1-1 -properties: -- attribute name change -source_version_line: '456' -target_version_line: '458' diff --git a/data/codechange/166_45.yaml b/data/codechange/166_45.yaml deleted file mode 100644 index c36d6c9..0000000 --- a/data/codechange/166_45.yaml +++ /dev/null @@ -1,13 +0,0 @@ -id: '166_45' -repo: toufool/auto-split -commit: 86244b6c190f48200826788fa6af4bd8d26b230f -source: pyqt5 -target: pyside6 -pair_id: pyqt5,pyside6 -filepath: src/design.py -program_element: attribute access -cardinality: 1-1 -properties: -- attribute name change -source_version_line: '458' -target_version_line: '460' diff --git a/data/codechange/166_46.yaml b/data/codechange/166_46.yaml deleted file mode 100644 index d869668..0000000 --- a/data/codechange/166_46.yaml +++ /dev/null @@ -1,13 +0,0 @@ -id: '166_46' -repo: toufool/auto-split -commit: 86244b6c190f48200826788fa6af4bd8d26b230f -source: pyqt5 -target: pyside6 -pair_id: pyqt5,pyside6 -filepath: src/design.py -program_element: attribute access -cardinality: 1-1 -properties: -- attribute name change -source_version_line: '460' -target_version_line: '462' diff --git a/data/codechange/166_47.yaml b/data/codechange/166_47.yaml deleted file mode 100644 index 126d724..0000000 --- a/data/codechange/166_47.yaml +++ /dev/null @@ -1,13 +0,0 @@ -id: '166_47' -repo: toufool/auto-split -commit: 86244b6c190f48200826788fa6af4bd8d26b230f -source: pyqt5 -target: pyside6 -pair_id: pyqt5,pyside6 -filepath: src/design.py -program_element: attribute access -cardinality: 1-1 -properties: -- attribute name change -source_version_line: '462' -target_version_line: '464' diff --git a/data/codechange/166_48.yaml b/data/codechange/166_48.yaml deleted file mode 100644 index 5221dcb..0000000 --- a/data/codechange/166_48.yaml +++ /dev/null @@ -1,13 +0,0 @@ -id: '166_48' -repo: toufool/auto-split -commit: 86244b6c190f48200826788fa6af4bd8d26b230f -source: pyqt5 -target: pyside6 -pair_id: pyqt5,pyside6 -filepath: src/design.py -program_element: attribute access -cardinality: 1-1 -properties: -- attribute name change -source_version_line: '464' -target_version_line: '466' diff --git a/data/codechange/166_5.yaml b/data/codechange/166_5.yaml deleted file mode 100644 index 78260f7..0000000 --- a/data/codechange/166_5.yaml +++ /dev/null @@ -1,13 +0,0 @@ -id: '166_5' -repo: toufool/auto-split -commit: 86244b6c190f48200826788fa6af4bd8d26b230f -source: pyqt5 -target: pyside6 -pair_id: pyqt5,pyside6 -filepath: src/design.py -program_element: attribute access -cardinality: 1-1 -properties: -- attribute name change -source_version_line: '77' -target_version_line: '79' diff --git a/data/codechange/166_6.yaml b/data/codechange/166_6.yaml deleted file mode 100644 index b088cce..0000000 --- a/data/codechange/166_6.yaml +++ /dev/null @@ -1,13 +0,0 @@ -id: '166_6' -repo: toufool/auto-split -commit: 86244b6c190f48200826788fa6af4bd8d26b230f -source: pyqt5 -target: pyside6 -pair_id: pyqt5,pyside6 -filepath: src/design.py -program_element: attribute access -cardinality: 1-1 -properties: -- attribute name change -source_version_line: '90' -target_version_line: '92' diff --git a/data/codechange/166_7.yaml b/data/codechange/166_7.yaml deleted file mode 100644 index 9f6558f..0000000 --- a/data/codechange/166_7.yaml +++ /dev/null @@ -1,13 +0,0 @@ -id: '166_7' -repo: toufool/auto-split -commit: 86244b6c190f48200826788fa6af4bd8d26b230f -source: pyqt5 -target: pyside6 -pair_id: pyqt5,pyside6 -filepath: src/design.py -program_element: attribute access -cardinality: 1-1 -properties: -- attribute name change -source_version_line: '94' -target_version_line: '96' diff --git a/data/codechange/166_8.yaml b/data/codechange/166_8.yaml deleted file mode 100644 index 3b5d384..0000000 --- a/data/codechange/166_8.yaml +++ /dev/null @@ -1,13 +0,0 @@ -id: '166_8' -repo: toufool/auto-split -commit: 86244b6c190f48200826788fa6af4bd8d26b230f -source: pyqt5 -target: pyside6 -pair_id: pyqt5,pyside6 -filepath: src/design.py -program_element: attribute access -cardinality: 1-1 -properties: -- attribute name change -source_version_line: '98' -target_version_line: '100' diff --git a/data/codechange/166_9.yaml b/data/codechange/166_9.yaml deleted file mode 100644 index 58f34b3..0000000 --- a/data/codechange/166_9.yaml +++ /dev/null @@ -1,13 +0,0 @@ -id: '166_9' -repo: toufool/auto-split -commit: 86244b6c190f48200826788fa6af4bd8d26b230f -source: pyqt5 -target: pyside6 -pair_id: pyqt5,pyside6 -filepath: src/design.py -program_element: attribute access -cardinality: 1-1 -properties: -- attribute name change -source_version_line: '102' -target_version_line: '104' diff --git a/data/codechange/167_1.yaml b/data/codechange/167_1.yaml deleted file mode 100644 index 9504943..0000000 --- a/data/codechange/167_1.yaml +++ /dev/null @@ -1,13 +0,0 @@ -id: '167_1' -repo: toufool/auto-split -commit: 86244b6c190f48200826788fa6af4bd8d26b230f -source: pyqt5 -target: pyside6 -pair_id: pyqt5,pyside6 -filepath: src/design.py -program_element: function call -cardinality: 1-1 -properties: -- function name change -source_version_line: '561' -target_version_line: '563' diff --git a/data/codechange/168_1.yaml b/data/codechange/168_1.yaml deleted file mode 100644 index 5c35102..0000000 --- a/data/codechange/168_1.yaml +++ /dev/null @@ -1,13 +0,0 @@ -id: '168_1' -repo: toufool/auto-split -commit: 86244b6c190f48200826788fa6af4bd8d26b230f -source: pyqt5 -target: pyside6 -pair_id: pyqt5,pyside6 -filepath: src/design.py -program_element: import -cardinality: 1-1 -properties: -- module name change -source_version_line: '9' -target_version_line: '9' diff --git a/data/codechange/169_1.yaml b/data/codechange/169_1.yaml deleted file mode 100644 index 3b9006f..0000000 --- a/data/codechange/169_1.yaml +++ /dev/null @@ -1,13 +0,0 @@ -id: '169_1' -repo: toufool/auto-split -commit: 86244b6c190f48200826788fa6af4bd8d26b230f -source: pyqt5 -target: pyside6 -pair_id: pyqt5,pyside6 -filepath: src/error_messages.py -program_element: import -cardinality: 1-1 -properties: -- module name change -source_version_line: '2' -target_version_line: '2' diff --git a/data/codechange/16_1.yaml b/data/codechange/16_1.yaml deleted file mode 100644 index ce7bb1e..0000000 --- a/data/codechange/16_1.yaml +++ /dev/null @@ -1,13 +0,0 @@ -id: '16_1' -repo: stefal/rtkbase -commit: a4c347a2ede5fba1d0e787193b7dc4079ab4fd6f -source: eventlet -target: gevent -pair_id: eventlet,gevent -filepath: web_app/server.py -program_element: function call -cardinality: 1-1 -properties: -- function name change -source_version_line: '29' -target_version_line: '27' diff --git a/data/codechange/170_1.yaml b/data/codechange/170_1.yaml deleted file mode 100644 index e1a140d..0000000 --- a/data/codechange/170_1.yaml +++ /dev/null @@ -1,13 +0,0 @@ -id: '170_1' -repo: toufool/auto-split -commit: 86244b6c190f48200826788fa6af4bd8d26b230f -source: pyqt5 -target: pyside6 -pair_id: pyqt5,pyside6 -filepath: src/menu_bar.py -program_element: import -cardinality: 1-1 -properties: -- module name change -source_version_line: '2' -target_version_line: '2' diff --git a/data/codechange/171_1.yaml b/data/codechange/171_1.yaml deleted file mode 100644 index 96a8e40..0000000 --- a/data/codechange/171_1.yaml +++ /dev/null @@ -1,13 +0,0 @@ -id: '171_1' -repo: toufool/auto-split -commit: 86244b6c190f48200826788fa6af4bd8d26b230f -source: pyqt5 -target: pyside6 -pair_id: pyqt5,pyside6 -filepath: src/resources_rc.py -program_element: import -cardinality: 1-1 -properties: -- module name change -source_version_line: '9' -target_version_line: '6' diff --git a/data/codechange/172_1.yaml b/data/codechange/172_1.yaml deleted file mode 100644 index 7a06ccf..0000000 --- a/data/codechange/172_1.yaml +++ /dev/null @@ -1,13 +0,0 @@ -id: '172_1' -repo: toufool/auto-split -commit: 86244b6c190f48200826788fa6af4bd8d26b230f -source: pyqt5 -target: pyside6 -pair_id: pyqt5,pyside6 -filepath: src/screen_region.py -program_element: import -cardinality: 1-1 -properties: -- module name change -source_version_line: '1' -target_version_line: '1' diff --git a/data/codechange/173_1.yaml b/data/codechange/173_1.yaml deleted file mode 100644 index 67f2e6a..0000000 --- a/data/codechange/173_1.yaml +++ /dev/null @@ -1,13 +0,0 @@ -id: '173_1' -repo: toufool/auto-split -commit: 86244b6c190f48200826788fa6af4bd8d26b230f -source: pyqt5 -target: pyside6 -pair_id: pyqt5,pyside6 -filepath: src/screen_region.py -program_element: attribute access -cardinality: 1-1 -properties: -- attribute name change -source_version_line: '224' -target_version_line: '227' diff --git a/data/codechange/173_2.yaml b/data/codechange/173_2.yaml deleted file mode 100644 index 0d9c4aa..0000000 --- a/data/codechange/173_2.yaml +++ /dev/null @@ -1,13 +0,0 @@ -id: '173_2' -repo: toufool/auto-split -commit: 86244b6c190f48200826788fa6af4bd8d26b230f -source: pyqt5 -target: pyside6 -pair_id: pyqt5,pyside6 -filepath: src/screen_region.py -program_element: attribute access -cardinality: 1-1 -properties: -- attribute name change -source_version_line: '257' -target_version_line: '260' diff --git a/data/codechange/173_3.yaml b/data/codechange/173_3.yaml deleted file mode 100644 index 16656c0..0000000 --- a/data/codechange/173_3.yaml +++ /dev/null @@ -1,13 +0,0 @@ -id: '173_3' -repo: toufool/auto-split -commit: 86244b6c190f48200826788fa6af4bd8d26b230f -source: pyqt5 -target: pyside6 -pair_id: pyqt5,pyside6 -filepath: src/screen_region.py -program_element: attribute access -cardinality: 1-1 -properties: -- attribute name change -source_version_line: '258' -target_version_line: '261' diff --git a/data/codechange/173_4.yaml b/data/codechange/173_4.yaml deleted file mode 100644 index 82f47cc..0000000 --- a/data/codechange/173_4.yaml +++ /dev/null @@ -1,13 +0,0 @@ -id: '173_4' -repo: toufool/auto-split -commit: 86244b6c190f48200826788fa6af4bd8d26b230f -source: pyqt5 -target: pyside6 -pair_id: pyqt5,pyside6 -filepath: src/screen_region.py -program_element: attribute access -cardinality: 1-1 -properties: -- attribute name change -source_version_line: '277' -target_version_line: '280' diff --git a/data/codechange/174_1.yaml b/data/codechange/174_1.yaml deleted file mode 100644 index 6e92407..0000000 --- a/data/codechange/174_1.yaml +++ /dev/null @@ -1,13 +0,0 @@ -id: '174_1' -repo: toufool/auto-split -commit: 86244b6c190f48200826788fa6af4bd8d26b230f -source: pyqt5 -target: pyside6 -pair_id: pyqt5,pyside6 -filepath: src/screen_region.py -program_element: function call -cardinality: 1-1 -properties: -- function name change -source_version_line: '229' -target_version_line: '232' diff --git a/data/codechange/174_2.yaml b/data/codechange/174_2.yaml deleted file mode 100644 index b86c00d..0000000 --- a/data/codechange/174_2.yaml +++ /dev/null @@ -1,13 +0,0 @@ -id: '174_2' -repo: toufool/auto-split -commit: 86244b6c190f48200826788fa6af4bd8d26b230f -source: pyqt5 -target: pyside6 -pair_id: pyqt5,pyside6 -filepath: src/screen_region.py -program_element: function call -cardinality: 1-1 -properties: -- function name change -source_version_line: '230' -target_version_line: '233' diff --git a/data/codechange/175_1.yaml b/data/codechange/175_1.yaml deleted file mode 100644 index 0efdd5f..0000000 --- a/data/codechange/175_1.yaml +++ /dev/null @@ -1,12 +0,0 @@ -id: '175_1' -repo: toufool/auto-split -commit: 86244b6c190f48200826788fa6af4bd8d26b230f -source: pyqt5 -target: pyside6 -pair_id: pyqt5,pyside6 -filepath: src/screen_region.py -program_element: function call -cardinality: 1-n -properties: [] -source_version_line: '268' -target_version_line: '271' diff --git a/data/codechange/175_2.yaml b/data/codechange/175_2.yaml deleted file mode 100644 index f6533b7..0000000 --- a/data/codechange/175_2.yaml +++ /dev/null @@ -1,12 +0,0 @@ -id: '175_2' -repo: toufool/auto-split -commit: 86244b6c190f48200826788fa6af4bd8d26b230f -source: pyqt5 -target: pyside6 -pair_id: pyqt5,pyside6 -filepath: src/screen_region.py -program_element: function call -cardinality: 1-n -properties: [] -source_version_line: '273' -target_version_line: '276' diff --git a/data/codechange/176_1.yaml b/data/codechange/176_1.yaml deleted file mode 100644 index d6d78a3..0000000 --- a/data/codechange/176_1.yaml +++ /dev/null @@ -1,13 +0,0 @@ -id: '176_1' -repo: toufool/auto-split -commit: 86244b6c190f48200826788fa6af4bd8d26b230f -source: pyqt5 -target: pyside6 -pair_id: pyqt5,pyside6 -filepath: src/settings_file.py -program_element: import -cardinality: 1-1 -properties: -- module name change -source_version_line: '268' -target_version_line: '271' diff --git a/data/codechange/176_2.yaml b/data/codechange/176_2.yaml deleted file mode 100644 index 445ae32..0000000 --- a/data/codechange/176_2.yaml +++ /dev/null @@ -1,13 +0,0 @@ -id: '176_2' -repo: toufool/auto-split -commit: 86244b6c190f48200826788fa6af4bd8d26b230f -source: pyqt5 -target: pyside6 -pair_id: pyqt5,pyside6 -filepath: src/settings_file.py -program_element: import -cardinality: 1-1 -properties: -- module name change -source_version_line: '273' -target_version_line: '276' diff --git a/data/codechange/177_1.yaml b/data/codechange/177_1.yaml deleted file mode 100644 index a34ec94..0000000 --- a/data/codechange/177_1.yaml +++ /dev/null @@ -1,13 +0,0 @@ -id: '177_1' -repo: cloud-custodian/cloud-custodian -commit: cbaf252ff1eb554511b0384392ea02387887ed6c -source: python-ldap -target: ldap3 -pair_id: python-ldap,ldap3 -filepath: tools/c7n_mailer/c7n_mailer/address.py -program_element: import -cardinality: 1-n -properties: -- full statement replacement -source_version_line: '19' -target_version_line: 16-20 diff --git a/data/codechange/178_1.yaml b/data/codechange/178_1.yaml deleted file mode 100644 index 6edb807..0000000 --- a/data/codechange/178_1.yaml +++ /dev/null @@ -1,13 +0,0 @@ -id: '178_1' -repo: ictu/quality-time -commit: cc47b42cf70b6968b22a3819bf0b9714135271c1 -source: python-ldap -target: ldap3 -pair_id: python-ldap,ldap3 -filepath: components/server/src/routes/auth.py -program_element: import -cardinality: 1-n -properties: -- full statement replacement -source_version_line: '11' -target_version_line: 13-14 diff --git a/data/codechange/179_1.yaml b/data/codechange/179_1.yaml deleted file mode 100644 index af29a6a..0000000 --- a/data/codechange/179_1.yaml +++ /dev/null @@ -1,13 +0,0 @@ -id: '179_1' -repo: ictu/quality-time -commit: cc47b42cf70b6968b22a3819bf0b9714135271c1 -source: python-ldap -target: ldap3 -pair_id: python-ldap,ldap3 -filepath: components/server/src/routes/auth.py -program_element: function call -cardinality: 1-1 -properties: -- argument addition -source_version_line: '47' -target_version_line: '66' diff --git a/data/codechange/17_1.yaml b/data/codechange/17_1.yaml deleted file mode 100644 index f397c14..0000000 --- a/data/codechange/17_1.yaml +++ /dev/null @@ -1,13 +0,0 @@ -id: '17_1' -repo: kizniche/mycodo -commit: 047263beb9e4301c30eef0f44d8d93c722b31f20 -source: flask-restful -target: flask-restplus -pair_id: flask-restful,flask-restplus -filepath: mycodo/mycodo_flask/api.py -program_element: import -cardinality: 1-1 -properties: -- module name change -source_version_line: '5' -target_version_line: '7' diff --git a/data/codechange/180_1.yaml b/data/codechange/180_1.yaml deleted file mode 100644 index 3f9841a..0000000 --- a/data/codechange/180_1.yaml +++ /dev/null @@ -1,15 +0,0 @@ -id: '180_1' -repo: ictu/quality-time -commit: cc47b42cf70b6968b22a3819bf0b9714135271c1 -source: python-ldap -target: ldap3 -pair_id: python-ldap,ldap3 -filepath: components/server/src/routes/auth.py -program_element: function call -cardinality: 1-1 -properties: -- argument addition -- argument deletion -- function name change -source_version_line: 50-51 -target_version_line: '73' diff --git a/data/codechange/181_1.yaml b/data/codechange/181_1.yaml deleted file mode 100644 index 703502d..0000000 --- a/data/codechange/181_1.yaml +++ /dev/null @@ -1,13 +0,0 @@ -id: '181_1' -repo: oddluck/limnoria-plugins -commit: 2c40713d3a2778d6f729d896372c3bcd74302104 -source: pytz -target: pendulum -pair_id: pytz,pendulum -filepath: WorldTime/plugin.py -program_element: import -cardinality: 1-1 -properties: -- module name change -source_version_line: '12' -target_version_line: '13' diff --git a/data/codechange/182_1.yaml b/data/codechange/182_1.yaml deleted file mode 100644 index acfa8ae..0000000 --- a/data/codechange/182_1.yaml +++ /dev/null @@ -1,13 +0,0 @@ -id: '182_1' -repo: oddluck/limnoria-plugins -commit: 33c7a3fc0878d87ee803db91c17523a9e61af3ed -source: pytz -target: pendulum -pair_id: pytz,pendulum -filepath: NBA/plugin.py -program_element: import -cardinality: 1-1 -properties: -- module name change -source_version_line: '50' -target_version_line: '40' diff --git a/data/codechange/183_1.yaml b/data/codechange/183_1.yaml deleted file mode 100644 index b4be277..0000000 --- a/data/codechange/183_1.yaml +++ /dev/null @@ -1,13 +0,0 @@ -id: '183_1' -repo: oddluck/limnoria-plugins -commit: 33c7a3fc0878d87ee803db91c17523a9e61af3ed -source: pytz -target: pendulum -pair_id: pytz,pendulum -filepath: NHL/plugin.py -program_element: import -cardinality: 1-1 -properties: -- module name change -source_version_line: '35' -target_version_line: '26' diff --git a/data/codechange/184_1.yaml b/data/codechange/184_1.yaml deleted file mode 100644 index 065487c..0000000 --- a/data/codechange/184_1.yaml +++ /dev/null @@ -1,13 +0,0 @@ -id: '184_1' -repo: common-workflow-language/cwltool -commit: b9b65c0f4d7531c8a97690356ecf1a34214eaac2 -source: pyyaml -target: ruamel.yaml -pair_id: pyyaml,ruamel.yaml -filepath: draft-4/salad/schema_salad/jsonld_context.py -program_element: import -cardinality: 1-1 -properties: -- full statement replacement -source_version_line: '3' -target_version_line: '4' diff --git a/data/codechange/185_1.yaml b/data/codechange/185_1.yaml deleted file mode 100644 index 48f01ca..0000000 --- a/data/codechange/185_1.yaml +++ /dev/null @@ -1,13 +0,0 @@ -id: '185_1' -repo: cloud-custodian/cloud-custodian -commit: ee4d52689e1f4965439b2d360c89eddf8767a935 -source: pyyaml -target: ruamel.yaml -pair_id: pyyaml,ruamel.yaml -filepath: tools/c7n_mailer/c7n_mailer/cli.py -program_element: import -cardinality: 1-1 -properties: -- full statement replacement -source_version_line: '8' -target_version_line: '8' diff --git a/data/codechange/186_1.yaml b/data/codechange/186_1.yaml deleted file mode 100644 index 5714e63..0000000 --- a/data/codechange/186_1.yaml +++ /dev/null @@ -1,13 +0,0 @@ -id: '186_1' -repo: cloud-custodian/cloud-custodian -commit: ee4d52689e1f4965439b2d360c89eddf8767a935 -source: pyyaml -target: ruamel.yaml -pair_id: pyyaml,ruamel.yaml -filepath: tools/c7n_mailer/c7n_mailer/replay.py -program_element: import -cardinality: 1-1 -properties: -- full statement replacement -source_version_line: '21' -target_version_line: '21' diff --git a/data/codechange/187_1.yaml b/data/codechange/187_1.yaml deleted file mode 100644 index 3e01f46..0000000 --- a/data/codechange/187_1.yaml +++ /dev/null @@ -1,13 +0,0 @@ -id: '187_1' -repo: cloud-custodian/cloud-custodian -commit: ee4d52689e1f4965439b2d360c89eddf8767a935 -source: pyyaml -target: ruamel.yaml -pair_id: pyyaml,ruamel.yaml -filepath: tools/c7n_mailer/c7n_mailer/utils.py -program_element: import -cardinality: 1-1 -properties: -- full statement replacement -source_version_line: '18' -target_version_line: '20' diff --git a/data/codechange/188_1.yaml b/data/codechange/188_1.yaml deleted file mode 100644 index 7720b96..0000000 --- a/data/codechange/188_1.yaml +++ /dev/null @@ -1,13 +0,0 @@ -id: '188_1' -repo: holgern/beem -commit: f5ba90e2cc5bb88b29b173bae11ba46e06efecf7 -source: pyyaml -target: ruamel.yaml -pair_id: pyyaml,ruamel.yaml -filepath: beem/utils.py -program_element: import -cardinality: 1-1 -properties: -- full statement replacement -source_version_line: '9' -target_version_line: '9' diff --git a/data/codechange/189_1.yaml b/data/codechange/189_1.yaml deleted file mode 100644 index 5ce7682..0000000 --- a/data/codechange/189_1.yaml +++ /dev/null @@ -1,13 +0,0 @@ -id: '189_1' -repo: habitissimo/myaas -commit: 0a65bcc2ce97a2e3ad9b028b1cf9bcc58499f5d9 -source: raven -target: sentry-sdk -pair_id: raven,sentry-sdk -filepath: src/runserver.py -program_element: import -cardinality: 1-n -properties: -- full statement replacement -source_version_line: '7' -target_version_line: 6-7 diff --git a/data/codechange/18_1.yaml b/data/codechange/18_1.yaml deleted file mode 100644 index 9bb3943..0000000 --- a/data/codechange/18_1.yaml +++ /dev/null @@ -1,13 +0,0 @@ -id: '18_1' -repo: ziirish/burp-ui -commit: 8ef3b624e52ac6a9420c533b0dd744a36d91c4d3 -source: flask-restful -target: flask-restplus -pair_id: flask-restful,flask-restplus -filepath: burpui/api/__init__.py -program_element: import -cardinality: 1-1 -properties: -- module name change -source_version_line: '14' -target_version_line: '14' diff --git a/data/codechange/190_1.yaml b/data/codechange/190_1.yaml deleted file mode 100644 index 44c32cb..0000000 --- a/data/codechange/190_1.yaml +++ /dev/null @@ -1,15 +0,0 @@ -id: '190_1' -repo: habitissimo/myaas -commit: 0a65bcc2ce97a2e3ad9b028b1cf9bcc58499f5d9 -source: raven -target: sentry-sdk -pair_id: raven,sentry-sdk -filepath: src/runserver.py -program_element: function call -cardinality: 1-1 -properties: -- argument addition -- argument deletion -- function name change -source_version_line: '8' -target_version_line: 9-12 diff --git a/data/codechange/191_1.yaml b/data/codechange/191_1.yaml deleted file mode 100644 index 64dfb8c..0000000 --- a/data/codechange/191_1.yaml +++ /dev/null @@ -1,13 +0,0 @@ -id: '191_1' -repo: thespaghettidetective/thespaghettidetective -commit: b86b375952cc3e965c32201caa8094998c56cde7 -source: raven -target: sentry-sdk -pair_id: raven,sentry-sdk -filepath: web/app/notifications.py -program_element: import -cardinality: 1-1 -properties: -- full statement replacement -source_version_line: '13' -target_version_line: '13' diff --git a/data/codechange/192_1.yaml b/data/codechange/192_1.yaml deleted file mode 100644 index 8e4f838..0000000 --- a/data/codechange/192_1.yaml +++ /dev/null @@ -1,13 +0,0 @@ -id: '192_1' -repo: thespaghettidetective/thespaghettidetective -commit: b86b375952cc3e965c32201caa8094998c56cde7 -source: raven -target: sentry-sdk -pair_id: raven,sentry-sdk -filepath: web/app/notifications.py -program_element: function call -cardinality: 1-1 -properties: -- function name change -source_version_line: '44' -target_version_line: '44' diff --git a/data/codechange/192_2.yaml b/data/codechange/192_2.yaml deleted file mode 100644 index 7eaac07..0000000 --- a/data/codechange/192_2.yaml +++ /dev/null @@ -1,13 +0,0 @@ -id: '192_2' -repo: thespaghettidetective/thespaghettidetective -commit: b86b375952cc3e965c32201caa8094998c56cde7 -source: raven -target: sentry-sdk -pair_id: raven,sentry-sdk -filepath: web/app/notifications.py -program_element: function call -cardinality: 1-1 -properties: -- function name change -source_version_line: '49' -target_version_line: '49' diff --git a/data/codechange/192_3.yaml b/data/codechange/192_3.yaml deleted file mode 100644 index 7f18ace..0000000 --- a/data/codechange/192_3.yaml +++ /dev/null @@ -1,13 +0,0 @@ -id: '192_3' -repo: thespaghettidetective/thespaghettidetective -commit: b86b375952cc3e965c32201caa8094998c56cde7 -source: raven -target: sentry-sdk -pair_id: raven,sentry-sdk -filepath: web/app/notifications.py -program_element: function call -cardinality: 1-1 -properties: -- function name change -source_version_line: '54' -target_version_line: '54' diff --git a/data/codechange/192_4.yaml b/data/codechange/192_4.yaml deleted file mode 100644 index 5be29d3..0000000 --- a/data/codechange/192_4.yaml +++ /dev/null @@ -1,13 +0,0 @@ -id: '192_4' -repo: thespaghettidetective/thespaghettidetective -commit: b86b375952cc3e965c32201caa8094998c56cde7 -source: raven -target: sentry-sdk -pair_id: raven,sentry-sdk -filepath: web/app/notifications.py -program_element: function call -cardinality: 1-1 -properties: -- function name change -source_version_line: '60' -target_version_line: '60' diff --git a/data/codechange/192_5.yaml b/data/codechange/192_5.yaml deleted file mode 100644 index b5bb00a..0000000 --- a/data/codechange/192_5.yaml +++ /dev/null @@ -1,13 +0,0 @@ -id: '192_5' -repo: thespaghettidetective/thespaghettidetective -commit: b86b375952cc3e965c32201caa8094998c56cde7 -source: raven -target: sentry-sdk -pair_id: raven,sentry-sdk -filepath: web/app/notifications.py -program_element: function call -cardinality: 1-1 -properties: -- function name change -source_version_line: '66' -target_version_line: '66' diff --git a/data/codechange/192_6.yaml b/data/codechange/192_6.yaml deleted file mode 100644 index b45ff37..0000000 --- a/data/codechange/192_6.yaml +++ /dev/null @@ -1,13 +0,0 @@ -id: '192_6' -repo: thespaghettidetective/thespaghettidetective -commit: b86b375952cc3e965c32201caa8094998c56cde7 -source: raven -target: sentry-sdk -pair_id: raven,sentry-sdk -filepath: web/app/notifications.py -program_element: function call -cardinality: 1-1 -properties: -- function name change -source_version_line: '250' -target_version_line: '250' diff --git a/data/codechange/192_7.yaml b/data/codechange/192_7.yaml deleted file mode 100644 index c83ad25..0000000 --- a/data/codechange/192_7.yaml +++ /dev/null @@ -1,13 +0,0 @@ -id: '192_7' -repo: thespaghettidetective/thespaghettidetective -commit: b86b375952cc3e965c32201caa8094998c56cde7 -source: raven -target: sentry-sdk -pair_id: raven,sentry-sdk -filepath: web/app/notifications.py -program_element: function call -cardinality: 1-1 -properties: -- function name change -source_version_line: '256' -target_version_line: '256' diff --git a/data/codechange/192_8.yaml b/data/codechange/192_8.yaml deleted file mode 100644 index cfe86ab..0000000 --- a/data/codechange/192_8.yaml +++ /dev/null @@ -1,13 +0,0 @@ -id: '192_8' -repo: thespaghettidetective/thespaghettidetective -commit: b86b375952cc3e965c32201caa8094998c56cde7 -source: raven -target: sentry-sdk -pair_id: raven,sentry-sdk -filepath: web/app/notifications.py -program_element: function call -cardinality: 1-1 -properties: -- function name change -source_version_line: '262' -target_version_line: '262' diff --git a/data/codechange/192_9.yaml b/data/codechange/192_9.yaml deleted file mode 100644 index 6148b61..0000000 --- a/data/codechange/192_9.yaml +++ /dev/null @@ -1,13 +0,0 @@ -id: '192_9' -repo: thespaghettidetective/thespaghettidetective -commit: b86b375952cc3e965c32201caa8094998c56cde7 -source: raven -target: sentry-sdk -pair_id: raven,sentry-sdk -filepath: web/app/notifications.py -program_element: function call -cardinality: 1-1 -properties: -- function name change -source_version_line: '268' -target_version_line: '268' diff --git a/data/codechange/193_1.yaml b/data/codechange/193_1.yaml deleted file mode 100644 index 901143f..0000000 --- a/data/codechange/193_1.yaml +++ /dev/null @@ -1,14 +0,0 @@ -id: '193_1' -repo: weasyl/weasyl -commit: d10cb162447d9e3a9506b76054851863b10ff27a -source: raven -target: sentry-sdk -pair_id: raven,sentry-sdk -filepath: weasyl/define.py -program_element: function call -cardinality: 1-1 -properties: -- argument addition -- function name change -source_version_line: '988' -target_version_line: '979' diff --git a/data/codechange/194_1.yaml b/data/codechange/194_1.yaml deleted file mode 100644 index 65443bc..0000000 --- a/data/codechange/194_1.yaml +++ /dev/null @@ -1,14 +0,0 @@ -id: '194_1' -repo: weasyl/weasyl -commit: d10cb162447d9e3a9506b76054851863b10ff27a -source: raven -target: sentry-sdk -pair_id: raven,sentry-sdk -filepath: weasyl/middleware.py -program_element: function call -cardinality: 1-1 -properties: -- argument deletion -- function name change -source_version_line: '316' -target_version_line: '305' diff --git a/data/codechange/195_1.yaml b/data/codechange/195_1.yaml deleted file mode 100644 index 3eee467..0000000 --- a/data/codechange/195_1.yaml +++ /dev/null @@ -1,14 +0,0 @@ -id: '195_1' -repo: agdsn/sipa -commit: ea23791cfdc36d614189418a01a57c78859fa5e8 -source: raven -target: sentry-sdk -pair_id: raven,sentry-sdk -filepath: sipa/initialization.py -program_element: function call -cardinality: n-1 -properties: -- argument addition -- argument deletion -source_version_line: 186-187 -target_version_line: 189-194 diff --git a/data/codechange/196_1.yaml b/data/codechange/196_1.yaml deleted file mode 100644 index a9bd574..0000000 --- a/data/codechange/196_1.yaml +++ /dev/null @@ -1,13 +0,0 @@ -id: '196_1' -repo: agdsn/sipa -commit: ea23791cfdc36d614189418a01a57c78859fa5e8 -source: raven -target: sentry-sdk -pair_id: raven,sentry-sdk -filepath: sipa/initialization.py -program_element: import -cardinality: n-n -properties: -- full statement replacement -source_version_line: 9-11 -target_version_line: '8:12' diff --git a/data/codechange/197_1.yaml b/data/codechange/197_1.yaml deleted file mode 100644 index 3125faa..0000000 --- a/data/codechange/197_1.yaml +++ /dev/null @@ -1,13 +0,0 @@ -id: '197_1' -repo: weasyl/weasyl -commit: d10cb162447d9e3a9506b76054851863b10ff27a -source: raven -target: sentry-sdk -pair_id: raven,sentry-sdk -filepath: weasyl/middleware.py -program_element: import -cardinality: n-1 -properties: -- full statement replacement -source_version_line: '8:9' -target_version_line: '10' diff --git a/data/codechange/198_1.yaml b/data/codechange/198_1.yaml deleted file mode 100644 index ea00a9a..0000000 --- a/data/codechange/198_1.yaml +++ /dev/null @@ -1,15 +0,0 @@ -id: '198_1' -repo: pokainc/cfn-cross-region-export -commit: f1120d34c2a71686e769995300ac7cf09f858e34 -source: raven -target: sentry-sdk -pair_id: raven,sentry-sdk -filepath: exporter/lambda/cross_region_import_replication.py -program_element: function call -cardinality: 1-1 -properties: -- argument addition -- argument deletion -- function name change -source_version_line: 21-25 -target_version_line: '11' diff --git a/data/codechange/199_1.yaml b/data/codechange/199_1.yaml deleted file mode 100644 index fe880bb..0000000 --- a/data/codechange/199_1.yaml +++ /dev/null @@ -1,13 +0,0 @@ -id: '199_1' -repo: pokainc/cfn-cross-region-export -commit: f1120d34c2a71686e769995300ac7cf09f858e34 -source: raven -target: sentry-sdk -pair_id: raven,sentry-sdk -filepath: exporter/lambda/cross_region_import_replication.py -program_element: import -cardinality: n-n -properties: -- full statement replacement -source_version_line: 8-9 -target_version_line: 8-9 diff --git a/data/codechange/19_1.yaml b/data/codechange/19_1.yaml deleted file mode 100644 index eacc065..0000000 --- a/data/codechange/19_1.yaml +++ /dev/null @@ -1,13 +0,0 @@ -id: '19_1' -repo: ziirish/burp-ui -commit: 8ef3b624e52ac6a9420c533b0dd744a36d91c4d3 -source: flask-restful -target: flask-restplus -pair_id: flask-restful,flask-restplus -filepath: burpui/api/client.py -program_element: import -cardinality: 1-1 -properties: -- module name change -source_version_line: '13' -target_version_line: '13' diff --git a/data/codechange/1_1.yaml b/data/codechange/1_1.yaml deleted file mode 100644 index 3dca3ac..0000000 --- a/data/codechange/1_1.yaml +++ /dev/null @@ -1,13 +0,0 @@ -id: '1_1' -repo: rocketmap/rocketmap -commit: 2960ec68f85274c37068e2577f28c44eecc4ff26 -source: argparse -target: configargparse -pair_id: argparse,configargparse -filepath: pogom/utils.py -program_element: import -cardinality: 1-1 -properties: -- module name change -source_version_line: '6' -target_version_line: '6' diff --git a/data/codechange/200_1.yaml b/data/codechange/200_1.yaml deleted file mode 100644 index e49bdda..0000000 --- a/data/codechange/200_1.yaml +++ /dev/null @@ -1,13 +0,0 @@ -id: '200_1' -repo: raptor123471/dingolingo -commit: 1d8923abae93915ad877774e0fdc812d6c53a70b -source: requests -target: aiohttp -pair_id: requests,aiohttp -filepath: musicbot/linkutils.py -program_element: import -cardinality: 1-1 -properties: -- module name change -source_version_line: '1' -target_version_line: '1' diff --git a/data/codechange/201_1.yaml b/data/codechange/201_1.yaml deleted file mode 100644 index dfd89cc..0000000 --- a/data/codechange/201_1.yaml +++ /dev/null @@ -1,14 +0,0 @@ -id: '201_1' -repo: raptor123471/dingolingo -commit: 1d8923abae93915ad877774e0fdc812d6c53a70b -source: requests -target: aiohttp -pair_id: requests,aiohttp -filepath: musicbot/linkutils.py -program_element: function call -cardinality: 1-n -properties: -- argument addition -- making async -source_version_line: '35' -target_version_line: 36-37 diff --git a/data/codechange/202_1.yaml b/data/codechange/202_1.yaml deleted file mode 100644 index 2ff75f0..0000000 --- a/data/codechange/202_1.yaml +++ /dev/null @@ -1,15 +0,0 @@ -id: '202_1' -repo: raptor123471/dingolingo -commit: 1d8923abae93915ad877774e0fdc812d6c53a70b -source: requests -target: aiohttp -pair_id: requests,aiohttp -filepath: musicbot/linkutils.py -program_element: attribute access -cardinality: 1-1 -properties: -- changing to method call -- making await -- attribute name change -source_version_line: '36' -target_version_line: '38' diff --git a/data/codechange/202_2.yaml b/data/codechange/202_2.yaml deleted file mode 100644 index df0b502..0000000 --- a/data/codechange/202_2.yaml +++ /dev/null @@ -1,15 +0,0 @@ -id: '202_2' -repo: raptor123471/dingolingo -commit: 1d8923abae93915ad877774e0fdc812d6c53a70b -source: requests -target: aiohttp -pair_id: requests,aiohttp -filepath: musicbot/linkutils.py -program_element: attribute access -cardinality: 1-1 -properties: -- changing to method call -- making await -- attribute name change -source_version_line: '99' -target_version_line: '102' diff --git a/data/codechange/203_1.yaml b/data/codechange/203_1.yaml deleted file mode 100644 index b37e67e..0000000 --- a/data/codechange/203_1.yaml +++ /dev/null @@ -1,14 +0,0 @@ -id: '203_1' -repo: raptor123471/dingolingo -commit: 1d8923abae93915ad877774e0fdc812d6c53a70b -source: requests -target: aiohttp -pair_id: requests,aiohttp -filepath: musicbot/linkutils.py -program_element: function call -cardinality: 1-n -properties: -- argument transformation -- making async -source_version_line: '98' -target_version_line: 100-101 diff --git a/data/codechange/204_1.yaml b/data/codechange/204_1.yaml deleted file mode 100644 index 3a3dc70..0000000 --- a/data/codechange/204_1.yaml +++ /dev/null @@ -1,13 +0,0 @@ -id: '204_1' -repo: talkpython/async-techniques-python-course -commit: a5c04bbd9b5614a8fc0317050c01e4c241b1b41d -source: requests -target: aiohttp -pair_id: requests,aiohttp -filepath: src/10-async-web/acityscape_api/services/location_service.py -program_element: function call -cardinality: 1-n -properties: -- making async -source_version_line: '21' -target_version_line: 22-23 diff --git a/data/codechange/205_1.yaml b/data/codechange/205_1.yaml deleted file mode 100644 index 4120ffe..0000000 --- a/data/codechange/205_1.yaml +++ /dev/null @@ -1,13 +0,0 @@ -id: '205_1' -repo: talkpython/async-techniques-python-course -commit: a5c04bbd9b5614a8fc0317050c01e4c241b1b41d -source: requests -target: aiohttp -pair_id: requests,aiohttp -filepath: src/10-async-web/acityscape_api/services/location_service.py -program_element: function call -cardinality: 1-1 -properties: -- making await -source_version_line: '24' -target_version_line: '26' diff --git a/data/codechange/206_1.yaml b/data/codechange/206_1.yaml deleted file mode 100644 index a9bf2b1..0000000 --- a/data/codechange/206_1.yaml +++ /dev/null @@ -1,13 +0,0 @@ -id: '206_1' -repo: talkpython/async-techniques-python-course -commit: a5c04bbd9b5614a8fc0317050c01e4c241b1b41d -source: requests -target: aiohttp -pair_id: requests,aiohttp -filepath: src/10-async-web/acityscape_api/services/location_service.py -program_element: import -cardinality: 1-1 -properties: -- module name change -source_version_line: '4' -target_version_line: '5' diff --git a/data/codechange/207_1.yaml b/data/codechange/207_1.yaml deleted file mode 100644 index 04d45c5..0000000 --- a/data/codechange/207_1.yaml +++ /dev/null @@ -1,13 +0,0 @@ -id: '207_1' -repo: talkpython/async-techniques-python-course -commit: a5c04bbd9b5614a8fc0317050c01e4c241b1b41d -source: requests -target: aiohttp -pair_id: requests,aiohttp -filepath: src/10-async-web/acityscape_api/services/sun_service.py -program_element: function call -cardinality: 1-n -properties: -- making async -source_version_line: '21' -target_version_line: 21-22 diff --git a/data/codechange/208_1.yaml b/data/codechange/208_1.yaml deleted file mode 100644 index fbd772f..0000000 --- a/data/codechange/208_1.yaml +++ /dev/null @@ -1,13 +0,0 @@ -id: '208_1' -repo: talkpython/async-techniques-python-course -commit: a5c04bbd9b5614a8fc0317050c01e4c241b1b41d -source: requests -target: aiohttp -pair_id: requests,aiohttp -filepath: src/10-async-web/acityscape_api/services/sun_service.py -program_element: function call -cardinality: 1-1 -properties: -- making await -source_version_line: '24' -target_version_line: '24' diff --git a/data/codechange/209_1.yaml b/data/codechange/209_1.yaml deleted file mode 100644 index 66de46e..0000000 --- a/data/codechange/209_1.yaml +++ /dev/null @@ -1,13 +0,0 @@ -id: '209_1' -repo: talkpython/async-techniques-python-course -commit: a5c04bbd9b5614a8fc0317050c01e4c241b1b41d -source: requests -target: aiohttp -pair_id: requests,aiohttp -filepath: src/10-async-web/acityscape_api/services/sun_service.py -program_element: import -cardinality: 1-1 -properties: -- module name change -source_version_line: '5' -target_version_line: '5' diff --git a/data/codechange/20_1.yaml b/data/codechange/20_1.yaml deleted file mode 100644 index 62c2e3a..0000000 --- a/data/codechange/20_1.yaml +++ /dev/null @@ -1,13 +0,0 @@ -id: '20_1' -repo: ziirish/burp-ui -commit: 8ef3b624e52ac6a9420c533b0dd744a36d91c4d3 -source: flask-restful -target: flask-restplus -pair_id: flask-restful,flask-restplus -filepath: burpui/api/clients.py -program_element: import -cardinality: 1-1 -properties: -- module name change -source_version_line: '15' -target_version_line: '15' diff --git a/data/codechange/210_1.yaml b/data/codechange/210_1.yaml deleted file mode 100644 index d9d2bf2..0000000 --- a/data/codechange/210_1.yaml +++ /dev/null @@ -1,13 +0,0 @@ -id: '210_1' -repo: talkpython/async-techniques-python-course -commit: a5c04bbd9b5614a8fc0317050c01e4c241b1b41d -source: requests -target: aiohttp -pair_id: requests,aiohttp -filepath: src/10-async-web/acityscape_api/services/weather_service.py -program_element: import -cardinality: 1-1 -properties: -- module name change -source_version_line: '1' -target_version_line: '1' diff --git a/data/codechange/211_1.yaml b/data/codechange/211_1.yaml deleted file mode 100644 index 4fb7aaa..0000000 --- a/data/codechange/211_1.yaml +++ /dev/null @@ -1,13 +0,0 @@ -id: '211_1' -repo: talkpython/async-techniques-python-course -commit: a5c04bbd9b5614a8fc0317050c01e4c241b1b41d -source: requests -target: aiohttp -pair_id: requests,aiohttp -filepath: src/10-async-web/acityscape_api/services/weather_service.py -program_element: function call -cardinality: 1-n -properties: -- making async -source_version_line: '13' -target_version_line: 13-14 diff --git a/data/codechange/212_1.yaml b/data/codechange/212_1.yaml deleted file mode 100644 index e73c7d1..0000000 --- a/data/codechange/212_1.yaml +++ /dev/null @@ -1,13 +0,0 @@ -id: '212_1' -repo: talkpython/async-techniques-python-course -commit: a5c04bbd9b5614a8fc0317050c01e4c241b1b41d -source: requests -target: aiohttp -pair_id: requests,aiohttp -filepath: src/10-async-web/acityscape_api/services/weather_service.py -program_element: function call -cardinality: 1-1 -properties: -- making await -source_version_line: '16' -target_version_line: '17' diff --git a/data/codechange/213_1.yaml b/data/codechange/213_1.yaml deleted file mode 100644 index f40bcf1..0000000 --- a/data/codechange/213_1.yaml +++ /dev/null @@ -1,13 +0,0 @@ -id: '213_1' -repo: talkpython/async-techniques-python-course -commit: ab4e5fdd32982c97e9701d3e1fdb8c39882d4250 -source: requests -target: aiohttp -pair_id: requests,aiohttp -filepath: src/04-asyncio/web_scraping/async_scrape/program.py -program_element: import -cardinality: 1-1 -properties: -- module name change -source_version_line: '1' -target_version_line: '3' diff --git a/data/codechange/214_1.yaml b/data/codechange/214_1.yaml deleted file mode 100644 index 5304958..0000000 --- a/data/codechange/214_1.yaml +++ /dev/null @@ -1,13 +0,0 @@ -id: '214_1' -repo: talkpython/async-techniques-python-course -commit: ab4e5fdd32982c97e9701d3e1fdb8c39882d4250 -source: requests -target: aiohttp -pair_id: requests,aiohttp -filepath: src/04-asyncio/web_scraping/async_scrape/program.py -program_element: function call -cardinality: 1-n -properties: -- making async -source_version_line: '10' -target_version_line: 13-14 diff --git a/data/codechange/215_1.yaml b/data/codechange/215_1.yaml deleted file mode 100644 index 2364b25..0000000 --- a/data/codechange/215_1.yaml +++ /dev/null @@ -1,13 +0,0 @@ -id: '215_1' -repo: talkpython/async-techniques-python-course -commit: ab4e5fdd32982c97e9701d3e1fdb8c39882d4250 -source: requests -target: aiohttp -pair_id: requests,aiohttp -filepath: src/04-asyncio/web_scraping/async_scrape/program.py -program_element: function call -cardinality: 1-1 -properties: -- making await -source_version_line: '13' -target_version_line: '17' diff --git a/data/codechange/216_1.yaml b/data/codechange/216_1.yaml deleted file mode 100644 index 0d2d3f5..0000000 --- a/data/codechange/216_1.yaml +++ /dev/null @@ -1,14 +0,0 @@ -id: '216_1' -repo: ictu/quality-time -commit: d3a9a16a72348cece48c9788cf10db6cc043ec7c -source: requests -target: aiohttp -pair_id: requests,aiohttp -filepath: components/collector/src/base_collectors/source_collector.py -program_element: function call -cardinality: 1-1 -properties: -- argument deletion -- argument transformation -source_version_line: '106' -target_version_line: '101' diff --git a/data/codechange/217_1.yaml b/data/codechange/217_1.yaml deleted file mode 100644 index 4a69ea1..0000000 --- a/data/codechange/217_1.yaml +++ /dev/null @@ -1,13 +0,0 @@ -id: '217_1' -repo: ictu/quality-time -commit: d3a9a16a72348cece48c9788cf10db6cc043ec7c -source: requests -target: aiohttp -pair_id: requests,aiohttp -filepath: components/collector/src/base_collectors/source_collector.py -program_element: import -cardinality: 1-1 -properties: -- module name change -source_version_line: '13' -target_version_line: '13' diff --git a/data/codechange/218_1.yaml b/data/codechange/218_1.yaml deleted file mode 100644 index 678f387..0000000 --- a/data/codechange/218_1.yaml +++ /dev/null @@ -1,14 +0,0 @@ -id: '218_1' -repo: ictu/quality-time -commit: d3a9a16a72348cece48c9788cf10db6cc043ec7c -source: requests -target: aiohttp -pair_id: requests,aiohttp -filepath: components/collector/src/collector_utilities/functions.py -program_element: attribute access -cardinality: 1-1 -properties: -- changing to method call -- making await -source_version_line: '18' -target_version_line: '18' diff --git a/data/codechange/219_1.yaml b/data/codechange/219_1.yaml deleted file mode 100644 index bb91016..0000000 --- a/data/codechange/219_1.yaml +++ /dev/null @@ -1,13 +0,0 @@ -id: '219_1' -repo: ictu/quality-time -commit: d3a9a16a72348cece48c9788cf10db6cc043ec7c -source: requests -target: aiohttp -pair_id: requests,aiohttp -filepath: components/collector/src/collector_utilities/type.py -program_element: attribute access -cardinality: 1-1 -properties: -- attribute name change -source_version_line: '15' -target_version_line: '16' diff --git a/data/codechange/21_1.yaml b/data/codechange/21_1.yaml deleted file mode 100644 index 9003b87..0000000 --- a/data/codechange/21_1.yaml +++ /dev/null @@ -1,13 +0,0 @@ -id: '21_1' -repo: ziirish/burp-ui -commit: 8ef3b624e52ac6a9420c533b0dd744a36d91c4d3 -source: flask-restful -target: flask-restplus -pair_id: flask-restful,flask-restplus -filepath: burpui/api/misc.py -program_element: import -cardinality: 1-1 -properties: -- module name change -source_version_line: '15' -target_version_line: '15' diff --git a/data/codechange/220_1.yaml b/data/codechange/220_1.yaml deleted file mode 100644 index 3854f6b..0000000 --- a/data/codechange/220_1.yaml +++ /dev/null @@ -1,13 +0,0 @@ -id: '220_1' -repo: ictu/quality-time -commit: d3a9a16a72348cece48c9788cf10db6cc043ec7c -source: requests -target: aiohttp -pair_id: requests,aiohttp -filepath: components/collector/src/collector_utilities/type.py -program_element: import -cardinality: 1-1 -properties: -- module name change -source_version_line: '5' -target_version_line: '5' diff --git a/data/codechange/221_1.yaml b/data/codechange/221_1.yaml deleted file mode 100644 index b7e0d13..0000000 --- a/data/codechange/221_1.yaml +++ /dev/null @@ -1,13 +0,0 @@ -id: '221_1' -repo: ictu/quality-time -commit: d3a9a16a72348cece48c9788cf10db6cc043ec7c -source: requests -target: aiohttp -pair_id: requests,aiohttp -filepath: components/collector/src/source_collectors/api_source_collectors/azure_devops.py -program_element: import -cardinality: 1-1 -properties: -- module name change -source_version_line: '12' -target_version_line: '12' diff --git a/data/codechange/222_1.yaml b/data/codechange/222_1.yaml deleted file mode 100644 index 7bd7ec7..0000000 --- a/data/codechange/222_1.yaml +++ /dev/null @@ -1,14 +0,0 @@ -id: '222_1' -repo: ictu/quality-time -commit: d3a9a16a72348cece48c9788cf10db6cc043ec7c -source: requests -target: aiohttp -pair_id: requests,aiohttp -filepath: components/collector/src/source_collectors/api_source_collectors/azure_devops.py -program_element: function call -cardinality: 1-1 -properties: -- argument deletion -- making await -source_version_line: '31' -target_version_line: '31' diff --git a/data/codechange/223_1.yaml b/data/codechange/223_1.yaml deleted file mode 100644 index 657b190..0000000 --- a/data/codechange/223_1.yaml +++ /dev/null @@ -1,13 +0,0 @@ -id: '223_1' -repo: ictu/quality-time -commit: d3a9a16a72348cece48c9788cf10db6cc043ec7c -source: requests -target: aiohttp -pair_id: requests,aiohttp -filepath: components/collector/src/source_collectors/api_source_collectors/azure_devops.py -program_element: function call -cardinality: 1-1 -properties: -- making await -source_version_line: '40' -target_version_line: '41' diff --git a/data/codechange/223_2.yaml b/data/codechange/223_2.yaml deleted file mode 100644 index bd88799..0000000 --- a/data/codechange/223_2.yaml +++ /dev/null @@ -1,13 +0,0 @@ -id: '223_2' -repo: ictu/quality-time -commit: d3a9a16a72348cece48c9788cf10db6cc043ec7c -source: requests -target: aiohttp -pair_id: requests,aiohttp -filepath: components/collector/src/source_collectors/api_source_collectors/azure_devops.py -program_element: function call -cardinality: 1-1 -properties: -- making await -source_version_line: '52' -target_version_line: '53' diff --git a/data/codechange/223_3.yaml b/data/codechange/223_3.yaml deleted file mode 100644 index 6d8b004..0000000 --- a/data/codechange/223_3.yaml +++ /dev/null @@ -1,13 +0,0 @@ -id: '223_3' -repo: ictu/quality-time -commit: d3a9a16a72348cece48c9788cf10db6cc043ec7c -source: requests -target: aiohttp -pair_id: requests,aiohttp -filepath: components/collector/src/source_collectors/api_source_collectors/azure_devops.py -program_element: function call -cardinality: 1-1 -properties: -- making await -source_version_line: '93' -target_version_line: '93' diff --git a/data/codechange/223_4.yaml b/data/codechange/223_4.yaml deleted file mode 100644 index 55b9bb9..0000000 --- a/data/codechange/223_4.yaml +++ /dev/null @@ -1,13 +0,0 @@ -id: '223_4' -repo: ictu/quality-time -commit: d3a9a16a72348cece48c9788cf10db6cc043ec7c -source: requests -target: aiohttp -pair_id: requests,aiohttp -filepath: components/collector/src/source_collectors/api_source_collectors/azure_devops.py -program_element: function call -cardinality: 1-1 -properties: -- making await -source_version_line: '122' -target_version_line: '122' diff --git a/data/codechange/223_5.yaml b/data/codechange/223_5.yaml deleted file mode 100644 index f10cf16..0000000 --- a/data/codechange/223_5.yaml +++ /dev/null @@ -1,13 +0,0 @@ -id: '223_5' -repo: ictu/quality-time -commit: d3a9a16a72348cece48c9788cf10db6cc043ec7c -source: requests -target: aiohttp -pair_id: requests,aiohttp -filepath: components/collector/src/source_collectors/api_source_collectors/azure_devops.py -program_element: function call -cardinality: 1-1 -properties: -- making await -source_version_line: '133' -target_version_line: '133' diff --git a/data/codechange/223_6.yaml b/data/codechange/223_6.yaml deleted file mode 100644 index efc0ca6..0000000 --- a/data/codechange/223_6.yaml +++ /dev/null @@ -1,13 +0,0 @@ -id: '223_6' -repo: ictu/quality-time -commit: d3a9a16a72348cece48c9788cf10db6cc043ec7c -source: requests -target: aiohttp -pair_id: requests,aiohttp -filepath: components/collector/src/source_collectors/api_source_collectors/azure_devops.py -program_element: function call -cardinality: 1-1 -properties: -- making await -source_version_line: '157' -target_version_line: '158' diff --git a/data/codechange/224_1.yaml b/data/codechange/224_1.yaml deleted file mode 100644 index e65b86a..0000000 --- a/data/codechange/224_1.yaml +++ /dev/null @@ -1,13 +0,0 @@ -id: '224_1' -repo: intelai/inference-model-manager -commit: 71aff3a0bd1ae2a7d7d91858dcbe721de152693e -source: retrying -target: tenacity -pair_id: retrying,tenacity -filepath: management/management_api/tenants/tenants_utils.py -program_element: decorator -cardinality: 1-1 -properties: -- argument transformation -source_version_line: '109' -target_version_line: '108' diff --git a/data/codechange/224_2.yaml b/data/codechange/224_2.yaml deleted file mode 100644 index 33c7ce0..0000000 --- a/data/codechange/224_2.yaml +++ /dev/null @@ -1,13 +0,0 @@ -id: '224_2' -repo: intelai/inference-model-manager -commit: 71aff3a0bd1ae2a7d7d91858dcbe721de152693e -source: retrying -target: tenacity -pair_id: retrying,tenacity -filepath: management/management_api/tenants/tenants_utils.py -program_element: decorator -cardinality: 1-1 -properties: -- argument transformation -source_version_line: '129' -target_version_line: '128' diff --git a/data/codechange/225_1.yaml b/data/codechange/225_1.yaml deleted file mode 100644 index 6a84d72..0000000 --- a/data/codechange/225_1.yaml +++ /dev/null @@ -1,13 +0,0 @@ -id: '225_1' -repo: intelai/inference-model-manager -commit: 71aff3a0bd1ae2a7d7d91858dcbe721de152693e -source: retrying -target: tenacity -pair_id: retrying,tenacity -filepath: management/management_api/tenants/tenants_utils.py -program_element: import -cardinality: 1-1 -properties: -- full statement replacement -source_version_line: '5' -target_version_line: '5' diff --git a/data/codechange/226_1.yaml b/data/codechange/226_1.yaml deleted file mode 100644 index 50b0d2b..0000000 --- a/data/codechange/226_1.yaml +++ /dev/null @@ -1,13 +0,0 @@ -id: '226_1' -repo: intelai/inference-model-manager -commit: 71aff3a0bd1ae2a7d7d91858dcbe721de152693e -source: retrying -target: tenacity -pair_id: retrying,tenacity -filepath: tests/conftest.py -program_element: decorator -cardinality: 1-1 -properties: -- argument transformation -source_version_line: '120' -target_version_line: '120' diff --git a/data/codechange/227_1.yaml b/data/codechange/227_1.yaml deleted file mode 100644 index 48be3db..0000000 --- a/data/codechange/227_1.yaml +++ /dev/null @@ -1,13 +0,0 @@ -id: '227_1' -repo: intelai/inference-model-manager -commit: 71aff3a0bd1ae2a7d7d91858dcbe721de152693e -source: retrying -target: tenacity -pair_id: retrying,tenacity -filepath: tests/conftest.py -program_element: import -cardinality: 1-1 -properties: -- full statement replacement -source_version_line: '4' -target_version_line: '4' diff --git a/data/codechange/228_1.yaml b/data/codechange/228_1.yaml deleted file mode 100644 index 9d27dc2..0000000 --- a/data/codechange/228_1.yaml +++ /dev/null @@ -1,13 +0,0 @@ -id: '228_1' -repo: intelai/inference-model-manager -commit: 71aff3a0bd1ae2a7d7d91858dcbe721de152693e -source: retrying -target: tenacity -pair_id: retrying,tenacity -filepath: tests/management_api_tests/context.py -program_element: import -cardinality: 1-1 -properties: -- full statement replacement -source_version_line: '1' -target_version_line: '1' diff --git a/data/codechange/229_1.yaml b/data/codechange/229_1.yaml deleted file mode 100644 index c933fd0..0000000 --- a/data/codechange/229_1.yaml +++ /dev/null @@ -1,13 +0,0 @@ -id: '229_1' -repo: intelai/inference-model-manager -commit: 71aff3a0bd1ae2a7d7d91858dcbe721de152693e -source: retrying -target: tenacity -pair_id: retrying,tenacity -filepath: tests/management_api_tests/context.py -program_element: decorator -cardinality: 1-1 -properties: -- argument transformation -source_version_line: '70' -target_version_line: '70' diff --git a/data/codechange/229_2.yaml b/data/codechange/229_2.yaml deleted file mode 100644 index 4c640a6..0000000 --- a/data/codechange/229_2.yaml +++ /dev/null @@ -1,13 +0,0 @@ -id: '229_2' -repo: intelai/inference-model-manager -commit: 71aff3a0bd1ae2a7d7d91858dcbe721de152693e -source: retrying -target: tenacity -pair_id: retrying,tenacity -filepath: tests/management_api_tests/context.py -program_element: decorator -cardinality: 1-1 -properties: -- argument transformation -source_version_line: '90' -target_version_line: '90' diff --git a/data/codechange/229_3.yaml b/data/codechange/229_3.yaml deleted file mode 100644 index e9742c5..0000000 --- a/data/codechange/229_3.yaml +++ /dev/null @@ -1,13 +0,0 @@ -id: '229_3' -repo: intelai/inference-model-manager -commit: 71aff3a0bd1ae2a7d7d91858dcbe721de152693e -source: retrying -target: tenacity -pair_id: retrying,tenacity -filepath: tests/management_api_tests/context.py -program_element: decorator -cardinality: 1-1 -properties: -- argument transformation -source_version_line: '107' -target_version_line: '107' diff --git a/data/codechange/22_1.yaml b/data/codechange/22_1.yaml deleted file mode 100644 index 90c478b..0000000 --- a/data/codechange/22_1.yaml +++ /dev/null @@ -1,13 +0,0 @@ -id: '22_1' -repo: ziirish/burp-ui -commit: 8ef3b624e52ac6a9420c533b0dd744a36d91c4d3 -source: flask-restful -target: flask-restplus -pair_id: flask-restful,flask-restplus -filepath: burpui/api/restore.py -program_element: import -cardinality: 1-1 -properties: -- module name change -source_version_line: '18' -target_version_line: '18' diff --git a/data/codechange/230_1.yaml b/data/codechange/230_1.yaml deleted file mode 100644 index 8159d95..0000000 --- a/data/codechange/230_1.yaml +++ /dev/null @@ -1,13 +0,0 @@ -id: '230_1' -repo: intelai/inference-model-manager -commit: 71aff3a0bd1ae2a7d7d91858dcbe721de152693e -source: retrying -target: tenacity -pair_id: retrying,tenacity -filepath: tests/management_api_tests/endpoints/endpoint_utils.py -program_element: decorator -cardinality: 1-1 -properties: -- argument transformation -source_version_line: '108' -target_version_line: '108' diff --git a/data/codechange/231_1.yaml b/data/codechange/231_1.yaml deleted file mode 100644 index 5081b7e..0000000 --- a/data/codechange/231_1.yaml +++ /dev/null @@ -1,13 +0,0 @@ -id: '231_1' -repo: intelai/inference-model-manager -commit: 71aff3a0bd1ae2a7d7d91858dcbe721de152693e -source: retrying -target: tenacity -pair_id: retrying,tenacity -filepath: tests/management_api_tests/endpoints/endpoint_utils.py -program_element: import -cardinality: 1-1 -properties: -- full statement replacement -source_version_line: '3' -target_version_line: '3' diff --git a/data/codechange/232_1.yaml b/data/codechange/232_1.yaml deleted file mode 100644 index 69146d3..0000000 --- a/data/codechange/232_1.yaml +++ /dev/null @@ -1,13 +0,0 @@ -id: '232_1' -repo: pokainc/cfn-cross-region-export -commit: 8d0ec687838ea69612d7b1236e2341198aef7937 -source: retrying -target: tenacity -pair_id: retrying,tenacity -filepath: importer/lambda/cross_region_importer.py -program_element: import -cardinality: 1-1 -properties: -- full statement replacement -source_version_line: '10' -target_version_line: '10' diff --git a/data/codechange/233_1.yaml b/data/codechange/233_1.yaml deleted file mode 100644 index b447b15..0000000 --- a/data/codechange/233_1.yaml +++ /dev/null @@ -1,13 +0,0 @@ -id: '233_1' -repo: cloud-custodian/cloud-custodian -commit: 12e3e8084ddb2e7f5ccbc5ea3c3bd3e4c7e9c207 -source: ruamel.yaml -target: pyyaml -pair_id: ruamel.yaml,pyyaml -filepath: tools/c7n_mailer/c7n_mailer/cli.py -program_element: import -cardinality: 1-1 -properties: -- full statement replacement -source_version_line: '15' -target_version_line: '10' diff --git a/data/codechange/234_1.yaml b/data/codechange/234_1.yaml deleted file mode 100644 index 21596d0..0000000 --- a/data/codechange/234_1.yaml +++ /dev/null @@ -1,13 +0,0 @@ -id: '234_1' -repo: cloud-custodian/cloud-custodian -commit: 12e3e8084ddb2e7f5ccbc5ea3c3bd3e4c7e9c207 -source: ruamel.yaml -target: pyyaml -pair_id: ruamel.yaml,pyyaml -filepath: tools/c7n_mailer/c7n_mailer/replay.py -program_element: import -cardinality: 1-1 -properties: -- full statement replacement -source_version_line: '25' -target_version_line: '18' diff --git a/data/codechange/235_1.yaml b/data/codechange/235_1.yaml deleted file mode 100644 index d598731..0000000 --- a/data/codechange/235_1.yaml +++ /dev/null @@ -1,13 +0,0 @@ -id: '235_1' -repo: cloud-custodian/cloud-custodian -commit: 12e3e8084ddb2e7f5ccbc5ea3c3bd3e4c7e9c207 -source: ruamel.yaml -target: pyyaml -pair_id: ruamel.yaml,pyyaml -filepath: tools/c7n_mailer/c7n_mailer/utils.py -program_element: import -cardinality: 1-1 -properties: -- full statement replacement -source_version_line: '28' -target_version_line: '22' diff --git a/data/codechange/236_1.yaml b/data/codechange/236_1.yaml deleted file mode 100644 index 684f321..0000000 --- a/data/codechange/236_1.yaml +++ /dev/null @@ -1,14 +0,0 @@ -id: '236_1' -repo: microsoft/nni -commit: b955ac99a46094d2d701d447e9df07509767cc32 -source: ruamel.yaml -target: pyyaml -pair_id: ruamel.yaml,pyyaml -filepath: nni/experiment/config/base.py -program_element: function call -cardinality: 1-1 -properties: -- argument deletion -- function name change -source_version_line: '75' -target_version_line: '75' diff --git a/data/codechange/237_1.yaml b/data/codechange/237_1.yaml deleted file mode 100644 index 6e9f650..0000000 --- a/data/codechange/237_1.yaml +++ /dev/null @@ -1,13 +0,0 @@ -id: '237_1' -repo: microsoft/nni -commit: b955ac99a46094d2d701d447e9df07509767cc32 -source: ruamel.yaml -target: pyyaml -pair_id: ruamel.yaml,pyyaml -filepath: nni/experiment/config/base.py -program_element: import -cardinality: 1-1 -properties: -- full statement replacement -source_version_line: '9' -target_version_line: '9' diff --git a/data/codechange/238_1.yaml b/data/codechange/238_1.yaml deleted file mode 100644 index 6033aee..0000000 --- a/data/codechange/238_1.yaml +++ /dev/null @@ -1,12 +0,0 @@ -id: '238_1' -repo: microsoft/nni -commit: b955ac99a46094d2d701d447e9df07509767cc32 -source: ruamel.yaml -target: pyyaml -pair_id: ruamel.yaml,pyyaml -filepath: nni/experiment/config/common.py -program_element: function call -cardinality: n-1 -properties: [] -source_version_line: '121' -target_version_line: '121' diff --git a/data/codechange/239_1.yaml b/data/codechange/239_1.yaml deleted file mode 100644 index e76e037..0000000 --- a/data/codechange/239_1.yaml +++ /dev/null @@ -1,13 +0,0 @@ -id: '239_1' -repo: microsoft/nni -commit: b955ac99a46094d2d701d447e9df07509767cc32 -source: ruamel.yaml -target: pyyaml -pair_id: ruamel.yaml,pyyaml -filepath: nni/experiment/config/common.py -program_element: import -cardinality: 1-1 -properties: -- full statement replacement -source_version_line: '8' -target_version_line: '8' diff --git a/data/codechange/23_1.yaml b/data/codechange/23_1.yaml deleted file mode 100644 index 933d643..0000000 --- a/data/codechange/23_1.yaml +++ /dev/null @@ -1,13 +0,0 @@ -id: '23_1' -repo: ziirish/burp-ui -commit: 8ef3b624e52ac6a9420c533b0dd744a36d91c4d3 -source: flask-restful -target: flask-restplus -pair_id: flask-restful,flask-restplus -filepath: burpui/api/servers.py -program_element: import -cardinality: 1-1 -properties: -- module name change -source_version_line: '8' -target_version_line: '8' diff --git a/data/codechange/240_1.yaml b/data/codechange/240_1.yaml deleted file mode 100644 index b22f8b4..0000000 --- a/data/codechange/240_1.yaml +++ /dev/null @@ -1,13 +0,0 @@ -id: '240_1' -repo: microsoft/nni -commit: b955ac99a46094d2d701d447e9df07509767cc32 -source: ruamel.yaml -target: pyyaml -pair_id: ruamel.yaml,pyyaml -filepath: nni/tools/nnictl/common_utils.py -program_element: import -cardinality: 1-1 -properties: -- full statement replacement -source_version_line: '12' -target_version_line: '12' diff --git a/data/codechange/241_1.yaml b/data/codechange/241_1.yaml deleted file mode 100644 index 0980f17..0000000 --- a/data/codechange/241_1.yaml +++ /dev/null @@ -1,14 +0,0 @@ -id: '241_1' -repo: microsoft/nni -commit: b955ac99a46094d2d701d447e9df07509767cc32 -source: ruamel.yaml -target: pyyaml -pair_id: ruamel.yaml,pyyaml -filepath: nni/tools/nnictl/common_utils.py -program_element: function call -cardinality: 1-1 -properties: -- argument deletion -- function name change -source_version_line: '12' -target_version_line: '12' diff --git a/data/codechange/242_1.yaml b/data/codechange/242_1.yaml deleted file mode 100644 index 67a7917..0000000 --- a/data/codechange/242_1.yaml +++ /dev/null @@ -1,14 +0,0 @@ -id: '242_1' -repo: microsoft/nni -commit: b955ac99a46094d2d701d447e9df07509767cc32 -source: ruamel.yaml -target: pyyaml -pair_id: ruamel.yaml,pyyaml -filepath: nni/tools/package_utils/__init__.py -program_element: function call -cardinality: 1-1 -properties: -- argument deletion -- function name change -source_version_line: '218' -target_version_line: '218' diff --git a/data/codechange/243_1.yaml b/data/codechange/243_1.yaml deleted file mode 100644 index 5e3e78b..0000000 --- a/data/codechange/243_1.yaml +++ /dev/null @@ -1,13 +0,0 @@ -id: '243_1' -repo: microsoft/nni -commit: b955ac99a46094d2d701d447e9df07509767cc32 -source: ruamel.yaml -target: pyyaml -pair_id: ruamel.yaml,pyyaml -filepath: nni/tools/package_utils/__init__.py -program_element: function call -cardinality: 1-1 -properties: -- function name change -source_version_line: '229' -target_version_line: '229' diff --git a/data/codechange/244_1.yaml b/data/codechange/244_1.yaml deleted file mode 100644 index b0f2b9d..0000000 --- a/data/codechange/244_1.yaml +++ /dev/null @@ -1,13 +0,0 @@ -id: '244_1' -repo: microsoft/nni -commit: b955ac99a46094d2d701d447e9df07509767cc32 -source: ruamel.yaml -target: pyyaml -pair_id: ruamel.yaml,pyyaml -filepath: nni/tools/package_utils/__init__.py -program_element: import -cardinality: 1-1 -properties: -- full statement replacement -source_version_line: '9' -target_version_line: '9' diff --git a/data/codechange/245_1.yaml b/data/codechange/245_1.yaml deleted file mode 100644 index 6d05cc7..0000000 --- a/data/codechange/245_1.yaml +++ /dev/null @@ -1,13 +0,0 @@ -id: '245_1' -repo: microsoft/nni -commit: b955ac99a46094d2d701d447e9df07509767cc32 -source: ruamel.yaml -target: pyyaml -pair_id: ruamel.yaml,pyyaml -filepath: test/nni_test/nnitest/run_tests.py -program_element: import -cardinality: 1-1 -properties: -- full statement replacement -source_version_line: '12' -target_version_line: '12' diff --git a/data/codechange/246_1.yaml b/data/codechange/246_1.yaml deleted file mode 100644 index 6f23077..0000000 --- a/data/codechange/246_1.yaml +++ /dev/null @@ -1,13 +0,0 @@ -id: '246_1' -repo: microsoft/nni -commit: b955ac99a46094d2d701d447e9df07509767cc32 -source: ruamel.yaml -target: pyyaml -pair_id: ruamel.yaml,pyyaml -filepath: test/nni_test/nnitest/run_tests.py -program_element: function call -cardinality: 1-1 -properties: -- function name change -source_version_line: '83' -target_version_line: '83' diff --git a/data/codechange/247_1.yaml b/data/codechange/247_1.yaml deleted file mode 100644 index 8f94610..0000000 --- a/data/codechange/247_1.yaml +++ /dev/null @@ -1,13 +0,0 @@ -id: '247_1' -repo: microsoft/nni -commit: b955ac99a46094d2d701d447e9df07509767cc32 -source: ruamel.yaml -target: pyyaml -pair_id: ruamel.yaml,pyyaml -filepath: test/nni_test/nnitest/utils.py -program_element: import -cardinality: 1-1 -properties: -- full statement replacement -source_version_line: '12' -target_version_line: '12' diff --git a/data/codechange/248_1.yaml b/data/codechange/248_1.yaml deleted file mode 100644 index c123b71..0000000 --- a/data/codechange/248_1.yaml +++ /dev/null @@ -1,14 +0,0 @@ -id: '248_1' -repo: microsoft/nni -commit: b955ac99a46094d2d701d447e9df07509767cc32 -source: ruamel.yaml -target: pyyaml -pair_id: ruamel.yaml,pyyaml -filepath: test/nni_test/nnitest/utils.py -program_element: function call -cardinality: 1-1 -properties: -- argument deletion -- function name change -source_version_line: '46' -target_version_line: '46' diff --git a/data/codechange/249_1.yaml b/data/codechange/249_1.yaml deleted file mode 100644 index 4482280..0000000 --- a/data/codechange/249_1.yaml +++ /dev/null @@ -1,13 +0,0 @@ -id: '249_1' -repo: microsoft/nni -commit: b955ac99a46094d2d701d447e9df07509767cc32 -source: ruamel.yaml -target: pyyaml -pair_id: ruamel.yaml,pyyaml -filepath: test/nni_test/nnitest/utils.py -program_element: function call -cardinality: 1-1 -properties: -- function name change -source_version_line: '51' -target_version_line: '51' diff --git a/data/codechange/24_1.yaml b/data/codechange/24_1.yaml deleted file mode 100644 index 64a4e7b..0000000 --- a/data/codechange/24_1.yaml +++ /dev/null @@ -1,13 +0,0 @@ -id: '24_1' -repo: ziirish/burp-ui -commit: 8ef3b624e52ac6a9420c533b0dd744a36d91c4d3 -source: flask-restful -target: flask-restplus -pair_id: flask-restful,flask-restplus -filepath: burpui/api/settings.py -program_element: import -cardinality: 1-1 -properties: -- module name change -source_version_line: '14' -target_version_line: '14' diff --git a/data/codechange/250_1.yaml b/data/codechange/250_1.yaml deleted file mode 100644 index 377ffc3..0000000 --- a/data/codechange/250_1.yaml +++ /dev/null @@ -1,13 +0,0 @@ -id: '250_1' -repo: zulip/python-zulip-api -commit: 2d9cf64db860ab5e5eabb8151254b0f3dab609bd -source: slackclient -target: slack-sdk -pair_id: slackclient,slack-sdk -filepath: zulip/integrations/bridge_with_slack/run-slack-bridge -program_element: import -cardinality: 1-n -properties: -- full statement replacement -source_version_line: '10' -target_version_line: 10-11 diff --git a/data/codechange/251_1.yaml b/data/codechange/251_1.yaml deleted file mode 100644 index 8bd6a70..0000000 --- a/data/codechange/251_1.yaml +++ /dev/null @@ -1,13 +0,0 @@ -id: '251_1' -repo: zulip/python-zulip-api -commit: 2d9cf64db860ab5e5eabb8151254b0f3dab609bd -source: slackclient -target: slack-sdk -pair_id: slackclient,slack-sdk -filepath: zulip/integrations/bridge_with_slack/run-slack-bridge -program_element: function call -cardinality: 1-1 -properties: -- function name change -source_version_line: '47' -target_version_line: '48' diff --git a/data/codechange/251_2.yaml b/data/codechange/251_2.yaml deleted file mode 100644 index 529560a..0000000 --- a/data/codechange/251_2.yaml +++ /dev/null @@ -1,13 +0,0 @@ -id: '251_2' -repo: zulip/python-zulip-api -commit: 2d9cf64db860ab5e5eabb8151254b0f3dab609bd -source: slackclient -target: slack-sdk -pair_id: slackclient,slack-sdk -filepath: zulip/integrations/bridge_with_slack/run-slack-bridge -program_element: function call -cardinality: 1-1 -properties: -- function name change -source_version_line: '50' -target_version_line: '51' diff --git a/data/codechange/252_1.yaml b/data/codechange/252_1.yaml deleted file mode 100644 index a7aaf3e..0000000 --- a/data/codechange/252_1.yaml +++ /dev/null @@ -1,13 +0,0 @@ -id: '252_1' -repo: zulip/python-zulip-api -commit: 2d9cf64db860ab5e5eabb8151254b0f3dab609bd -source: slackclient -target: slack-sdk -pair_id: slackclient,slack-sdk -filepath: zulip/integrations/bridge_with_slack/run-slack-bridge -program_element: decorator -cardinality: 1-1 -properties: -- decorator name change -source_version_line: '84' -target_version_line: '85' diff --git a/data/codechange/253_1.yaml b/data/codechange/253_1.yaml deleted file mode 100644 index 7b7abac..0000000 --- a/data/codechange/253_1.yaml +++ /dev/null @@ -1,13 +0,0 @@ -id: '253_1' -repo: slackapi/python-slack-sdk -commit: 5f4d92a8048814fc4938753594e74d7cfc74c27a -source: slackclient -target: slack-sdk -pair_id: slackclient,slack-sdk -filepath: tutorial/PythOnBoardingBot/app.py -program_element: import -cardinality: 1-1 -properties: -- module name change -source_version_line: '4' -target_version_line: '4' diff --git a/data/codechange/254_1.yaml b/data/codechange/254_1.yaml deleted file mode 100644 index f3639c8..0000000 --- a/data/codechange/254_1.yaml +++ /dev/null @@ -1,13 +0,0 @@ -id: '254_1' -repo: slackapi/python-slack-sdk -commit: 5f4d92a8048814fc4938753594e74d7cfc74c27a -source: slackclient -target: slack-sdk -pair_id: slackclient,slack-sdk -filepath: tutorial/PythOnBoardingBot/async_app.py -program_element: function call -cardinality: 1-1 -properties: -- function name change -source_version_line: '146' -target_version_line: '147' diff --git a/data/codechange/255_1.yaml b/data/codechange/255_1.yaml deleted file mode 100644 index 41d3a82..0000000 --- a/data/codechange/255_1.yaml +++ /dev/null @@ -1,13 +0,0 @@ -id: '255_1' -repo: slackapi/python-slack-sdk -commit: 5f4d92a8048814fc4938753594e74d7cfc74c27a -source: slackclient -target: slack-sdk -pair_id: slackclient,slack-sdk -filepath: tutorial/PythOnBoardingBot/async_app.py -program_element: decorator -cardinality: 1-1 -properties: -- decorator name change -source_version_line: '42' -target_version_line: '43' diff --git a/data/codechange/255_2.yaml b/data/codechange/255_2.yaml deleted file mode 100644 index de43299..0000000 --- a/data/codechange/255_2.yaml +++ /dev/null @@ -1,13 +0,0 @@ -id: '255_2' -repo: slackapi/python-slack-sdk -commit: 5f4d92a8048814fc4938753594e74d7cfc74c27a -source: slackclient -target: slack-sdk -pair_id: slackclient,slack-sdk -filepath: tutorial/PythOnBoardingBot/async_app.py -program_element: decorator -cardinality: 1-1 -properties: -- decorator name change -source_version_line: '65' -target_version_line: '66' diff --git a/data/codechange/255_3.yaml b/data/codechange/255_3.yaml deleted file mode 100644 index ee6ad81..0000000 --- a/data/codechange/255_3.yaml +++ /dev/null @@ -1,13 +0,0 @@ -id: '255_3' -repo: slackapi/python-slack-sdk -commit: 5f4d92a8048814fc4938753594e74d7cfc74c27a -source: slackclient -target: slack-sdk -pair_id: slackclient,slack-sdk -filepath: tutorial/PythOnBoardingBot/async_app.py -program_element: decorator -cardinality: 1-1 -properties: -- decorator name change -source_version_line: '94' -target_version_line: '95' diff --git a/data/codechange/255_4.yaml b/data/codechange/255_4.yaml deleted file mode 100644 index 1ce248d..0000000 --- a/data/codechange/255_4.yaml +++ /dev/null @@ -1,13 +0,0 @@ -id: '255_4' -repo: slackapi/python-slack-sdk -commit: 5f4d92a8048814fc4938753594e74d7cfc74c27a -source: slackclient -target: slack-sdk -pair_id: slackclient,slack-sdk -filepath: tutorial/PythOnBoardingBot/async_app.py -program_element: decorator -cardinality: 1-1 -properties: -- decorator name change -source_version_line: '123' -target_version_line: '124' diff --git a/data/codechange/256_1.yaml b/data/codechange/256_1.yaml deleted file mode 100644 index dc7fe36..0000000 --- a/data/codechange/256_1.yaml +++ /dev/null @@ -1,13 +0,0 @@ -id: '256_1' -repo: slackapi/python-slack-sdk -commit: 5f4d92a8048814fc4938753594e74d7cfc74c27a -source: slackclient -target: slack-sdk -pair_id: slackclient,slack-sdk -filepath: tutorial/PythOnBoardingBot/async_app.py -program_element: import -cardinality: 1-n -properties: -- full statement replacement -source_version_line: '7' -target_version_line: 7-8 diff --git a/data/codechange/257_1.yaml b/data/codechange/257_1.yaml deleted file mode 100644 index 8176e0f..0000000 --- a/data/codechange/257_1.yaml +++ /dev/null @@ -1,13 +0,0 @@ -id: '257_1' -repo: slackapi/python-slack-events-api -commit: 813214e403c800722dd5a92449cb0a49b8b73abc -source: slackclient -target: slack-sdk -pair_id: slackclient,slack-sdk -filepath: example/blueprint/example.py -program_element: import -cardinality: 1-1 -properties: -- module name change -source_version_line: '12' -target_version_line: '2' diff --git a/data/codechange/258_1.yaml b/data/codechange/258_1.yaml deleted file mode 100644 index c6f891a..0000000 --- a/data/codechange/258_1.yaml +++ /dev/null @@ -1,13 +0,0 @@ -id: '258_1' -repo: slackapi/python-slack-events-api -commit: 813214e403c800722dd5a92449cb0a49b8b73abc -source: slackclient -target: slack-sdk -pair_id: slackclient,slack-sdk -filepath: example/current_app/main.py -program_element: import -cardinality: 1-1 -properties: -- module name change -source_version_line: '9' -target_version_line: '2' diff --git a/data/codechange/259_1.yaml b/data/codechange/259_1.yaml deleted file mode 100644 index c49b61d..0000000 --- a/data/codechange/259_1.yaml +++ /dev/null @@ -1,13 +0,0 @@ -id: '259_1' -repo: slackapi/python-slack-events-api -commit: 813214e403c800722dd5a92449cb0a49b8b73abc -source: slackclient -target: slack-sdk -pair_id: slackclient,slack-sdk -filepath: example/example.py -program_element: import -cardinality: 1-1 -properties: -- module name change -source_version_line: '2' -target_version_line: '2' diff --git a/data/codechange/25_1.yaml b/data/codechange/25_1.yaml deleted file mode 100644 index d137756..0000000 --- a/data/codechange/25_1.yaml +++ /dev/null @@ -1,13 +0,0 @@ -id: '25_1' -repo: testdrivenio/flask-react-aws -commit: d4119a0f609b151df99b2250e419c168e688a0c6 -source: flask-restful -target: flask-restplus -pair_id: flask-restful,flask-restplus -filepath: services/users/project/api/ping.py -program_element: import -cardinality: 1-1 -properties: -- full statement replacement -source_version_line: '5' -target_version_line: '4' diff --git a/data/codechange/260_1.yaml b/data/codechange/260_1.yaml deleted file mode 100644 index 6cc57ef..0000000 --- a/data/codechange/260_1.yaml +++ /dev/null @@ -1,13 +0,0 @@ -id: '260_1' -repo: slackapi/python-slack-events-api -commit: 813214e403c800722dd5a92449cb0a49b8b73abc -source: slackclient -target: slack-sdk -pair_id: slackclient,slack-sdk -filepath: example/working_with_proxy/example.py -program_element: import -cardinality: 1-1 -properties: -- module name change -source_version_line: '12' -target_version_line: '2' diff --git a/data/codechange/261_1.yaml b/data/codechange/261_1.yaml deleted file mode 100644 index b9af218..0000000 --- a/data/codechange/261_1.yaml +++ /dev/null @@ -1,13 +0,0 @@ -id: '261_1' -repo: alice-biometrics/petisco -commit: 9abf7b1f6ef8c55bdddcb9a5c2eff513f6a93130 -source: slackclient -target: slack-sdk -pair_id: slackclient,slack-sdk -filepath: petisco/extra/slack/application/notifier/slack_notifier.py -program_element: import -cardinality: 1-1 -properties: -- module name change -source_version_line: '3' -target_version_line: '3' diff --git a/data/codechange/261_2.yaml b/data/codechange/261_2.yaml deleted file mode 100644 index 2e65bea..0000000 --- a/data/codechange/261_2.yaml +++ /dev/null @@ -1,13 +0,0 @@ -id: '261_2' -repo: alice-biometrics/petisco -commit: 9abf7b1f6ef8c55bdddcb9a5c2eff513f6a93130 -source: slackclient -target: slack-sdk -pair_id: slackclient,slack-sdk -filepath: petisco/extra/slack/application/notifier/slack_notifier.py -program_element: import -cardinality: 1-1 -properties: -- module name change -source_version_line: '4' -target_version_line: '4' diff --git a/data/codechange/262_1.yaml b/data/codechange/262_1.yaml deleted file mode 100644 index 90ea710..0000000 --- a/data/codechange/262_1.yaml +++ /dev/null @@ -1,13 +0,0 @@ -id: '262_1' -repo: alice-biometrics/petisco -commit: 9abf7b1f6ef8c55bdddcb9a5c2eff513f6a93130 -source: slackclient -target: slack-sdk -pair_id: slackclient,slack-sdk -filepath: petisco/extra/slack/is_slack_available.py -program_element: import -cardinality: 1-1 -properties: -- module name change -source_version_line: '3' -target_version_line: '3' diff --git a/data/codechange/263_1.yaml b/data/codechange/263_1.yaml deleted file mode 100644 index 6ff2cfb..0000000 --- a/data/codechange/263_1.yaml +++ /dev/null @@ -1,13 +0,0 @@ -id: '263_1' -repo: alice-biometrics/petisco -commit: 9abf7b1f6ef8c55bdddcb9a5c2eff513f6a93130 -source: slackclient -target: slack-sdk -pair_id: slackclient,slack-sdk -filepath: petisco/legacy/notifier/infrastructure/slack/slack_notifier.py -program_element: import -cardinality: 1-1 -properties: -- module name change -source_version_line: '1' -target_version_line: '1' diff --git a/data/codechange/263_2.yaml b/data/codechange/263_2.yaml deleted file mode 100644 index e25d288..0000000 --- a/data/codechange/263_2.yaml +++ /dev/null @@ -1,13 +0,0 @@ -id: '263_2' -repo: alice-biometrics/petisco -commit: 9abf7b1f6ef8c55bdddcb9a5c2eff513f6a93130 -source: slackclient -target: slack-sdk -pair_id: slackclient,slack-sdk -filepath: petisco/legacy/notifier/infrastructure/slack/slack_notifier.py -program_element: import -cardinality: 1-1 -properties: -- module name change -source_version_line: '2' -target_version_line: '2' diff --git a/data/codechange/264_1.yaml b/data/codechange/264_1.yaml deleted file mode 100644 index 3e15b2a..0000000 --- a/data/codechange/264_1.yaml +++ /dev/null @@ -1,13 +0,0 @@ -id: '264_1' -repo: bcgov/gwells -commit: 472f336f5db32ead27b6f4e171c6b8f782da8a02 -source: xlsxwriter -target: openpyxl -pair_id: xlsxwriter,openpyxl -filepath: app/backend/wells/management/commands/export.py -program_element: import -cardinality: 1-1 -properties: -- full statement replacement -source_version_line: '11' -target_version_line: '12' diff --git a/data/codechange/265_1.yaml b/data/codechange/265_1.yaml deleted file mode 100644 index e53816a..0000000 --- a/data/codechange/265_1.yaml +++ /dev/null @@ -1,13 +0,0 @@ -id: '265_1' -repo: bcgov/gwells -commit: 472f336f5db32ead27b6f4e171c6b8f782da8a02 -source: xlsxwriter -target: openpyxl -pair_id: xlsxwriter,openpyxl -filepath: app/backend/wells/management/commands/export.py -program_element: function call -cardinality: 1-1 -properties: -- function name change -source_version_line: '53' -target_version_line: '53' diff --git a/data/codechange/26_1.yaml b/data/codechange/26_1.yaml deleted file mode 100644 index b18c110..0000000 --- a/data/codechange/26_1.yaml +++ /dev/null @@ -1,13 +0,0 @@ -id: '26_1' -repo: testdrivenio/flask-react-aws -commit: d4119a0f609b151df99b2250e419c168e688a0c6 -source: flask-restful -target: flask-restplus -pair_id: flask-restful,flask-restplus -filepath: services/users/project/api/ping.py -program_element: function call -cardinality: n-1 -properties: -- argument deletion -source_version_line: '8' -target_version_line: '6' diff --git a/data/codechange/27_1.yaml b/data/codechange/27_1.yaml deleted file mode 100644 index 5099a62..0000000 --- a/data/codechange/27_1.yaml +++ /dev/null @@ -1,13 +0,0 @@ -id: '27_1' -repo: testdrivenio/flask-react-aws -commit: d4119a0f609b151df99b2250e419c168e688a0c6 -source: flask-restful -target: flask-restplus -pair_id: flask-restful,flask-restplus -filepath: services/users/project/api/users/views.py -program_element: import -cardinality: 1-1 -properties: -- full statement replacement -source_version_line: '5' -target_version_line: '5' diff --git a/data/codechange/28_1.yaml b/data/codechange/28_1.yaml deleted file mode 100644 index a0c93d7..0000000 --- a/data/codechange/28_1.yaml +++ /dev/null @@ -1,13 +0,0 @@ -id: '28_1' -repo: kizniche/mycodo -commit: 516917351d7d8341375db4481ac72910c9510a42 -source: flask-restplus -target: flask-restx -pair_id: flask-restplus,flask-restx -filepath: mycodo/mycodo_flask/api/__init__.py -program_element: import -cardinality: 1-1 -properties: -- module name change -source_version_line: '6' -target_version_line: '6' diff --git a/data/codechange/29_1.yaml b/data/codechange/29_1.yaml deleted file mode 100644 index a763af2..0000000 --- a/data/codechange/29_1.yaml +++ /dev/null @@ -1,13 +0,0 @@ -id: '29_1' -repo: kizniche/mycodo -commit: 516917351d7d8341375db4481ac72910c9510a42 -source: flask-restplus -target: flask-restx -pair_id: flask-restplus,flask-restx -filepath: mycodo/mycodo_flask/api/choices.py -program_element: import -cardinality: 1-1 -properties: -- module name change -source_version_line: '7' -target_version_line: '7' diff --git a/data/codechange/29_2.yaml b/data/codechange/29_2.yaml deleted file mode 100644 index 3da180b..0000000 --- a/data/codechange/29_2.yaml +++ /dev/null @@ -1,13 +0,0 @@ -id: '29_2' -repo: kizniche/mycodo -commit: 516917351d7d8341375db4481ac72910c9510a42 -source: flask-restplus -target: flask-restx -pair_id: flask-restplus,flask-restx -filepath: mycodo/mycodo_flask/api/choices.py -program_element: import -cardinality: 1-1 -properties: -- module name change -source_version_line: '8' -target_version_line: '8' diff --git a/data/codechange/29_3.yaml b/data/codechange/29_3.yaml deleted file mode 100644 index ab396fd..0000000 --- a/data/codechange/29_3.yaml +++ /dev/null @@ -1,13 +0,0 @@ -id: '29_3' -repo: kizniche/mycodo -commit: 516917351d7d8341375db4481ac72910c9510a42 -source: flask-restplus -target: flask-restx -pair_id: flask-restplus,flask-restx -filepath: mycodo/mycodo_flask/api/choices.py -program_element: import -cardinality: 1-1 -properties: -- module name change -source_version_line: '9' -target_version_line: '9' diff --git a/data/codechange/2_1.yaml b/data/codechange/2_1.yaml deleted file mode 100644 index 605a47e..0000000 --- a/data/codechange/2_1.yaml +++ /dev/null @@ -1,14 +0,0 @@ -id: '2_1' -repo: rocketmap/rocketmap -commit: 2960ec68f85274c37068e2577f28c44eecc4ff26 -source: argparse -target: configargparse -pair_id: argparse,configargparse -filepath: pogom/utils.py -program_element: function call -cardinality: 1-1 -properties: -- argument addition -- function name change -source_version_line: '70' -target_version_line: '33' diff --git a/data/codechange/30_1.yaml b/data/codechange/30_1.yaml deleted file mode 100644 index b233b34..0000000 --- a/data/codechange/30_1.yaml +++ /dev/null @@ -1,13 +0,0 @@ -id: '30_1' -repo: kizniche/mycodo -commit: 516917351d7d8341375db4481ac72910c9510a42 -source: flask-restplus -target: flask-restx -pair_id: flask-restplus,flask-restx -filepath: mycodo/mycodo_flask/api/controller.py -program_element: import -cardinality: 1-1 -properties: -- module name change -source_version_line: '7' -target_version_line: '7' diff --git a/data/codechange/30_2.yaml b/data/codechange/30_2.yaml deleted file mode 100644 index 6c69b03..0000000 --- a/data/codechange/30_2.yaml +++ /dev/null @@ -1,13 +0,0 @@ -id: '30_2' -repo: kizniche/mycodo -commit: 516917351d7d8341375db4481ac72910c9510a42 -source: flask-restplus -target: flask-restx -pair_id: flask-restplus,flask-restx -filepath: mycodo/mycodo_flask/api/controller.py -program_element: import -cardinality: 1-1 -properties: -- module name change -source_version_line: '8' -target_version_line: '8' diff --git a/data/codechange/30_3.yaml b/data/codechange/30_3.yaml deleted file mode 100644 index faf2f1d..0000000 --- a/data/codechange/30_3.yaml +++ /dev/null @@ -1,13 +0,0 @@ -id: '30_3' -repo: kizniche/mycodo -commit: 516917351d7d8341375db4481ac72910c9510a42 -source: flask-restplus -target: flask-restx -pair_id: flask-restplus,flask-restx -filepath: mycodo/mycodo_flask/api/controller.py -program_element: import -cardinality: 1-1 -properties: -- module name change -source_version_line: '9' -target_version_line: '9' diff --git a/data/codechange/31_1.yaml b/data/codechange/31_1.yaml deleted file mode 100644 index 684624a..0000000 --- a/data/codechange/31_1.yaml +++ /dev/null @@ -1,13 +0,0 @@ -id: '31_1' -repo: kizniche/mycodo -commit: 516917351d7d8341375db4481ac72910c9510a42 -source: flask-restplus -target: flask-restx -pair_id: flask-restplus,flask-restx -filepath: mycodo/mycodo_flask/api/daemon.py -program_element: import -cardinality: 1-1 -properties: -- module name change -source_version_line: '7' -target_version_line: '7' diff --git a/data/codechange/31_2.yaml b/data/codechange/31_2.yaml deleted file mode 100644 index 911c876..0000000 --- a/data/codechange/31_2.yaml +++ /dev/null @@ -1,13 +0,0 @@ -id: '31_2' -repo: kizniche/mycodo -commit: 516917351d7d8341375db4481ac72910c9510a42 -source: flask-restplus -target: flask-restx -pair_id: flask-restplus,flask-restx -filepath: mycodo/mycodo_flask/api/daemon.py -program_element: import -cardinality: 1-1 -properties: -- module name change -source_version_line: '8' -target_version_line: '8' diff --git a/data/codechange/31_3.yaml b/data/codechange/31_3.yaml deleted file mode 100644 index b1a2025..0000000 --- a/data/codechange/31_3.yaml +++ /dev/null @@ -1,13 +0,0 @@ -id: '31_3' -repo: kizniche/mycodo -commit: 516917351d7d8341375db4481ac72910c9510a42 -source: flask-restplus -target: flask-restx -pair_id: flask-restplus,flask-restx -filepath: mycodo/mycodo_flask/api/daemon.py -program_element: import -cardinality: 1-1 -properties: -- module name change -source_version_line: '9' -target_version_line: '9' diff --git a/data/codechange/32_1.yaml b/data/codechange/32_1.yaml deleted file mode 100644 index 3aaeca9..0000000 --- a/data/codechange/32_1.yaml +++ /dev/null @@ -1,13 +0,0 @@ -id: '32_1' -repo: kizniche/mycodo -commit: 516917351d7d8341375db4481ac72910c9510a42 -source: flask-restplus -target: flask-restx -pair_id: flask-restplus,flask-restx -filepath: mycodo/mycodo_flask/api/input.py -program_element: import -cardinality: 1-1 -properties: -- module name change -source_version_line: '7' -target_version_line: '7' diff --git a/data/codechange/32_2.yaml b/data/codechange/32_2.yaml deleted file mode 100644 index 629a13b..0000000 --- a/data/codechange/32_2.yaml +++ /dev/null @@ -1,13 +0,0 @@ -id: '32_2' -repo: kizniche/mycodo -commit: 516917351d7d8341375db4481ac72910c9510a42 -source: flask-restplus -target: flask-restx -pair_id: flask-restplus,flask-restx -filepath: mycodo/mycodo_flask/api/input.py -program_element: import -cardinality: 1-1 -properties: -- module name change -source_version_line: '8' -target_version_line: '8' diff --git a/data/codechange/32_3.yaml b/data/codechange/32_3.yaml deleted file mode 100644 index 77a4877..0000000 --- a/data/codechange/32_3.yaml +++ /dev/null @@ -1,13 +0,0 @@ -id: '32_3' -repo: kizniche/mycodo -commit: 516917351d7d8341375db4481ac72910c9510a42 -source: flask-restplus -target: flask-restx -pair_id: flask-restplus,flask-restx -filepath: mycodo/mycodo_flask/api/input.py -program_element: import -cardinality: 1-1 -properties: -- module name change -source_version_line: '9' -target_version_line: '9' diff --git a/data/codechange/33_1.yaml b/data/codechange/33_1.yaml deleted file mode 100644 index fb294e8..0000000 --- a/data/codechange/33_1.yaml +++ /dev/null @@ -1,13 +0,0 @@ -id: '33_1' -repo: kizniche/mycodo -commit: 516917351d7d8341375db4481ac72910c9510a42 -source: flask-restplus -target: flask-restx -pair_id: flask-restplus,flask-restx -filepath: mycodo/mycodo_flask/api/math.py -program_element: import -cardinality: 1-1 -properties: -- module name change -source_version_line: '7' -target_version_line: '7' diff --git a/data/codechange/33_2.yaml b/data/codechange/33_2.yaml deleted file mode 100644 index 3e931a0..0000000 --- a/data/codechange/33_2.yaml +++ /dev/null @@ -1,13 +0,0 @@ -id: '33_2' -repo: kizniche/mycodo -commit: 516917351d7d8341375db4481ac72910c9510a42 -source: flask-restplus -target: flask-restx -pair_id: flask-restplus,flask-restx -filepath: mycodo/mycodo_flask/api/math.py -program_element: import -cardinality: 1-1 -properties: -- module name change -source_version_line: '8' -target_version_line: '8' diff --git a/data/codechange/33_3.yaml b/data/codechange/33_3.yaml deleted file mode 100644 index f35d3d9..0000000 --- a/data/codechange/33_3.yaml +++ /dev/null @@ -1,13 +0,0 @@ -id: '33_3' -repo: kizniche/mycodo -commit: 516917351d7d8341375db4481ac72910c9510a42 -source: flask-restplus -target: flask-restx -pair_id: flask-restplus,flask-restx -filepath: mycodo/mycodo_flask/api/math.py -program_element: import -cardinality: 1-1 -properties: -- module name change -source_version_line: '9' -target_version_line: '9' diff --git a/data/codechange/34_1.yaml b/data/codechange/34_1.yaml deleted file mode 100644 index 62f2676..0000000 --- a/data/codechange/34_1.yaml +++ /dev/null @@ -1,13 +0,0 @@ -id: '34_1' -repo: kizniche/mycodo -commit: 516917351d7d8341375db4481ac72910c9510a42 -source: flask-restplus -target: flask-restx -pair_id: flask-restplus,flask-restx -filepath: mycodo/mycodo_flask/api/measurement.py -program_element: import -cardinality: 1-1 -properties: -- module name change -source_version_line: '8' -target_version_line: '8' diff --git a/data/codechange/34_2.yaml b/data/codechange/34_2.yaml deleted file mode 100644 index 7b3378f..0000000 --- a/data/codechange/34_2.yaml +++ /dev/null @@ -1,13 +0,0 @@ -id: '34_2' -repo: kizniche/mycodo -commit: 516917351d7d8341375db4481ac72910c9510a42 -source: flask-restplus -target: flask-restx -pair_id: flask-restplus,flask-restx -filepath: mycodo/mycodo_flask/api/measurement.py -program_element: import -cardinality: 1-1 -properties: -- module name change -source_version_line: '9' -target_version_line: '9' diff --git a/data/codechange/34_3.yaml b/data/codechange/34_3.yaml deleted file mode 100644 index cbbaaa1..0000000 --- a/data/codechange/34_3.yaml +++ /dev/null @@ -1,13 +0,0 @@ -id: '34_3' -repo: kizniche/mycodo -commit: 516917351d7d8341375db4481ac72910c9510a42 -source: flask-restplus -target: flask-restx -pair_id: flask-restplus,flask-restx -filepath: mycodo/mycodo_flask/api/measurement.py -program_element: import -cardinality: 1-1 -properties: -- module name change -source_version_line: '10' -target_version_line: '10' diff --git a/data/codechange/35_1.yaml b/data/codechange/35_1.yaml deleted file mode 100644 index bde2464..0000000 --- a/data/codechange/35_1.yaml +++ /dev/null @@ -1,13 +0,0 @@ -id: '35_1' -repo: kizniche/mycodo -commit: 516917351d7d8341375db4481ac72910c9510a42 -source: flask-restplus -target: flask-restx -pair_id: flask-restplus,flask-restx -filepath: mycodo/mycodo_flask/api/output.py -program_element: import -cardinality: 1-1 -properties: -- module name change -source_version_line: '7' -target_version_line: '7' diff --git a/data/codechange/35_2.yaml b/data/codechange/35_2.yaml deleted file mode 100644 index 877dc43..0000000 --- a/data/codechange/35_2.yaml +++ /dev/null @@ -1,13 +0,0 @@ -id: '35_2' -repo: kizniche/mycodo -commit: 516917351d7d8341375db4481ac72910c9510a42 -source: flask-restplus -target: flask-restx -pair_id: flask-restplus,flask-restx -filepath: mycodo/mycodo_flask/api/output.py -program_element: import -cardinality: 1-1 -properties: -- module name change -source_version_line: '8' -target_version_line: '8' diff --git a/data/codechange/35_3.yaml b/data/codechange/35_3.yaml deleted file mode 100644 index e12e7e8..0000000 --- a/data/codechange/35_3.yaml +++ /dev/null @@ -1,13 +0,0 @@ -id: '35_3' -repo: kizniche/mycodo -commit: 516917351d7d8341375db4481ac72910c9510a42 -source: flask-restplus -target: flask-restx -pair_id: flask-restplus,flask-restx -filepath: mycodo/mycodo_flask/api/output.py -program_element: import -cardinality: 1-1 -properties: -- module name change -source_version_line: '9' -target_version_line: '9' diff --git a/data/codechange/36_1.yaml b/data/codechange/36_1.yaml deleted file mode 100644 index 881a65f..0000000 --- a/data/codechange/36_1.yaml +++ /dev/null @@ -1,13 +0,0 @@ -id: '36_1' -repo: kizniche/mycodo -commit: 516917351d7d8341375db4481ac72910c9510a42 -source: flask-restplus -target: flask-restx -pair_id: flask-restplus,flask-restx -filepath: mycodo/mycodo_flask/api/pid.py -program_element: import -cardinality: 1-1 -properties: -- module name change -source_version_line: '7' -target_version_line: '7' diff --git a/data/codechange/36_2.yaml b/data/codechange/36_2.yaml deleted file mode 100644 index 2abdba0..0000000 --- a/data/codechange/36_2.yaml +++ /dev/null @@ -1,13 +0,0 @@ -id: '36_2' -repo: kizniche/mycodo -commit: 516917351d7d8341375db4481ac72910c9510a42 -source: flask-restplus -target: flask-restx -pair_id: flask-restplus,flask-restx -filepath: mycodo/mycodo_flask/api/pid.py -program_element: import -cardinality: 1-1 -properties: -- module name change -source_version_line: '8' -target_version_line: '8' diff --git a/data/codechange/36_3.yaml b/data/codechange/36_3.yaml deleted file mode 100644 index c5b04b7..0000000 --- a/data/codechange/36_3.yaml +++ /dev/null @@ -1,13 +0,0 @@ -id: '36_3' -repo: kizniche/mycodo -commit: 516917351d7d8341375db4481ac72910c9510a42 -source: flask-restplus -target: flask-restx -pair_id: flask-restplus,flask-restx -filepath: mycodo/mycodo_flask/api/pid.py -program_element: import -cardinality: 1-1 -properties: -- module name change -source_version_line: '9' -target_version_line: '9' diff --git a/data/codechange/37_1.yaml b/data/codechange/37_1.yaml deleted file mode 100644 index 9a792cd..0000000 --- a/data/codechange/37_1.yaml +++ /dev/null @@ -1,13 +0,0 @@ -id: '37_1' -repo: kizniche/mycodo -commit: 516917351d7d8341375db4481ac72910c9510a42 -source: flask-restplus -target: flask-restx -pair_id: flask-restplus,flask-restx -filepath: mycodo/mycodo_flask/api/settings.py -program_element: import -cardinality: 1-1 -properties: -- module name change -source_version_line: '7' -target_version_line: '7' diff --git a/data/codechange/37_2.yaml b/data/codechange/37_2.yaml deleted file mode 100644 index d9b3257..0000000 --- a/data/codechange/37_2.yaml +++ /dev/null @@ -1,13 +0,0 @@ -id: '37_2' -repo: kizniche/mycodo -commit: 516917351d7d8341375db4481ac72910c9510a42 -source: flask-restplus -target: flask-restx -pair_id: flask-restplus,flask-restx -filepath: mycodo/mycodo_flask/api/settings.py -program_element: import -cardinality: 1-1 -properties: -- module name change -source_version_line: '8' -target_version_line: '8' diff --git a/data/codechange/37_3.yaml b/data/codechange/37_3.yaml deleted file mode 100644 index a5e6205..0000000 --- a/data/codechange/37_3.yaml +++ /dev/null @@ -1,13 +0,0 @@ -id: '37_3' -repo: kizniche/mycodo -commit: 516917351d7d8341375db4481ac72910c9510a42 -source: flask-restplus -target: flask-restx -pair_id: flask-restplus,flask-restx -filepath: mycodo/mycodo_flask/api/settings.py -program_element: import -cardinality: 1-1 -properties: -- module name change -source_version_line: '9' -target_version_line: '9' diff --git a/data/codechange/38_1.yaml b/data/codechange/38_1.yaml deleted file mode 100644 index db76a1e..0000000 --- a/data/codechange/38_1.yaml +++ /dev/null @@ -1,13 +0,0 @@ -id: '38_1' -repo: kizniche/mycodo -commit: 516917351d7d8341375db4481ac72910c9510a42 -source: flask-restplus -target: flask-restx -pair_id: flask-restplus,flask-restx -filepath: mycodo/mycodo_flask/api/sql_schema_fields.py -program_element: import -cardinality: 1-1 -properties: -- module name change -source_version_line: '2' -target_version_line: '2' diff --git a/data/codechange/39_1.yaml b/data/codechange/39_1.yaml deleted file mode 100644 index 69327e1..0000000 --- a/data/codechange/39_1.yaml +++ /dev/null @@ -1,13 +0,0 @@ -id: '39_1' -repo: pythondataintegrator/pythondataintegrator -commit: 598f275f11bdb1796b4ea0f6b3676a45758c08c4 -source: flask-restplus -target: flask-restx -pair_id: flask-restplus,flask-restx -filepath: src/api/controllers/common/models/CommonModels.py -program_element: import -cardinality: 1-1 -properties: -- module name change -source_version_line: '3' -target_version_line: '5' diff --git a/data/codechange/3_1.yaml b/data/codechange/3_1.yaml deleted file mode 100644 index 7f82691..0000000 --- a/data/codechange/3_1.yaml +++ /dev/null @@ -1,13 +0,0 @@ -id: '3_1' -repo: rocketmap/rocketmap -commit: 2960ec68f85274c37068e2577f28c44eecc4ff26 -source: argparse -target: configargparse -pair_id: argparse,configargparse -filepath: pogom/utils.py -program_element: function call -cardinality: 1-1 -properties: -- argument deletion -source_version_line: '73' -target_version_line: '35' diff --git a/data/codechange/3_2.yaml b/data/codechange/3_2.yaml deleted file mode 100644 index 8e7e5ce..0000000 --- a/data/codechange/3_2.yaml +++ /dev/null @@ -1,13 +0,0 @@ -id: '3_2' -repo: rocketmap/rocketmap -commit: 2960ec68f85274c37068e2577f28c44eecc4ff26 -source: argparse -target: configargparse -pair_id: argparse,configargparse -filepath: pogom/utils.py -program_element: function call -cardinality: 1-1 -properties: -- argument deletion -source_version_line: '74' -target_version_line: '36' diff --git a/data/codechange/3_3.yaml b/data/codechange/3_3.yaml deleted file mode 100644 index b81e19f..0000000 --- a/data/codechange/3_3.yaml +++ /dev/null @@ -1,13 +0,0 @@ -id: '3_3' -repo: rocketmap/rocketmap -commit: 2960ec68f85274c37068e2577f28c44eecc4ff26 -source: argparse -target: configargparse -pair_id: argparse,configargparse -filepath: pogom/utils.py -program_element: function call -cardinality: 1-1 -properties: -- argument deletion -source_version_line: '75' -target_version_line: '37' diff --git a/data/codechange/3_4.yaml b/data/codechange/3_4.yaml deleted file mode 100644 index 6b69410..0000000 --- a/data/codechange/3_4.yaml +++ /dev/null @@ -1,13 +0,0 @@ -id: '3_4' -repo: rocketmap/rocketmap -commit: 2960ec68f85274c37068e2577f28c44eecc4ff26 -source: argparse -target: configargparse -pair_id: argparse,configargparse -filepath: pogom/utils.py -program_element: function call -cardinality: 1-1 -properties: -- argument deletion -source_version_line: '77' -target_version_line: '77' diff --git a/data/codechange/3_5.yaml b/data/codechange/3_5.yaml deleted file mode 100644 index cbbe64d..0000000 --- a/data/codechange/3_5.yaml +++ /dev/null @@ -1,13 +0,0 @@ -id: '3_5' -repo: rocketmap/rocketmap -commit: 2960ec68f85274c37068e2577f28c44eecc4ff26 -source: argparse -target: configargparse -pair_id: argparse,configargparse -filepath: pogom/utils.py -program_element: function call -cardinality: 1-1 -properties: -- argument deletion -source_version_line: '86' -target_version_line: '47' diff --git a/data/codechange/3_6.yaml b/data/codechange/3_6.yaml deleted file mode 100644 index 371488d..0000000 --- a/data/codechange/3_6.yaml +++ /dev/null @@ -1,13 +0,0 @@ -id: '3_6' -repo: rocketmap/rocketmap -commit: 2960ec68f85274c37068e2577f28c44eecc4ff26 -source: argparse -target: configargparse -pair_id: argparse,configargparse -filepath: pogom/utils.py -program_element: function call -cardinality: 1-1 -properties: -- argument deletion -source_version_line: '87' -target_version_line: '48' diff --git a/data/codechange/3_7.yaml b/data/codechange/3_7.yaml deleted file mode 100644 index 76e0942..0000000 --- a/data/codechange/3_7.yaml +++ /dev/null @@ -1,13 +0,0 @@ -id: '3_7' -repo: rocketmap/rocketmap -commit: 2960ec68f85274c37068e2577f28c44eecc4ff26 -source: argparse -target: configargparse -pair_id: argparse,configargparse -filepath: pogom/utils.py -program_element: function call -cardinality: 1-1 -properties: -- argument deletion -source_version_line: '88' -target_version_line: '49' diff --git a/data/codechange/40_1.yaml b/data/codechange/40_1.yaml deleted file mode 100644 index 9b0701c..0000000 --- a/data/codechange/40_1.yaml +++ /dev/null @@ -1,13 +0,0 @@ -id: '40_1' -repo: pythondataintegrator/pythondataintegrator -commit: 598f275f11bdb1796b4ea0f6b3676a45758c08c4 -source: flask-restplus -target: flask-restx -pair_id: flask-restplus,flask-restx -filepath: src/api/controllers/connection/models/ConnectionModels.py -program_element: import -cardinality: 1-1 -properties: -- module name change -source_version_line: '4' -target_version_line: '4' diff --git a/data/codechange/41_1.yaml b/data/codechange/41_1.yaml deleted file mode 100644 index 1db7dbc..0000000 --- a/data/codechange/41_1.yaml +++ /dev/null @@ -1,13 +0,0 @@ -id: '41_1' -repo: pythondataintegrator/pythondataintegrator -commit: 598f275f11bdb1796b4ea0f6b3676a45758c08c4 -source: flask-restplus -target: flask-restx -pair_id: flask-restplus,flask-restx -filepath: src/api/controllers/integration/models/DataIntegrationModels.py -program_element: import -cardinality: 1-1 -properties: -- module name change -source_version_line: '4' -target_version_line: '4' diff --git a/data/codechange/42_1.yaml b/data/codechange/42_1.yaml deleted file mode 100644 index 21f7dae..0000000 --- a/data/codechange/42_1.yaml +++ /dev/null @@ -1,13 +0,0 @@ -id: '42_1' -repo: pythondataintegrator/pythondataintegrator -commit: 598f275f11bdb1796b4ea0f6b3676a45758c08c4 -source: flask-restplus -target: flask-restx -pair_id: flask-restplus,flask-restx -filepath: src/api/controllers/job/models/JobModels.py -program_element: import -cardinality: 1-1 -properties: -- module name change -source_version_line: '4' -target_version_line: '4' diff --git a/data/codechange/43_1.yaml b/data/codechange/43_1.yaml deleted file mode 100644 index 41f67d5..0000000 --- a/data/codechange/43_1.yaml +++ /dev/null @@ -1,13 +0,0 @@ -id: '43_1' -repo: pythondataintegrator/pythondataintegrator -commit: 598f275f11bdb1796b4ea0f6b3676a45758c08c4 -source: flask-restplus -target: flask-restx -pair_id: flask-restplus,flask-restx -filepath: src/api/controllers/operation/models/DataOperationModels.py -program_element: import -cardinality: 1-1 -properties: -- module name change -source_version_line: '5' -target_version_line: '5' diff --git a/data/codechange/44_1.yaml b/data/codechange/44_1.yaml deleted file mode 100644 index 58be4dd..0000000 --- a/data/codechange/44_1.yaml +++ /dev/null @@ -1,13 +0,0 @@ -id: '44_1' -repo: pythondataintegrator/pythondataintegrator -commit: 598f275f11bdb1796b4ea0f6b3676a45758c08c4 -source: flask-restplus -target: flask-restx -pair_id: flask-restplus,flask-restx -filepath: src/api/controllers/operation/models/JobSchedulerModels.py -program_element: import -cardinality: 1-1 -properties: -- module name change -source_version_line: '5' -target_version_line: '5' diff --git a/data/codechange/45_1.yaml b/data/codechange/45_1.yaml deleted file mode 100644 index e5c7f7d..0000000 --- a/data/codechange/45_1.yaml +++ /dev/null @@ -1,13 +0,0 @@ -id: '45_1' -repo: pythondataintegrator/pythondataintegrator -commit: 598f275f11bdb1796b4ea0f6b3676a45758c08c4 -source: flask-restplus -target: flask-restx -pair_id: flask-restplus,flask-restx -filepath: src/api/infrastructor/api/ResourceBase.py -program_element: import -cardinality: 1-1 -properties: -- module name change -source_version_line: '1' -target_version_line: '1' diff --git a/data/codechange/46_1.yaml b/data/codechange/46_1.yaml deleted file mode 100644 index a742340..0000000 --- a/data/codechange/46_1.yaml +++ /dev/null @@ -1,13 +0,0 @@ -id: '46_1' -repo: pythondataintegrator/pythondataintegrator -commit: 598f275f11bdb1796b4ea0f6b3676a45758c08c4 -source: flask-restplus -target: flask-restx -pair_id: flask-restplus,flask-restx -filepath: src/api/IocManager.py -program_element: import -cardinality: 1-1 -properties: -- module name change -source_version_line: '6' -target_version_line: '6' diff --git a/data/codechange/47_1.yaml b/data/codechange/47_1.yaml deleted file mode 100644 index 52fff27..0000000 --- a/data/codechange/47_1.yaml +++ /dev/null @@ -1,13 +0,0 @@ -id: '47_1' -repo: apryor6/flaskerize -commit: 59d8319355bf95f26949fe13ac3d6be5b5282fb6 -source: flask-restplus -target: flask-restx -pair_id: flask-restplus,flask-restx -filepath: flaskerize/generate.py -program_element: import -cardinality: 1-1 -properties: -- module name change -source_version_line: '152' -target_version_line: '152' diff --git a/data/codechange/48_1.yaml b/data/codechange/48_1.yaml deleted file mode 100644 index 4afbcf3..0000000 --- a/data/codechange/48_1.yaml +++ /dev/null @@ -1,13 +0,0 @@ -id: '48_1' -repo: apryor6/flaskerize -commit: 59d8319355bf95f26949fe13ac3d6be5b5282fb6 -source: flask-restplus -target: flask-restx -pair_id: flask-restplus,flask-restx -filepath: flaskerize/schematics/entity/files/{{ name }}.template/controller.py.template -program_element: import -cardinality: 1-1 -properties: -- module name change -source_version_line: '1' -target_version_line: '1' diff --git a/data/codechange/48_2.yaml b/data/codechange/48_2.yaml deleted file mode 100644 index 1b4fbc2..0000000 --- a/data/codechange/48_2.yaml +++ /dev/null @@ -1,13 +0,0 @@ -id: '48_2' -repo: apryor6/flaskerize -commit: 59d8319355bf95f26949fe13ac3d6be5b5282fb6 -source: flask-restplus -target: flask-restx -pair_id: flask-restplus,flask-restx -filepath: flaskerize/schematics/entity/files/{{ name }}.template/controller.py.template -program_element: import -cardinality: 1-1 -properties: -- module name change -source_version_line: '3' -target_version_line: '3' diff --git a/data/codechange/49_1.yaml b/data/codechange/49_1.yaml deleted file mode 100644 index 4862844..0000000 --- a/data/codechange/49_1.yaml +++ /dev/null @@ -1,13 +0,0 @@ -id: '49_1' -repo: apryor6/flaskerize -commit: 59d8319355bf95f26949fe13ac3d6be5b5282fb6 -source: flask-restplus -target: flask-restx -pair_id: flask-restplus,flask-restx -filepath: flaskerize/schematics/flask-api/files/{{ name }}.template/app/__init__.py -program_element: import -cardinality: 1-1 -properties: -- module name change -source_version_line: '3' -target_version_line: '3' diff --git a/data/codechange/4_1.yaml b/data/codechange/4_1.yaml deleted file mode 100644 index e8827a0..0000000 --- a/data/codechange/4_1.yaml +++ /dev/null @@ -1,13 +0,0 @@ -id: '4_1' -repo: sapfir0/premier-eye -commit: a7375ccc40885f04faf4a05852591e6de4ba676d -source: celery -target: rq -pair_id: celery,rq -filepath: pyfront/app/__init__.py -program_element: import -cardinality: 1-1 -properties: -- full statement replacement -source_version_line: '2' -target_version_line: '3' diff --git a/data/codechange/50_1.yaml b/data/codechange/50_1.yaml deleted file mode 100644 index bba8ec8..0000000 --- a/data/codechange/50_1.yaml +++ /dev/null @@ -1,13 +0,0 @@ -id: '50_1' -repo: apryor6/flaskerize -commit: 59d8319355bf95f26949fe13ac3d6be5b5282fb6 -source: flask-restplus -target: flask-restx -pair_id: flask-restplus,flask-restx -filepath: flaskerize/schematics/flask-api/files/{{ name }}.template/app/widget/controller.py -program_element: import -cardinality: 1-1 -properties: -- module name change -source_version_line: '3' -target_version_line: '3' diff --git a/data/codechange/51_1.yaml b/data/codechange/51_1.yaml deleted file mode 100644 index b95950b..0000000 --- a/data/codechange/51_1.yaml +++ /dev/null @@ -1,13 +0,0 @@ -id: '51_1' -repo: orchest/orchest -commit: 6b629d0d0dc7d44113e75a8a3f97a1c68d2ee131 -source: flask-restplus -target: flask-restx -pair_id: flask-restplus,flask-restx -filepath: services/orchest-api/app/app/apis/__init__.py -program_element: import -cardinality: 1-1 -properties: -- module name change -source_version_line: '2' -target_version_line: '2' diff --git a/data/codechange/52_1.yaml b/data/codechange/52_1.yaml deleted file mode 100644 index c62eee7..0000000 --- a/data/codechange/52_1.yaml +++ /dev/null @@ -1,13 +0,0 @@ -id: '52_1' -repo: orchest/orchest -commit: 6b629d0d0dc7d44113e75a8a3f97a1c68d2ee131 -source: flask-restplus -target: flask-restx -pair_id: flask-restplus,flask-restx -filepath: services/orchest-api/app/app/apis/namespace_environment_builds.py -program_element: import -cardinality: 1-1 -properties: -- module name change -source_version_line: '6' -target_version_line: '6' diff --git a/data/codechange/53_1.yaml b/data/codechange/53_1.yaml deleted file mode 100644 index f65c9c5..0000000 --- a/data/codechange/53_1.yaml +++ /dev/null @@ -1,13 +0,0 @@ -id: '53_1' -repo: orchest/orchest -commit: 6b629d0d0dc7d44113e75a8a3f97a1c68d2ee131 -source: flask-restplus -target: flask-restx -pair_id: flask-restplus,flask-restx -filepath: services/orchest-api/app/app/apis/namespace_environment_images.py -program_element: import -cardinality: 1-1 -properties: -- module name change -source_version_line: '4' -target_version_line: '4' diff --git a/data/codechange/54_1.yaml b/data/codechange/54_1.yaml deleted file mode 100644 index 6340ead..0000000 --- a/data/codechange/54_1.yaml +++ /dev/null @@ -1,13 +0,0 @@ -id: '54_1' -repo: orchest/orchest -commit: 6b629d0d0dc7d44113e75a8a3f97a1c68d2ee131 -source: flask-restplus -target: flask-restx -pair_id: flask-restplus,flask-restx -filepath: services/orchest-api/app/app/apis/namespace_experiments.py -program_element: import -cardinality: 1-1 -properties: -- module name change -source_version_line: '8' -target_version_line: '8' diff --git a/data/codechange/55_1.yaml b/data/codechange/55_1.yaml deleted file mode 100644 index ff98a9f..0000000 --- a/data/codechange/55_1.yaml +++ /dev/null @@ -1,13 +0,0 @@ -id: '55_1' -repo: orchest/orchest -commit: 6b629d0d0dc7d44113e75a8a3f97a1c68d2ee131 -source: flask-restplus -target: flask-restx -pair_id: flask-restplus,flask-restx -filepath: services/orchest-api/app/app/apis/namespace_pipelines.py -program_element: import -cardinality: 1-1 -properties: -- module name change -source_version_line: '6' -target_version_line: '6' diff --git a/data/codechange/56_1.yaml b/data/codechange/56_1.yaml deleted file mode 100644 index 0bf994a..0000000 --- a/data/codechange/56_1.yaml +++ /dev/null @@ -1,13 +0,0 @@ -id: '56_1' -repo: orchest/orchest -commit: 6b629d0d0dc7d44113e75a8a3f97a1c68d2ee131 -source: flask-restplus -target: flask-restx -pair_id: flask-restplus,flask-restx -filepath: services/orchest-api/app/app/apis/namespace_projects.py -program_element: import -cardinality: 1-1 -properties: -- module name change -source_version_line: '6' -target_version_line: '6' diff --git a/data/codechange/57_1.yaml b/data/codechange/57_1.yaml deleted file mode 100644 index 758e123..0000000 --- a/data/codechange/57_1.yaml +++ /dev/null @@ -1,13 +0,0 @@ -id: '57_1' -repo: orchest/orchest -commit: 6b629d0d0dc7d44113e75a8a3f97a1c68d2ee131 -source: flask-restplus -target: flask-restx -pair_id: flask-restplus,flask-restx -filepath: services/orchest-api/app/app/apis/namespace_runs.py -program_element: import -cardinality: 1-1 -properties: -- module name change -source_version_line: '11' -target_version_line: '11' diff --git a/data/codechange/58_1.yaml b/data/codechange/58_1.yaml deleted file mode 100644 index 593e8fc..0000000 --- a/data/codechange/58_1.yaml +++ /dev/null @@ -1,13 +0,0 @@ -id: '58_1' -repo: orchest/orchest -commit: 6b629d0d0dc7d44113e75a8a3f97a1c68d2ee131 -source: flask-restplus -target: flask-restx -pair_id: flask-restplus,flask-restx -filepath: services/orchest-api/app/app/apis/namespace_sessions.py -program_element: import -cardinality: 1-1 -properties: -- module name change -source_version_line: '5' -target_version_line: '5' diff --git a/data/codechange/59_1.yaml b/data/codechange/59_1.yaml deleted file mode 100644 index 254ed04..0000000 --- a/data/codechange/59_1.yaml +++ /dev/null @@ -1,13 +0,0 @@ -id: '59_1' -repo: orchest/orchest -commit: 6b629d0d0dc7d44113e75a8a3f97a1c68d2ee131 -source: flask-restplus -target: flask-restx -pair_id: flask-restplus,flask-restx -filepath: services/orchest-api/app/app/apis/namespace_validations.py -program_element: import -cardinality: 1-1 -properties: -- module name change -source_version_line: '7' -target_version_line: '7' diff --git a/data/codechange/5_1.yaml b/data/codechange/5_1.yaml deleted file mode 100644 index f670a8f..0000000 --- a/data/codechange/5_1.yaml +++ /dev/null @@ -1,13 +0,0 @@ -id: '5_1' -repo: thombashi/sqlitebiter -commit: 26c8e7467fb764d6abca03d6830f7679cbfc3ea1 -source: dataproperty -target: typepy -pair_id: dataproperty,typepy -filepath: sqlitebiter/sqlitebiter.py -program_element: import -cardinality: 1-1 -properties: -- module name change -source_version_line: '13' -target_version_line: '17' diff --git a/data/codechange/60_1.yaml b/data/codechange/60_1.yaml deleted file mode 100644 index ed4c86b..0000000 --- a/data/codechange/60_1.yaml +++ /dev/null @@ -1,13 +0,0 @@ -id: '60_1' -repo: orchest/orchest -commit: 6b629d0d0dc7d44113e75a8a3f97a1c68d2ee131 -source: flask-restplus -target: flask-restx -pair_id: flask-restplus,flask-restx -filepath: services/orchest-api/app/app/schema.py -program_element: import -cardinality: 1-1 -properties: -- module name change -source_version_line: '9' -target_version_line: '9' diff --git a/data/codechange/61_1.yaml b/data/codechange/61_1.yaml deleted file mode 100644 index acc4b43..0000000 --- a/data/codechange/61_1.yaml +++ /dev/null @@ -1,13 +0,0 @@ -id: '61_1' -repo: orchest/orchest -commit: 6b629d0d0dc7d44113e75a8a3f97a1c68d2ee131 -source: flask-restplus -target: flask-restx -pair_id: flask-restplus,flask-restx -filepath: services/orchest-api/app/app/utils.py -program_element: import -cardinality: 1-1 -properties: -- module name change -source_version_line: '8' -target_version_line: '8' diff --git a/data/codechange/62_1.yaml b/data/codechange/62_1.yaml deleted file mode 100644 index feaa1bd..0000000 --- a/data/codechange/62_1.yaml +++ /dev/null @@ -1,13 +0,0 @@ -id: '62_1' -repo: bretttolbert/verbecc-svc -commit: 24a848d285ae2c6f3e5b06d1a8ee718cb3f17133 -source: flask -target: fastapi -pair_id: flask,fastapi -filepath: python/verb_conjugate_fr/__init__.py -program_element: import -cardinality: n-1 -properties: -- full statement replacement -source_version_line: 2-3 -target_version_line: '2' diff --git a/data/codechange/63_1.yaml b/data/codechange/63_1.yaml deleted file mode 100644 index 6761669..0000000 --- a/data/codechange/63_1.yaml +++ /dev/null @@ -1,13 +0,0 @@ -id: '63_1' -repo: virtuber/openvtuber -commit: 3abbc431e586218470f47eac10fa6d351c6fe907 -source: flask -target: fastapi -pair_id: flask,fastapi -filepath: openvtuber-server/src/openvtuber/web/web.py -program_element: import -cardinality: 1-n -properties: -- full statement replacement -source_version_line: '3' -target_version_line: 4-5 diff --git a/data/codechange/64_1.yaml b/data/codechange/64_1.yaml deleted file mode 100644 index c1f06fe..0000000 --- a/data/codechange/64_1.yaml +++ /dev/null @@ -1,14 +0,0 @@ -id: '64_1' -repo: virtuber/openvtuber -commit: 3abbc431e586218470f47eac10fa6d351c6fe907 -source: flask -target: fastapi -pair_id: flask,fastapi -filepath: openvtuber-server/src/openvtuber/web/web.py -program_element: function call -cardinality: 1-1 -properties: -- argument deletion -- function name change -source_version_line: '6' -target_version_line: '8' diff --git a/data/codechange/65_1.yaml b/data/codechange/65_1.yaml deleted file mode 100644 index 4979306..0000000 --- a/data/codechange/65_1.yaml +++ /dev/null @@ -1,13 +0,0 @@ -id: '65_1' -repo: elblogbruno/notionai-mymind -commit: 002f5bde5d5d5f2eaaf6999e41e4619817c10400 -source: flask -target: quart -pair_id: flask,quart -filepath: Python Server/app/server.py -program_element: function call -cardinality: 1-1 -properties: -- making await -source_version_line: '149' -target_version_line: '110' diff --git a/data/codechange/66_1.yaml b/data/codechange/66_1.yaml deleted file mode 100644 index e133292..0000000 --- a/data/codechange/66_1.yaml +++ /dev/null @@ -1,15 +0,0 @@ -id: '66_1' -repo: elblogbruno/notionai-mymind -commit: 002f5bde5d5d5f2eaaf6999e41e4619817c10400 -source: flask -target: quart -pair_id: flask,quart -filepath: Python Server/app/server.py -program_element: attribute access -cardinality: 1-1 -properties: -- changing to method call -- making await -- attribute name change -source_version_line: '154' -target_version_line: '115' diff --git a/data/codechange/67_1.yaml b/data/codechange/67_1.yaml deleted file mode 100644 index d1d7563..0000000 --- a/data/codechange/67_1.yaml +++ /dev/null @@ -1,13 +0,0 @@ -id: '67_1' -repo: elblogbruno/notionai-mymind -commit: 002f5bde5d5d5f2eaaf6999e41e4619817c10400 -source: flask -target: quart -pair_id: flask,quart -filepath: Python Server/app/server.py -program_element: function call -cardinality: 1-1 -properties: -- function name change -source_version_line: '20' -target_version_line: '14' diff --git a/data/codechange/68_1.yaml b/data/codechange/68_1.yaml deleted file mode 100644 index 4f6556c..0000000 --- a/data/codechange/68_1.yaml +++ /dev/null @@ -1,13 +0,0 @@ -id: '68_1' -repo: elblogbruno/notionai-mymind -commit: 002f5bde5d5d5f2eaaf6999e41e4619817c10400 -source: flask -target: quart -pair_id: flask,quart -filepath: Python Server/app/server.py -program_element: import -cardinality: 1-1 -properties: -- full statement replacement -source_version_line: 4-6 -target_version_line: '3' diff --git a/data/codechange/69_1.yaml b/data/codechange/69_1.yaml deleted file mode 100644 index ff68574..0000000 --- a/data/codechange/69_1.yaml +++ /dev/null @@ -1,13 +0,0 @@ -id: '69_1' -repo: elblogbruno/notionai-mymind -commit: 002f5bde5d5d5f2eaaf6999e41e4619817c10400 -source: flask -target: quart -pair_id: flask,quart -filepath: Python Server/app/server.py -program_element: attribute access -cardinality: 1-1 -properties: -- making await -source_version_line: '80' -target_version_line: '55' diff --git a/data/codechange/6_1.yaml b/data/codechange/6_1.yaml deleted file mode 100644 index 6ec6f99..0000000 --- a/data/codechange/6_1.yaml +++ /dev/null @@ -1,13 +0,0 @@ -id: '6_1' -repo: thombashi/sqlitebiter -commit: 26c8e7467fb764d6abca03d6830f7679cbfc3ea1 -source: dataproperty -target: typepy -pair_id: dataproperty,typepy -filepath: sqlitebiter/sqlitebiter.py -program_element: function call -cardinality: 1-1 -properties: -- function name change -source_version_line: '46' -target_version_line: '46' diff --git a/data/codechange/6_2.yaml b/data/codechange/6_2.yaml deleted file mode 100644 index 9b02dcc..0000000 --- a/data/codechange/6_2.yaml +++ /dev/null @@ -1,13 +0,0 @@ -id: '6_2' -repo: thombashi/sqlitebiter -commit: 26c8e7467fb764d6abca03d6830f7679cbfc3ea1 -source: dataproperty -target: typepy -pair_id: dataproperty,typepy -filepath: sqlitebiter/sqlitebiter.py -program_element: function call -cardinality: 1-1 -properties: -- function name change -source_version_line: '136' -target_version_line: '136' diff --git a/data/codechange/6_3.yaml b/data/codechange/6_3.yaml deleted file mode 100644 index 2f4ba7e..0000000 --- a/data/codechange/6_3.yaml +++ /dev/null @@ -1,13 +0,0 @@ -id: '6_3' -repo: thombashi/sqlitebiter -commit: 26c8e7467fb764d6abca03d6830f7679cbfc3ea1 -source: dataproperty -target: typepy -pair_id: dataproperty,typepy -filepath: sqlitebiter/sqlitebiter.py -program_element: function call -cardinality: 1-1 -properties: -- function name change -source_version_line: '227' -target_version_line: '227' diff --git a/data/codechange/6_4.yaml b/data/codechange/6_4.yaml deleted file mode 100644 index 6fd4324..0000000 --- a/data/codechange/6_4.yaml +++ /dev/null @@ -1,13 +0,0 @@ -id: '6_4' -repo: thombashi/sqlitebiter -commit: 26c8e7467fb764d6abca03d6830f7679cbfc3ea1 -source: dataproperty -target: typepy -pair_id: dataproperty,typepy -filepath: sqlitebiter/sqlitebiter.py -program_element: function call -cardinality: 1-1 -properties: -- function name change -source_version_line: '239' -target_version_line: '239' diff --git a/data/codechange/70_1.yaml b/data/codechange/70_1.yaml deleted file mode 100644 index 12bb0e6..0000000 --- a/data/codechange/70_1.yaml +++ /dev/null @@ -1,13 +0,0 @@ -id: '70_1' -repo: pgjones/faster_than_flask_article -commit: 0a70f2bddae90da13da5bce2b77ea56355ecc5d1 -source: flask -target: quart -pair_id: flask,quart -filepath: app/films.py -program_element: import -cardinality: 1-1 -properties: -- module name change -source_version_line: '1' -target_version_line: '1' diff --git a/data/codechange/71_1.yaml b/data/codechange/71_1.yaml deleted file mode 100644 index fb2d99c..0000000 --- a/data/codechange/71_1.yaml +++ /dev/null @@ -1,13 +0,0 @@ -id: '71_1' -repo: pgjones/faster_than_flask_article -commit: 0a70f2bddae90da13da5bce2b77ea56355ecc5d1 -source: flask -target: quart -pair_id: flask,quart -filepath: app/reviews.py -program_element: import -cardinality: 1-1 -properties: -- module name change -source_version_line: '1' -target_version_line: '1' diff --git a/data/codechange/72_1.yaml b/data/codechange/72_1.yaml deleted file mode 100644 index 835a520..0000000 --- a/data/codechange/72_1.yaml +++ /dev/null @@ -1,13 +0,0 @@ -id: '72_1' -repo: pgjones/faster_than_flask_article -commit: 0a70f2bddae90da13da5bce2b77ea56355ecc5d1 -source: flask -target: quart -pair_id: flask,quart -filepath: app/reviews.py -program_element: function call -cardinality: 1-1 -properties: -- making await -source_version_line: '8' -target_version_line: '8' diff --git a/data/codechange/73_1.yaml b/data/codechange/73_1.yaml deleted file mode 100644 index 7c93543..0000000 --- a/data/codechange/73_1.yaml +++ /dev/null @@ -1,13 +0,0 @@ -id: '73_1' -repo: pgjones/faster_than_flask_article -commit: 0a70f2bddae90da13da5bce2b77ea56355ecc5d1 -source: flask -target: quart -pair_id: flask,quart -filepath: app/run.py -program_element: function call -cardinality: 1-1 -properties: -- function name change -source_version_line: '35' -target_version_line: '12' diff --git a/data/codechange/74_1.yaml b/data/codechange/74_1.yaml deleted file mode 100644 index da32d2a..0000000 --- a/data/codechange/74_1.yaml +++ /dev/null @@ -1,14 +0,0 @@ -id: '74_1' -repo: pgjones/faster_than_flask_article -commit: 0a70f2bddae90da13da5bce2b77ea56355ecc5d1 -source: flask -target: quart -pair_id: flask,quart -filepath: app/run.py -program_element: import -cardinality: 1-1 -properties: -- module name change -- object name change -source_version_line: '4' -target_version_line: '5' diff --git a/data/codechange/75_1.yaml b/data/codechange/75_1.yaml deleted file mode 100644 index 746ee0c..0000000 --- a/data/codechange/75_1.yaml +++ /dev/null @@ -1,13 +0,0 @@ -id: '75_1' -repo: intel/stacks-usecase -commit: 22cc3f007a3267ca09a3f53b84fdbfff1f045e88 -source: flask -target: quart -pair_id: flask,quart -filepath: github-issue-classification/python/rest.py -program_element: import -cardinality: 1-n -properties: -- full statement replacement -source_version_line: '19' -target_version_line: '19:21' diff --git a/data/codechange/76_1.yaml b/data/codechange/76_1.yaml deleted file mode 100644 index 7c8dfab..0000000 --- a/data/codechange/76_1.yaml +++ /dev/null @@ -1,13 +0,0 @@ -id: '76_1' -repo: intel/stacks-usecase -commit: 22cc3f007a3267ca09a3f53b84fdbfff1f045e88 -source: flask -target: quart -pair_id: flask,quart -filepath: github-issue-classification/python/rest.py -program_element: function call -cardinality: 1-1 -properties: -- function name change -source_version_line: '23' -target_version_line: '27' diff --git a/data/codechange/77_1.yaml b/data/codechange/77_1.yaml deleted file mode 100644 index d77fc56..0000000 --- a/data/codechange/77_1.yaml +++ /dev/null @@ -1,13 +0,0 @@ -id: '77_1' -repo: intel/stacks-usecase -commit: 22cc3f007a3267ca09a3f53b84fdbfff1f045e88 -source: flask -target: quart -pair_id: flask,quart -filepath: github-issue-classification/python/rest.py -program_element: attribute access -cardinality: 1-1 -properties: -- attribute name change -source_version_line: '42' -target_version_line: '49' diff --git a/data/codechange/77_2.yaml b/data/codechange/77_2.yaml deleted file mode 100644 index 490b1bc..0000000 --- a/data/codechange/77_2.yaml +++ /dev/null @@ -1,13 +0,0 @@ -id: '77_2' -repo: intel/stacks-usecase -commit: 22cc3f007a3267ca09a3f53b84fdbfff1f045e88 -source: flask -target: quart -pair_id: flask,quart -filepath: github-issue-classification/python/rest.py -program_element: attribute access -cardinality: 1-1 -properties: -- attribute name change -source_version_line: '43' -target_version_line: '50' diff --git a/data/codechange/77_3.yaml b/data/codechange/77_3.yaml deleted file mode 100644 index 78c3a01..0000000 --- a/data/codechange/77_3.yaml +++ /dev/null @@ -1,13 +0,0 @@ -id: '77_3' -repo: intel/stacks-usecase -commit: 22cc3f007a3267ca09a3f53b84fdbfff1f045e88 -source: flask -target: quart -pair_id: flask,quart -filepath: github-issue-classification/python/rest.py -program_element: attribute access -cardinality: 1-1 -properties: -- attribute name change -source_version_line: '43' -target_version_line: '50' diff --git a/data/codechange/78_1.yaml b/data/codechange/78_1.yaml deleted file mode 100644 index 963825e..0000000 --- a/data/codechange/78_1.yaml +++ /dev/null @@ -1,13 +0,0 @@ -id: '78_1' -repo: intel/stacks-usecase -commit: 22cc3f007a3267ca09a3f53b84fdbfff1f045e88 -source: flask -target: quart -pair_id: flask,quart -filepath: github-issue-classification/python/rest.py -program_element: function call -cardinality: 1-1 -properties: -- function name change -source_version_line: '44' -target_version_line: '51' diff --git a/data/codechange/78_2.yaml b/data/codechange/78_2.yaml deleted file mode 100644 index 2e2fca1..0000000 --- a/data/codechange/78_2.yaml +++ /dev/null @@ -1,13 +0,0 @@ -id: '78_2' -repo: intel/stacks-usecase -commit: 22cc3f007a3267ca09a3f53b84fdbfff1f045e88 -source: flask -target: quart -pair_id: flask,quart -filepath: github-issue-classification/python/rest.py -program_element: function call -cardinality: 1-1 -properties: -- function name change -source_version_line: '46' -target_version_line: '53' diff --git a/data/codechange/78_3.yaml b/data/codechange/78_3.yaml deleted file mode 100644 index a558235..0000000 --- a/data/codechange/78_3.yaml +++ /dev/null @@ -1,13 +0,0 @@ -id: '78_3' -repo: intel/stacks-usecase -commit: 22cc3f007a3267ca09a3f53b84fdbfff1f045e88 -source: flask -target: quart -pair_id: flask,quart -filepath: github-issue-classification/python/rest.py -program_element: function call -cardinality: 1-1 -properties: -- function name change -source_version_line: '51' -target_version_line: '58' diff --git a/data/codechange/78_4.yaml b/data/codechange/78_4.yaml deleted file mode 100644 index 2c4f2d4..0000000 --- a/data/codechange/78_4.yaml +++ /dev/null @@ -1,13 +0,0 @@ -id: '78_4' -repo: intel/stacks-usecase -commit: 22cc3f007a3267ca09a3f53b84fdbfff1f045e88 -source: flask -target: quart -pair_id: flask,quart -filepath: github-issue-classification/python/rest.py -program_element: function call -cardinality: 1-1 -properties: -- function name change -source_version_line: '51' -target_version_line: '58' diff --git a/data/codechange/79_1.yaml b/data/codechange/79_1.yaml deleted file mode 100644 index f2c5e18..0000000 --- a/data/codechange/79_1.yaml +++ /dev/null @@ -1,13 +0,0 @@ -id: '79_1' -repo: synesthesiam/voice2json -commit: 7ea7ddb8400775282e82c1adcb17b013f27ede2b -source: flask -target: quart -pair_id: flask,quart -filepath: web/app.py -program_element: function call -cardinality: 1-1 -properties: -- making await -source_version_line: '100' -target_version_line: '102' diff --git a/data/codechange/79_2.yaml b/data/codechange/79_2.yaml deleted file mode 100644 index 236a7f5..0000000 --- a/data/codechange/79_2.yaml +++ /dev/null @@ -1,13 +0,0 @@ -id: '79_2' -repo: synesthesiam/voice2json -commit: 7ea7ddb8400775282e82c1adcb17b013f27ede2b -source: flask -target: quart -pair_id: flask,quart -filepath: web/app.py -program_element: function call -cardinality: 1-1 -properties: -- making await -source_version_line: '105' -target_version_line: '107' diff --git a/data/codechange/79_3.yaml b/data/codechange/79_3.yaml deleted file mode 100644 index d236d77..0000000 --- a/data/codechange/79_3.yaml +++ /dev/null @@ -1,13 +0,0 @@ -id: '79_3' -repo: synesthesiam/voice2json -commit: 7ea7ddb8400775282e82c1adcb17b013f27ede2b -source: flask -target: quart -pair_id: flask,quart -filepath: web/app.py -program_element: function call -cardinality: 1-1 -properties: -- making await -source_version_line: '166' -target_version_line: '172' diff --git a/data/codechange/79_4.yaml b/data/codechange/79_4.yaml deleted file mode 100644 index 7a02455..0000000 --- a/data/codechange/79_4.yaml +++ /dev/null @@ -1,13 +0,0 @@ -id: '79_4' -repo: synesthesiam/voice2json -commit: 7ea7ddb8400775282e82c1adcb17b013f27ede2b -source: flask -target: quart -pair_id: flask,quart -filepath: web/app.py -program_element: function call -cardinality: 1-1 -properties: -- making await -source_version_line: '195' -target_version_line: '202' diff --git a/data/codechange/79_5.yaml b/data/codechange/79_5.yaml deleted file mode 100644 index 2b173ce..0000000 --- a/data/codechange/79_5.yaml +++ /dev/null @@ -1,13 +0,0 @@ -id: '79_5' -repo: synesthesiam/voice2json -commit: 7ea7ddb8400775282e82c1adcb17b013f27ede2b -source: flask -target: quart -pair_id: flask,quart -filepath: web/app.py -program_element: function call -cardinality: 1-1 -properties: -- making await -source_version_line: '235' -target_version_line: '243' diff --git a/data/codechange/79_6.yaml b/data/codechange/79_6.yaml deleted file mode 100644 index bd82208..0000000 --- a/data/codechange/79_6.yaml +++ /dev/null @@ -1,13 +0,0 @@ -id: '79_6' -repo: synesthesiam/voice2json -commit: 7ea7ddb8400775282e82c1adcb17b013f27ede2b -source: flask -target: quart -pair_id: flask,quart -filepath: web/app.py -program_element: function call -cardinality: 1-1 -properties: -- making await -source_version_line: '237' -target_version_line: '245' diff --git a/data/codechange/79_7.yaml b/data/codechange/79_7.yaml deleted file mode 100644 index 6ad4a98..0000000 --- a/data/codechange/79_7.yaml +++ /dev/null @@ -1,13 +0,0 @@ -id: '79_7' -repo: synesthesiam/voice2json -commit: 7ea7ddb8400775282e82c1adcb17b013f27ede2b -source: flask -target: quart -pair_id: flask,quart -filepath: web/app.py -program_element: function call -cardinality: 1-1 -properties: -- making await -source_version_line: '242' -target_version_line: '250' diff --git a/data/codechange/7_1.yaml b/data/codechange/7_1.yaml deleted file mode 100644 index 3b976c6..0000000 --- a/data/codechange/7_1.yaml +++ /dev/null @@ -1,13 +0,0 @@ -id: '7_1' -repo: thombashi/pingparsing -commit: 45fac3cb38661f80fc8bd129ce633cfd15423835 -source: dataproperty -target: typepy -pair_id: dataproperty,typepy -filepath: pingparsing/_pingparsing.py -program_element: import -cardinality: 1-1 -properties: -- module name change -source_version_line: '10' -target_version_line: '11' diff --git a/data/codechange/80_1.yaml b/data/codechange/80_1.yaml deleted file mode 100644 index 6ecacc8..0000000 --- a/data/codechange/80_1.yaml +++ /dev/null @@ -1,14 +0,0 @@ -id: '80_1' -repo: synesthesiam/voice2json -commit: 7ea7ddb8400775282e82c1adcb17b013f27ede2b -source: flask -target: quart -pair_id: flask,quart -filepath: web/app.py -program_element: import -cardinality: 1-1 -properties: -- module name change -- object name change -source_version_line: '20' -target_version_line: '20' diff --git a/data/codechange/81_1.yaml b/data/codechange/81_1.yaml deleted file mode 100644 index dd607a2..0000000 --- a/data/codechange/81_1.yaml +++ /dev/null @@ -1,13 +0,0 @@ -id: '81_1' -repo: synesthesiam/voice2json -commit: 7ea7ddb8400775282e82c1adcb17b013f27ede2b -source: flask -target: quart -pair_id: flask,quart -filepath: web/app.py -program_element: function call -cardinality: 1-1 -properties: -- function name change -source_version_line: '28' -target_version_line: '28' diff --git a/data/codechange/82_1.yaml b/data/codechange/82_1.yaml deleted file mode 100644 index e48052f..0000000 --- a/data/codechange/82_1.yaml +++ /dev/null @@ -1,13 +0,0 @@ -id: '82_1' -repo: synesthesiam/voice2json -commit: 7ea7ddb8400775282e82c1adcb17b013f27ede2b -source: flask -target: quart -pair_id: flask,quart -filepath: web/app.py -program_element: attribute access -cardinality: 1-1 -properties: -- making await -source_version_line: '59' -target_version_line: '59' diff --git a/data/codechange/82_2.yaml b/data/codechange/82_2.yaml deleted file mode 100644 index 7e0b3a6..0000000 --- a/data/codechange/82_2.yaml +++ /dev/null @@ -1,13 +0,0 @@ -id: '82_2' -repo: synesthesiam/voice2json -commit: 7ea7ddb8400775282e82c1adcb17b013f27ede2b -source: flask -target: quart -pair_id: flask,quart -filepath: web/app.py -program_element: attribute access -cardinality: 1-1 -properties: -- making await -source_version_line: '95' -target_version_line: '96' diff --git a/data/codechange/82_3.yaml b/data/codechange/82_3.yaml deleted file mode 100644 index 8008210..0000000 --- a/data/codechange/82_3.yaml +++ /dev/null @@ -1,13 +0,0 @@ -id: '82_3' -repo: synesthesiam/voice2json -commit: 7ea7ddb8400775282e82c1adcb17b013f27ede2b -source: flask -target: quart -pair_id: flask,quart -filepath: web/app.py -program_element: attribute access -cardinality: 1-1 -properties: -- making await -source_version_line: '188' -target_version_line: '194' diff --git a/data/codechange/82_4.yaml b/data/codechange/82_4.yaml deleted file mode 100644 index ee33d8f..0000000 --- a/data/codechange/82_4.yaml +++ /dev/null @@ -1,13 +0,0 @@ -id: '82_4' -repo: synesthesiam/voice2json -commit: 7ea7ddb8400775282e82c1adcb17b013f27ede2b -source: flask -target: quart -pair_id: flask,quart -filepath: web/app.py -program_element: attribute access -cardinality: 1-1 -properties: -- making await -source_version_line: '212' -target_version_line: '219' diff --git a/data/codechange/83_1.yaml b/data/codechange/83_1.yaml deleted file mode 100644 index 5a774bf..0000000 --- a/data/codechange/83_1.yaml +++ /dev/null @@ -1,13 +0,0 @@ -id: '83_1' -repo: talkpython/async-techniques-python-course -commit: aa607bd32a90d7693e91bd4a1be39baec2d889ba -source: flask -target: quart -pair_id: flask,quart -filepath: src/10-async-web/acityscape_api/app.py -program_element: import -cardinality: 1-1 -properties: -- module name change -source_version_line: '1' -target_version_line: '1' diff --git a/data/codechange/84_1.yaml b/data/codechange/84_1.yaml deleted file mode 100644 index c39647c..0000000 --- a/data/codechange/84_1.yaml +++ /dev/null @@ -1,13 +0,0 @@ -id: '84_1' -repo: talkpython/async-techniques-python-course -commit: aa607bd32a90d7693e91bd4a1be39baec2d889ba -source: flask -target: quart -pair_id: flask,quart -filepath: src/10-async-web/acityscape_api/app.py -program_element: function call -cardinality: 1-1 -properties: -- function name change -source_version_line: '9' -target_version_line: '9' diff --git a/data/codechange/85_1.yaml b/data/codechange/85_1.yaml deleted file mode 100644 index c64abc5..0000000 --- a/data/codechange/85_1.yaml +++ /dev/null @@ -1,13 +0,0 @@ -id: '85_1' -repo: talkpython/async-techniques-python-course -commit: aa607bd32a90d7693e91bd4a1be39baec2d889ba -source: flask -target: quart -pair_id: flask,quart -filepath: src/10-async-web/acityscape_api/app.py -program_element: function call -cardinality: 1-1 -properties: -- function name change -source_version_line: '9' -target_version_line: '9' diff --git a/data/codechange/86_1.yaml b/data/codechange/86_1.yaml deleted file mode 100644 index 3db08f8..0000000 --- a/data/codechange/86_1.yaml +++ /dev/null @@ -1,13 +0,0 @@ -id: '86_1' -repo: talkpython/async-techniques-python-course -commit: aa607bd32a90d7693e91bd4a1be39baec2d889ba -source: flask -target: quart -pair_id: flask,quart -filepath: src/10-async-web/acityscape_api/views/city_api.py -program_element: import -cardinality: 1-1 -properties: -- module name change -source_version_line: '1' -target_version_line: '1' diff --git a/data/codechange/87_1.yaml b/data/codechange/87_1.yaml deleted file mode 100644 index 0259a38..0000000 --- a/data/codechange/87_1.yaml +++ /dev/null @@ -1,13 +0,0 @@ -id: '87_1' -repo: talkpython/async-techniques-python-course -commit: aa607bd32a90d7693e91bd4a1be39baec2d889ba -source: flask -target: quart -pair_id: flask,quart -filepath: src/10-async-web/acityscape_api/views/city_api.py -program_element: function call -cardinality: 1-1 -properties: -- function name change -source_version_line: '4' -target_version_line: '4' diff --git a/data/codechange/87_2.yaml b/data/codechange/87_2.yaml deleted file mode 100644 index c42240a..0000000 --- a/data/codechange/87_2.yaml +++ /dev/null @@ -1,13 +0,0 @@ -id: '87_2' -repo: talkpython/async-techniques-python-course -commit: aa607bd32a90d7693e91bd4a1be39baec2d889ba -source: flask -target: quart -pair_id: flask,quart -filepath: src/10-async-web/acityscape_api/views/city_api.py -program_element: function call -cardinality: 1-1 -properties: -- function name change -source_version_line: '11' -target_version_line: '11' diff --git a/data/codechange/87_3.yaml b/data/codechange/87_3.yaml deleted file mode 100644 index 01f3f09..0000000 --- a/data/codechange/87_3.yaml +++ /dev/null @@ -1,13 +0,0 @@ -id: '87_3' -repo: talkpython/async-techniques-python-course -commit: aa607bd32a90d7693e91bd4a1be39baec2d889ba -source: flask -target: quart -pair_id: flask,quart -filepath: src/10-async-web/acityscape_api/views/city_api.py -program_element: function call -cardinality: 1-1 -properties: -- function name change -source_version_line: '12' -target_version_line: '12' diff --git a/data/codechange/87_4.yaml b/data/codechange/87_4.yaml deleted file mode 100644 index 5baa5e6..0000000 --- a/data/codechange/87_4.yaml +++ /dev/null @@ -1,13 +0,0 @@ -id: '87_4' -repo: talkpython/async-techniques-python-course -commit: aa607bd32a90d7693e91bd4a1be39baec2d889ba -source: flask -target: quart -pair_id: flask,quart -filepath: src/10-async-web/acityscape_api/views/city_api.py -program_element: function call -cardinality: 1-1 -properties: -- function name change -source_version_line: '20' -target_version_line: '20' diff --git a/data/codechange/87_5.yaml b/data/codechange/87_5.yaml deleted file mode 100644 index 374ca80..0000000 --- a/data/codechange/87_5.yaml +++ /dev/null @@ -1,13 +0,0 @@ -id: '87_5' -repo: talkpython/async-techniques-python-course -commit: aa607bd32a90d7693e91bd4a1be39baec2d889ba -source: flask -target: quart -pair_id: flask,quart -filepath: src/10-async-web/acityscape_api/views/city_api.py -program_element: function call -cardinality: 1-1 -properties: -- function name change -source_version_line: '21' -target_version_line: '21' diff --git a/data/codechange/88_1.yaml b/data/codechange/88_1.yaml deleted file mode 100644 index 8084c53..0000000 --- a/data/codechange/88_1.yaml +++ /dev/null @@ -1,13 +0,0 @@ -id: '88_1' -repo: talkpython/async-techniques-python-course -commit: aa607bd32a90d7693e91bd4a1be39baec2d889ba -source: flask -target: quart -pair_id: flask,quart -filepath: src/10-async-web/acityscape_api/views/home.py -program_element: import -cardinality: 1-1 -properties: -- module name change -source_version_line: '1' -target_version_line: '1' diff --git a/data/codechange/89_1.yaml b/data/codechange/89_1.yaml deleted file mode 100644 index 6821b79..0000000 --- a/data/codechange/89_1.yaml +++ /dev/null @@ -1,13 +0,0 @@ -id: '89_1' -repo: talkpython/async-techniques-python-course -commit: aa607bd32a90d7693e91bd4a1be39baec2d889ba -source: flask -target: quart -pair_id: flask,quart -filepath: src/10-async-web/acityscape_api/views/home.py -program_element: function call -cardinality: 1-1 -properties: -- function name change -source_version_line: '3' -target_version_line: '3' diff --git a/data/codechange/89_2.yaml b/data/codechange/89_2.yaml deleted file mode 100644 index 63c5d2d..0000000 --- a/data/codechange/89_2.yaml +++ /dev/null @@ -1,13 +0,0 @@ -id: '89_2' -repo: talkpython/async-techniques-python-course -commit: aa607bd32a90d7693e91bd4a1be39baec2d889ba -source: flask -target: quart -pair_id: flask,quart -filepath: src/10-async-web/acityscape_api/views/home.py -program_element: function call -cardinality: 1-1 -properties: -- function name change -source_version_line: '15' -target_version_line: '15' diff --git a/data/codechange/8_1.yaml b/data/codechange/8_1.yaml deleted file mode 100644 index f8cad3b..0000000 --- a/data/codechange/8_1.yaml +++ /dev/null @@ -1,13 +0,0 @@ -id: '8_1' -repo: thombashi/pingparsing -commit: 45fac3cb38661f80fc8bd129ce633cfd15423835 -source: dataproperty -target: typepy -pair_id: dataproperty,typepy -filepath: pingparsing/_pingparsing.py -program_element: function call -cardinality: 1-1 -properties: -- function name change -source_version_line: '134' -target_version_line: '135' diff --git a/data/codechange/8_2.yaml b/data/codechange/8_2.yaml deleted file mode 100644 index d22be66..0000000 --- a/data/codechange/8_2.yaml +++ /dev/null @@ -1,13 +0,0 @@ -id: '8_2' -repo: thombashi/pingparsing -commit: 45fac3cb38661f80fc8bd129ce633cfd15423835 -source: dataproperty -target: typepy -pair_id: dataproperty,typepy -filepath: pingparsing/_pingparsing.py -program_element: function call -cardinality: 1-1 -properties: -- function name change -source_version_line: '156' -target_version_line: '157' diff --git a/data/codechange/8_3.yaml b/data/codechange/8_3.yaml deleted file mode 100644 index c34adb6..0000000 --- a/data/codechange/8_3.yaml +++ /dev/null @@ -1,13 +0,0 @@ -id: '8_3' -repo: thombashi/pingparsing -commit: 45fac3cb38661f80fc8bd129ce633cfd15423835 -source: dataproperty -target: typepy -pair_id: dataproperty,typepy -filepath: pingparsing/_pingparsing.py -program_element: function call -cardinality: 1-1 -properties: -- function name change -source_version_line: '186' -target_version_line: '187' diff --git a/data/codechange/8_4.yaml b/data/codechange/8_4.yaml deleted file mode 100644 index 4a5284d..0000000 --- a/data/codechange/8_4.yaml +++ /dev/null @@ -1,13 +0,0 @@ -id: '8_4' -repo: thombashi/pingparsing -commit: 45fac3cb38661f80fc8bd129ce633cfd15423835 -source: dataproperty -target: typepy -pair_id: dataproperty,typepy -filepath: pingparsing/_pingparsing.py -program_element: function call -cardinality: 1-1 -properties: -- function name change -source_version_line: '233' -target_version_line: '234' diff --git a/data/codechange/90_1.yaml b/data/codechange/90_1.yaml deleted file mode 100644 index 32c1a8e..0000000 --- a/data/codechange/90_1.yaml +++ /dev/null @@ -1,14 +0,0 @@ -id: '90_1' -repo: learningorchestra/learningorchestra -commit: db7f1321e13b5386f94670537aa49943f0f0cec9 -source: flask -target: quart -pair_id: flask,quart -filepath: microservices/projection_image/server.py -program_element: import -cardinality: 1-1 -properties: -- module name change -- object name change -source_version_line: '1' -target_version_line: '1' diff --git a/data/codechange/91_1.yaml b/data/codechange/91_1.yaml deleted file mode 100644 index 3c6e4f2..0000000 --- a/data/codechange/91_1.yaml +++ /dev/null @@ -1,13 +0,0 @@ -id: '91_1' -repo: learningorchestra/learningorchestra -commit: db7f1321e13b5386f94670537aa49943f0f0cec9 -source: flask -target: quart -pair_id: flask,quart -filepath: microservices/projection_image/server.py -program_element: function call -cardinality: 1-1 -properties: -- function name change -source_version_line: '33' -target_version_line: '33' diff --git a/data/codechange/92_1.yaml b/data/codechange/92_1.yaml deleted file mode 100644 index e830e06..0000000 --- a/data/codechange/92_1.yaml +++ /dev/null @@ -1,13 +0,0 @@ -id: '92_1' -repo: virtuber/openvtuber -commit: 3abbc431e586218470f47eac10fa6d351c6fe907 -source: flask -target: uvicorn -pair_id: flask,uvicorn -filepath: openvtuber-server/src/openvtuber/web/web.py -program_element: import -cardinality: 1-1 -properties: -- full statement replacement -source_version_line: '3' -target_version_line: '3' diff --git a/data/codechange/93_1.yaml b/data/codechange/93_1.yaml deleted file mode 100644 index a37f299..0000000 --- a/data/codechange/93_1.yaml +++ /dev/null @@ -1,14 +0,0 @@ -id: '93_1' -repo: virtuber/openvtuber -commit: 3abbc431e586218470f47eac10fa6d351c6fe907 -source: flask -target: uvicorn -pair_id: flask,uvicorn -filepath: openvtuber-server/src/openvtuber/web/web.py -program_element: function call -cardinality: n-1 -properties: -- argument addition -- argument deletion -source_version_line: '6:17' -target_version_line: '16' diff --git a/data/codechange/94_1.yaml b/data/codechange/94_1.yaml deleted file mode 100644 index 9afc07c..0000000 --- a/data/codechange/94_1.yaml +++ /dev/null @@ -1,13 +0,0 @@ -id: '94_1' -repo: nlpia/nlpia-bot -commit: 054d5d207cba12d9b5c4765454be1c51424ea4f3 -source: fuzzywuzzy -target: rapidfuzz -pair_id: fuzzywuzzy,rapidfuzz -filepath: qary/skills/search_fuzzy_bots.py -program_element: import -cardinality: 1-1 -properties: -- module name change -source_version_line: '8' -target_version_line: '8' diff --git a/data/codechange/95_1.yaml b/data/codechange/95_1.yaml deleted file mode 100644 index 0c42843..0000000 --- a/data/codechange/95_1.yaml +++ /dev/null @@ -1,13 +0,0 @@ -id: '95_1' -repo: talkiq/gcloud-aio -commit: 45d94ddaf969648d5479ff480a92b16d537716f9 -source: gcloud-aio-core -target: aiohttp -pair_id: gcloud-aio-core,aiohttp -filepath: bigquery/gcloud/aio/bigquery/bigquery.py -program_element: import -cardinality: 1-1 -properties: -- full statement replacement -source_version_line: '6' -target_version_line: '5' diff --git a/data/codechange/96_1.yaml b/data/codechange/96_1.yaml deleted file mode 100644 index 99d9ffc..0000000 --- a/data/codechange/96_1.yaml +++ /dev/null @@ -1,14 +0,0 @@ -id: '96_1' -repo: talkiq/gcloud-aio -commit: 45d94ddaf969648d5479ff480a92b16d537716f9 -source: gcloud-aio-core -target: aiohttp -pair_id: gcloud-aio-core,aiohttp -filepath: bigquery/gcloud/aio/bigquery/bigquery.py -program_element: function call -cardinality: 1-n -properties: -- argument addition -- argument transformation -source_version_line: 96-100 -target_version_line: 91-94 diff --git a/data/codechange/97_1.yaml b/data/codechange/97_1.yaml deleted file mode 100644 index 901ae3c..0000000 --- a/data/codechange/97_1.yaml +++ /dev/null @@ -1,14 +0,0 @@ -id: '97_1' -repo: talkiq/gcloud-aio -commit: 963f34706918757ab7d3cbad70c363b9a48b9d40 -source: gcloud-aio-core -target: aiohttp -pair_id: gcloud-aio-core,aiohttp -filepath: datastore/gcloud/aio/datastore/datastore.py -program_element: function call -cardinality: 1-n -properties: -- argument addition -- argument transformation -source_version_line: '142' -target_version_line: 154-157 diff --git a/data/codechange/98_1.yaml b/data/codechange/98_1.yaml deleted file mode 100644 index c9f380f..0000000 --- a/data/codechange/98_1.yaml +++ /dev/null @@ -1,13 +0,0 @@ -id: '98_1' -repo: talkiq/gcloud-aio -commit: 963f34706918757ab7d3cbad70c363b9a48b9d40 -source: gcloud-aio-core -target: aiohttp -pair_id: gcloud-aio-core,aiohttp -filepath: datastore/gcloud/aio/datastore/datastore.py -program_element: import -cardinality: 1-1 -properties: -- full statement replacement -source_version_line: '5' -target_version_line: '4' diff --git a/data/codechange/99_1.yaml b/data/codechange/99_1.yaml deleted file mode 100644 index 1fafd8a..0000000 --- a/data/codechange/99_1.yaml +++ /dev/null @@ -1,13 +0,0 @@ -id: '99_1' -repo: talkiq/gcloud-aio -commit: d15540f94ecdf468b1baf7fd9c025e4f862b3b69 -source: gcloud-aio-core -target: aiohttp -pair_id: gcloud-aio-core,aiohttp -filepath: taskqueue/gcloud/aio/taskqueue/taskqueue.py -program_element: import -cardinality: n-1 -properties: -- full statement replacement -source_version_line: 12-17 -target_version_line: '6' diff --git a/data/codechange/9_1.yaml b/data/codechange/9_1.yaml deleted file mode 100644 index 35e1583..0000000 --- a/data/codechange/9_1.yaml +++ /dev/null @@ -1,13 +0,0 @@ -id: '9_1' -repo: thombashi/pingparsing -commit: 45fac3cb38661f80fc8bd129ce633cfd15423835 -source: dataproperty -target: typepy -pair_id: dataproperty,typepy -filepath: pingparsing/_pingtransmitter.py -program_element: import -cardinality: 1-n -properties: -- full statement replacement -source_version_line: '11' -target_version_line: 11-12 diff --git a/data/migration/002f5bd_flask,quart.yaml b/data/migration/002f5bd_flask,quart.yaml index 787082c..193e163 100644 --- a/data/migration/002f5bd_flask,quart.yaml +++ b/data/migration/002f5bd_flask,quart.yaml @@ -6,3 +6,12 @@ commit: 002f5bde5d5d5f2eaaf6999e41e4619817c10400 pair_id: flask,quart commit_message: 'feat: Faster and more reliable thanks to switching to an async based server with Quart and more.' +commit_url: https://github.com/elblogbruno/notionai-mymind/commit/002f5bde +code_changes: +- filepath: Python Server/app/server.py + lines: + - 149:110 + - 154:115 + - '20:14' + - 4-6:3 + - 80:55-57 diff --git a/data/migration/0171fb9_pil,pillow.yaml b/data/migration/0171fb9_pil,pillow.yaml index a403765..90de713 100644 --- a/data/migration/0171fb9_pil,pillow.yaml +++ b/data/migration/0171fb9_pil,pillow.yaml @@ -9,3 +9,8 @@ commit_message: 'Reorganise requirements - Optional / difficult packages at the end. - Use Pillow instead of PIL - change Img to work with this.' +commit_url: https://github.com/shoebot/shoebot/commit/0171fb9f +code_changes: +- filepath: shoebot/data/img.py + lines: + - '9:9' diff --git a/data/migration/02b064b_pycryptodome,pycryptodomex.yaml b/data/migration/02b064b_pycryptodome,pycryptodomex.yaml index fb57068..cc86cd7 100644 --- a/data/migration/02b064b_pycryptodome,pycryptodomex.yaml +++ b/data/migration/02b064b_pycryptodome,pycryptodomex.yaml @@ -6,3 +6,8 @@ commit: 02b064b4acc0ae26d6c61246ab3f1f45b750091a pair_id: pycryptodome,pycryptodomex commit_message: Minor tweaks, switched to pycryptodomex instead of pycryptodome to avoid collision with PyCrypto +commit_url: https://github.com/snemes/malware-analysis/commit/02b064b4 +code_changes: +- filepath: trickbot/trickbot_artifact_decrypter.py + lines: + - 11-14:11-14 diff --git a/data/migration/03a9621_s3cmd,awscli.yaml b/data/migration/03a9621_s3cmd,awscli.yaml index 7ea39d4..d0d254f 100644 --- a/data/migration/03a9621_s3cmd,awscli.yaml +++ b/data/migration/03a9621_s3cmd,awscli.yaml @@ -8,3 +8,5 @@ commit_message: 'Update to awscli so Python 3 works Closes #23' +commit_url: https://github.com/drivendata/cookiecutter-data-science/commit/03a96219 +code_changes: [] diff --git a/data/migration/0411d6a_raven,sentry-sdk.yaml b/data/migration/0411d6a_raven,sentry-sdk.yaml index 0de79b7..8b1eeae 100644 --- a/data/migration/0411d6a_raven,sentry-sdk.yaml +++ b/data/migration/0411d6a_raven,sentry-sdk.yaml @@ -16,3 +16,5 @@ commit_message: 'upgrade to new sentry sdk: TODO: add Vue integration (@cpritcha want to take the lead on this?) https://docs.sentry.io/platforms/javascript/vue/' +commit_url: https://github.com/comses/comses.net/commit/0411d6a1 +code_changes: [] diff --git a/data/migration/047263b_flask-restful,flask-restplus.yaml b/data/migration/047263b_flask-restful,flask-restplus.yaml index 56706f5..5973287 100644 --- a/data/migration/047263b_flask-restful,flask-restplus.yaml +++ b/data/migration/047263b_flask-restful,flask-restplus.yaml @@ -5,3 +5,8 @@ repo: kizniche/mycodo commit: 047263beb9e4301c30eef0f44d8d93c722b31f20 pair_id: flask-restful,flask-restplus commit_message: Move from Flask_Restful to Flask_RestPlus (#705) +commit_url: https://github.com/kizniche/mycodo/commit/047263be +code_changes: +- filepath: mycodo/mycodo_flask/api.py + lines: + - '5:7' diff --git a/data/migration/04a5913_pil,pillow.yaml b/data/migration/04a5913_pil,pillow.yaml index 35c5b55..f451ac8 100644 --- a/data/migration/04a5913_pil,pillow.yaml +++ b/data/migration/04a5913_pil,pillow.yaml @@ -10,3 +10,5 @@ commit_message: 'fix PIL build issues PIL doesn''t build correctly on recent versions of Debian; it can''t find the ZLIB include files. Pillow is a forked version which does build correctly.' +commit_url: https://github.com/pculture/mirocommunity/commit/04a5913a +code_changes: [] diff --git a/data/migration/054d5d2_fuzzywuzzy,rapidfuzz.yaml b/data/migration/054d5d2_fuzzywuzzy,rapidfuzz.yaml index a9ddd95..28ef923 100644 --- a/data/migration/054d5d2_fuzzywuzzy,rapidfuzz.yaml +++ b/data/migration/054d5d2_fuzzywuzzy,rapidfuzz.yaml @@ -11,3 +11,8 @@ commit_message: 'use rapidfuzz instead of fuzzywuzzy Former-commit-id: e7d4fd555779cd407fa5e09e1944b2ba56c5db12 [formerly 53c3bce9c5f9bcec87475759fe040289d45ba1d6] Former-commit-id: 1503611c7150cb42575d5b94b507ba7748d21697' +commit_url: https://github.com/nlpia/nlpia-bot/commit/054d5d20 +code_changes: +- filepath: qary/skills/search_fuzzy_bots.py + lines: + - '8:8' diff --git a/data/migration/08e7ffa_gunicorn,waitress.yaml b/data/migration/08e7ffa_gunicorn,waitress.yaml index c597e26..7959236 100644 --- a/data/migration/08e7ffa_gunicorn,waitress.yaml +++ b/data/migration/08e7ffa_gunicorn,waitress.yaml @@ -5,3 +5,5 @@ repo: pbacterio/cookiecutter-django-paas commit: 08e7ffa9b64b25a2b539b5b9ccf757c9b11a370c pair_id: gunicorn,waitress commit_message: Replaces gunicorn for waitress. http://blog.etianen.com/blog/2014/01/19/gunicorn-heroku-django/ +commit_url: https://github.com/pbacterio/cookiecutter-django-paas/commit/08e7ffa9 +code_changes: [] diff --git a/data/migration/0911992_pycrypto,pycryptodome.yaml b/data/migration/0911992_pycrypto,pycryptodome.yaml index 0cd4b36..e4653be 100644 --- a/data/migration/0911992_pycrypto,pycryptodome.yaml +++ b/data/migration/0911992_pycrypto,pycryptodome.yaml @@ -6,3 +6,5 @@ commit: 0911992301d30bb315df4e9bab3b83254c3036fa pair_id: pycrypto,pycryptodome commit_message: 'ST-1307: Switch from pycrypto to pycryptodome and update to a modern version' +commit_url: https://github.com/confluentinc/ducktape/commit/09119923 +code_changes: [] diff --git a/data/migration/0a65bcc_raven,sentry-sdk.yaml b/data/migration/0a65bcc_raven,sentry-sdk.yaml index 2c32fe6..f01ec1f 100644 --- a/data/migration/0a65bcc_raven,sentry-sdk.yaml +++ b/data/migration/0a65bcc_raven,sentry-sdk.yaml @@ -5,3 +5,8 @@ repo: habitissimo/myaas commit: 0a65bcc2ce97a2e3ad9b028b1cf9bcc58499f5d9 pair_id: raven,sentry-sdk commit_message: update sentry client +commit_url: https://github.com/habitissimo/myaas/commit/0a65bcc2 +code_changes: +- filepath: src/runserver.py + lines: + - 7-8:6-12 diff --git a/data/migration/0a70f2b_flask,quart.yaml b/data/migration/0a70f2b_flask,quart.yaml index 591746c..4747dca 100644 --- a/data/migration/0a70f2b_flask,quart.yaml +++ b/data/migration/0a70f2b_flask,quart.yaml @@ -5,3 +5,16 @@ repo: pgjones/faster_than_flask_article commit: 0a70f2bddae90da13da5bce2b77ea56355ecc5d1 pair_id: flask,quart commit_message: Quart version +commit_url: https://github.com/pgjones/faster_than_flask_article/commit/0a70f2bd +code_changes: +- filepath: app/films.py + lines: + - '1:1' +- filepath: app/run.py + lines: + - '4:5' + - '35:12' +- filepath: app/reviews.py + lines: + - '1:1' + - '8:8' diff --git a/data/migration/0d78d19_lockfile,fasteners.yaml b/data/migration/0d78d19_lockfile,fasteners.yaml index 3fd589d..e986f41 100644 --- a/data/migration/0d78d19_lockfile,fasteners.yaml +++ b/data/migration/0d78d19_lockfile,fasteners.yaml @@ -23,3 +23,5 @@ commit_message: 'Add OwnerPrintingInterProcessFileLock and replace OwnerPrinting Reviewed at https://rbcommons.com/s/twitter/r/3633/' +commit_url: https://github.com/pantsbuild/pants/commit/0d78d19f +code_changes: [] diff --git a/data/migration/0df86b5_logbook,loguru.yaml b/data/migration/0df86b5_logbook,loguru.yaml index c39a5ab..0d55b0f 100644 --- a/data/migration/0df86b5_logbook,loguru.yaml +++ b/data/migration/0df86b5_logbook,loguru.yaml @@ -5,3 +5,5 @@ repo: thombashi/pingparsing commit: 0df86b5934719de7ab7eab71f1a5006996bc5337 pair_id: logbook,loguru commit_message: Replace the logging library +commit_url: https://github.com/thombashi/pingparsing/commit/0df86b59 +code_changes: [] diff --git a/data/migration/12e3e80_ruamel.yaml,pyyaml.yaml b/data/migration/12e3e80_ruamel.yaml,pyyaml.yaml index 5c2cb5c..48e9582 100644 --- a/data/migration/12e3e80_ruamel.yaml,pyyaml.yaml +++ b/data/migration/12e3e80_ruamel.yaml,pyyaml.yaml @@ -5,3 +5,14 @@ repo: cloud-custodian/cloud-custodian commit: 12e3e8084ddb2e7f5ccbc5ea3c3bd3e4c7e9c207 pair_id: ruamel.yaml,pyyaml commit_message: tools/c7n_mailer - switch ruamel dependency to pyyaml (#5521) +commit_url: https://github.com/cloud-custodian/cloud-custodian/commit/12e3e808 +code_changes: +- filepath: tools/c7n_mailer/c7n_mailer/replay.py + lines: + - '25:18' +- filepath: tools/c7n_mailer/c7n_mailer/utils.py + lines: + - '28:22' +- filepath: tools/c7n_mailer/c7n_mailer/cli.py + lines: + - '15:10' diff --git a/data/migration/14388c3_pycrypto,pycryptodome.yaml b/data/migration/14388c3_pycrypto,pycryptodome.yaml index 4742735..bd020ad 100644 --- a/data/migration/14388c3_pycrypto,pycryptodome.yaml +++ b/data/migration/14388c3_pycrypto,pycryptodome.yaml @@ -5,3 +5,12 @@ repo: camptocamp/c2cgeoportal commit: 14388c3d85ab164d7b36b1331534913a1c9d6c9a pair_id: pycrypto,pycryptodome commit_message: Use pycryptodome instance of the unmaintained pycrypto +commit_url: https://github.com/camptocamp/c2cgeoportal/commit/14388c3d +code_changes: +- filepath: geoportal/c2cgeoportal_geoportal/scripts/urllogin.py + lines: + - '48:48' + - 53:53-54 +- filepath: geoportal/c2cgeoportal_geoportal/__init__.py + lines: + - 322-323:326-327 diff --git a/data/migration/1476b62_python-social-auth,social-auth-app-django.yaml b/data/migration/1476b62_python-social-auth,social-auth-app-django.yaml index cd13fb5..92a52f7 100644 --- a/data/migration/1476b62_python-social-auth,social-auth-app-django.yaml +++ b/data/migration/1476b62_python-social-auth,social-auth-app-django.yaml @@ -8,3 +8,5 @@ commit_message: 'Migrate to from python-social-auth to social-auth-app-django Closes #110' +commit_url: https://github.com/onespacemedia/project-template/commit/1476b623 +code_changes: [] diff --git a/data/migration/19dde42_pycryptodome,pycryptodomex.yaml b/data/migration/19dde42_pycryptodome,pycryptodomex.yaml index 0c1e6c6..87339bc 100644 --- a/data/migration/19dde42_pycryptodome,pycryptodomex.yaml +++ b/data/migration/19dde42_pycryptodome,pycryptodomex.yaml @@ -8,3 +8,17 @@ commit_message: 'Fix: switch from pycryptodome to pycryptodomex (#564) Fix: switch from pycryptodome to pycryptodomex' +commit_url: https://github.com/azure/aztk/commit/19dde429 +code_changes: +- filepath: aztk/client.py + lines: + - '15:15' +- filepath: aztk/node_scripts/install/create_user.py + lines: + - 4-5:4-5 +- filepath: aztk/spark/models/models.py + lines: + - '2:2' +- filepath: aztk/utils/secure_utils.py + lines: + - 1-3:1-3 diff --git a/data/migration/1c574c1_requests,aiohttp.yaml b/data/migration/1c574c1_requests,aiohttp.yaml index 158ebca..6ae17c9 100644 --- a/data/migration/1c574c1_requests,aiohttp.yaml +++ b/data/migration/1c574c1_requests,aiohttp.yaml @@ -5,3 +5,5 @@ repo: lordofpolls/rule34-api-wrapper commit: 1c574c14c88c0cad7705c9b81b9b4b3f75ea7485 pair_id: requests,aiohttp commit_message: Removed unused requirements, and added new ones +commit_url: https://github.com/lordofpolls/rule34-api-wrapper/commit/1c574c14 +code_changes: [] diff --git a/data/migration/1d8923a_requests,aiohttp.yaml b/data/migration/1d8923a_requests,aiohttp.yaml index f2b3fac..11d2629 100644 --- a/data/migration/1d8923a_requests,aiohttp.yaml +++ b/data/migration/1d8923a_requests,aiohttp.yaml @@ -5,3 +5,10 @@ repo: raptor123471/dingolingo commit: 1d8923abae93915ad877774e0fdc812d6c53a70b pair_id: requests,aiohttp commit_message: Replace requests with aiohttp +commit_url: https://github.com/raptor123471/dingolingo/commit/1d8923ab +code_changes: +- filepath: musicbot/linkutils.py + lines: + - '1:1' + - 35-36:36-38 + - 98:100-102 diff --git a/data/migration/22cc3f0_flask,quart.yaml b/data/migration/22cc3f0_flask,quart.yaml index 513a0bf..04302d8 100644 --- a/data/migration/22cc3f0_flask,quart.yaml +++ b/data/migration/22cc3f0_flask,quart.yaml @@ -5,3 +5,12 @@ repo: intel/stacks-usecase commit: 22cc3f007a3267ca09a3f53b84fdbfff1f045e88 pair_id: flask,quart commit_message: switching flask to a high perf asyc server +commit_url: https://github.com/intel/stacks-usecase/commit/22cc3f00 +code_changes: +- filepath: github-issue-classification/python/rest.py + lines: + - 19:19-21 + - '23:27' + - 42-44:49-51 + - '46:53' + - '51:58' diff --git a/data/migration/24a848d_flask,fastapi.yaml b/data/migration/24a848d_flask,fastapi.yaml index 2935989..645a9e7 100644 --- a/data/migration/24a848d_flask,fastapi.yaml +++ b/data/migration/24a848d_flask,fastapi.yaml @@ -5,3 +5,8 @@ repo: bretttolbert/verbecc-svc commit: 24a848d285ae2c6f3e5b06d1a8ee718cb3f17133 pair_id: flask,fastapi commit_message: switched from Flask to FastAPI/uvicorn +commit_url: https://github.com/bretttolbert/verbecc-svc/commit/24a848d2 +code_changes: +- filepath: python/verb_conjugate_fr/__init__.py + lines: + - 2-3:2 diff --git a/data/migration/24a848d_flask,uvicorn.yaml b/data/migration/24a848d_flask,uvicorn.yaml index 514234f..2a9087f 100644 --- a/data/migration/24a848d_flask,uvicorn.yaml +++ b/data/migration/24a848d_flask,uvicorn.yaml @@ -5,3 +5,5 @@ repo: bretttolbert/verbecc-svc commit: 24a848d285ae2c6f3e5b06d1a8ee718cb3f17133 pair_id: flask,uvicorn commit_message: switched from Flask to FastAPI/uvicorn +commit_url: https://github.com/bretttolbert/verbecc-svc/commit/24a848d2 +code_changes: [] diff --git a/data/migration/26c8e74_dataproperty,typepy.yaml b/data/migration/26c8e74_dataproperty,typepy.yaml index 96eba57..bd44c97 100644 --- a/data/migration/26c8e74_dataproperty,typepy.yaml +++ b/data/migration/26c8e74_dataproperty,typepy.yaml @@ -5,3 +5,12 @@ repo: thombashi/sqlitebiter commit: 26c8e7467fb764d6abca03d6830f7679cbfc3ea1 pair_id: dataproperty,typepy commit_message: 'Replace a module: DataProperty to typepy' +commit_url: https://github.com/thombashi/sqlitebiter/commit/26c8e746 +code_changes: +- filepath: sqlitebiter/sqlitebiter.py + lines: + - '13:17' + - '46:46' + - 136:136 + - 227:227 + - 239:239 diff --git a/data/migration/27e2a46_pillow,torchvision.yaml b/data/migration/27e2a46_pillow,torchvision.yaml index e9dd838..7ded605 100644 --- a/data/migration/27e2a46_pillow,torchvision.yaml +++ b/data/migration/27e2a46_pillow,torchvision.yaml @@ -5,3 +5,5 @@ repo: deep-spin/opennmt-ape commit: 27e2a46c1d1505324032b1d94fc6ce24d5b67e97 pair_id: pillow,torchvision commit_message: cleaning up imagenet example and making it depend on torchvision +commit_url: https://github.com/deep-spin/opennmt-ape/commit/27e2a46c +code_changes: [] diff --git a/data/migration/2960ec6_argparse,configargparse.yaml b/data/migration/2960ec6_argparse,configargparse.yaml index c8dc13e..d90a4d2 100644 --- a/data/migration/2960ec6_argparse,configargparse.yaml +++ b/data/migration/2960ec6_argparse,configargparse.yaml @@ -9,3 +9,16 @@ commit_message: "Fix up this configuration mess (#2021)\n\n* Kill credentials.js \ to ConfigArgParser to make the task of overriding\n config.ini options via command\ \ line parameters easier\n* This provides a much easier long-term method of maintaining\n\ \ config/argument options" +commit_url: https://github.com/rocketmap/rocketmap/commit/2960ec68 +code_changes: +- filepath: pogom/utils.py + lines: + - '6:6' + - '70:33' + - '73:35' + - '74:36' + - '75:37' + - '77:29' + - '86:47' + - '87:48' + - '88:49' diff --git a/data/migration/2adc6a9_xlrd,openpyxl.yaml b/data/migration/2adc6a9_xlrd,openpyxl.yaml index a61e276..3c892fd 100644 --- a/data/migration/2adc6a9_xlrd,openpyxl.yaml +++ b/data/migration/2adc6a9_xlrd,openpyxl.yaml @@ -5,3 +5,5 @@ repo: dbvis-ukon/coronavis commit: 2adc6a9320c3dc5c801b75d1e32ca07bc13c2891 pair_id: xlrd,openpyxl commit_message: '[refactor] migrate from xlrd to openpyxl and prepare for python 3.9+' +commit_url: https://github.com/dbvis-ukon/coronavis/commit/2adc6a93 +code_changes: [] diff --git a/data/migration/2c40713_pytz,pendulum.yaml b/data/migration/2c40713_pytz,pendulum.yaml index 4f2716c..a94a4ae 100644 --- a/data/migration/2c40713_pytz,pendulum.yaml +++ b/data/migration/2c40713_pytz,pendulum.yaml @@ -5,3 +5,8 @@ repo: oddluck/limnoria-plugins commit: 2c40713d3a2778d6f729d896372c3bcd74302104 pair_id: pytz,pendulum commit_message: 'WorldTime: replace pytz with pendulum' +commit_url: https://github.com/oddluck/limnoria-plugins/commit/2c40713d +code_changes: +- filepath: WorldTime/plugin.py + lines: + - '12:13' diff --git a/data/migration/2d9cf64_slackclient,slack-sdk.yaml b/data/migration/2d9cf64_slackclient,slack-sdk.yaml index 4e16c9b..90ba4ea 100644 --- a/data/migration/2d9cf64_slackclient,slack-sdk.yaml +++ b/data/migration/2d9cf64_slackclient,slack-sdk.yaml @@ -5,3 +5,11 @@ repo: zulip/python-zulip-api commit: 2d9cf64db860ab5e5eabb8151254b0f3dab609bd pair_id: slackclient,slack-sdk commit_message: 'slack-bridge: Use slack_sdk instead of the deprecated slackclient.' +commit_url: https://github.com/zulip/python-zulip-api/commit/2d9cf64d +code_changes: +- filepath: zulip/integrations/bridge_with_slack/run-slack-bridge + lines: + - 10:10-11 + - '47:48' + - '50:51' + - 84:85 diff --git a/data/migration/2fc0f26_pil,pillow.yaml b/data/migration/2fc0f26_pil,pillow.yaml index 9802feb..74386ae 100644 --- a/data/migration/2fc0f26_pil,pillow.yaml +++ b/data/migration/2fc0f26_pil,pillow.yaml @@ -5,3 +5,5 @@ repo: django-wiki/django-wiki commit: 2fc0f26aa3b7f86b79c477ed89fd0aff3a476567 pair_id: pil,pillow commit_message: Switch to Pillow and the dev version of sorl v12 +commit_url: https://github.com/django-wiki/django-wiki/commit/2fc0f26a +code_changes: [] diff --git a/data/migration/311c7ce_logbook,loguru.yaml b/data/migration/311c7ce_logbook,loguru.yaml index e6cc466..ce75a45 100644 --- a/data/migration/311c7ce_logbook,loguru.yaml +++ b/data/migration/311c7ce_logbook,loguru.yaml @@ -5,3 +5,9 @@ repo: thombashi/sqlitebiter commit: 311c7ce50a89316d5cab9bb2daef05315175faf2 pair_id: logbook,loguru commit_message: Replace the logging library +commit_url: https://github.com/thombashi/sqlitebiter/commit/311c7ce5 +code_changes: +- filepath: sqlitebiter/sqlitebiter.py + lines: + - 15-16:20 + - 64,68:64 diff --git a/data/migration/31212eb_pil,pillow.yaml b/data/migration/31212eb_pil,pillow.yaml index 66cbde9..4d71207 100644 --- a/data/migration/31212eb_pil,pillow.yaml +++ b/data/migration/31212eb_pil,pillow.yaml @@ -5,3 +5,5 @@ repo: wikibook/flask commit: 31212eb04c86443fb12a29850ae9d17ecbfada21 pair_id: pil,pillow commit_message: Modify library dependency PIL to pillow. +commit_url: https://github.com/wikibook/flask/commit/31212eb0 +code_changes: [] diff --git a/data/migration/33c7a3f_pytz,pendulum.yaml b/data/migration/33c7a3f_pytz,pendulum.yaml index 96baf21..8ebbece 100644 --- a/data/migration/33c7a3f_pytz,pendulum.yaml +++ b/data/migration/33c7a3f_pytz,pendulum.yaml @@ -5,3 +5,11 @@ repo: oddluck/limnoria-plugins commit: 33c7a3fc0878d87ee803db91c17523a9e61af3ed pair_id: pytz,pendulum commit_message: 'NHL/NBA: replace pytz dependency' +commit_url: https://github.com/oddluck/limnoria-plugins/commit/33c7a3fc +code_changes: +- filepath: NHL/plugin.py + lines: + - '35:26' +- filepath: NBA/plugin.py + lines: + - '50:40' diff --git a/data/migration/356ce56_raven,sentry-sdk.yaml b/data/migration/356ce56_raven,sentry-sdk.yaml index 396bd6a..fffdc1f 100644 --- a/data/migration/356ce56_raven,sentry-sdk.yaml +++ b/data/migration/356ce56_raven,sentry-sdk.yaml @@ -5,3 +5,5 @@ repo: fnp/wolnelektury commit: 356ce56229b7439ae6f35f8f80e480bdfa8bff56 pair_id: raven,sentry-sdk commit_message: Migrate from raven to sentry-sdk. +commit_url: https://github.com/fnp/wolnelektury/commit/356ce562 +code_changes: [] diff --git a/data/migration/35ae8f3_mysql-python,mysqlclient.yaml b/data/migration/35ae8f3_mysql-python,mysqlclient.yaml index 0aead71..9d6cce6 100644 --- a/data/migration/35ae8f3_mysql-python,mysqlclient.yaml +++ b/data/migration/35ae8f3_mysql-python,mysqlclient.yaml @@ -6,3 +6,5 @@ commit: 35ae8f3a8f27de80f9650df805c8abfde2b21800 pair_id: mysql-python,mysqlclient commit_message: "fix: mysql-python\u304B\u3089mysqlclient\u3078\u79FB\u884C&\u7D30\ \u304B\u306A\u4FEE\u6B63" +commit_url: https://github.com/vippool/clerk/commit/35ae8f3a +code_changes: [] diff --git a/data/migration/35d8144_urllib,urllib3.yaml b/data/migration/35d8144_urllib,urllib3.yaml index 62b144b..1962603 100644 --- a/data/migration/35d8144_urllib,urllib3.yaml +++ b/data/migration/35d8144_urllib,urllib3.yaml @@ -5,3 +5,5 @@ repo: hail-is/hail commit: 35d8144a61a788095f6a63fab5f28bcd3cb17a98 pair_id: urllib,urllib3 commit_message: fix-maste6 (#5954) +commit_url: https://github.com/hail-is/hail/commit/35d8144a +code_changes: [] diff --git a/data/migration/3abbc43_flask,fastapi.yaml b/data/migration/3abbc43_flask,fastapi.yaml index 0ab9f3d..ed2b01f 100644 --- a/data/migration/3abbc43_flask,fastapi.yaml +++ b/data/migration/3abbc43_flask,fastapi.yaml @@ -5,3 +5,9 @@ repo: virtuber/openvtuber commit: 3abbc431e586218470f47eac10fa6d351c6fe907 pair_id: flask,fastapi commit_message: flask to fastapi and uvicorn +commit_url: https://github.com/virtuber/openvtuber/commit/3abbc431 +code_changes: +- filepath: openvtuber-server/src/openvtuber/web/web.py + lines: + - 3:4-5 + - '6:8' diff --git a/data/migration/3abbc43_flask,uvicorn.yaml b/data/migration/3abbc43_flask,uvicorn.yaml index 71be96b..d7bc655 100644 --- a/data/migration/3abbc43_flask,uvicorn.yaml +++ b/data/migration/3abbc43_flask,uvicorn.yaml @@ -5,3 +5,9 @@ repo: virtuber/openvtuber commit: 3abbc431e586218470f47eac10fa6d351c6fe907 pair_id: flask,uvicorn commit_message: flask to fastapi and uvicorn +commit_url: https://github.com/virtuber/openvtuber/commit/3abbc431 +code_changes: +- filepath: openvtuber-server/src/openvtuber/web/web.py + lines: + - '3:3' + - '17:16' diff --git a/data/migration/3f786f4_uwsgi,gunicorn.yaml b/data/migration/3f786f4_uwsgi,gunicorn.yaml index 11b5714..67586c1 100644 --- a/data/migration/3f786f4_uwsgi,gunicorn.yaml +++ b/data/migration/3f786f4_uwsgi,gunicorn.yaml @@ -5,3 +5,5 @@ repo: materialsproject/mpcontribs commit: 3f786f4d1527e53a5fa2865f71e6bbad8add41a9 pair_id: uwsgi,gunicorn commit_message: switch to gunicorn[gevent] +commit_url: https://github.com/materialsproject/mpcontribs/commit/3f786f4d +code_changes: [] diff --git a/data/migration/432afa4_jwt,pyjwt.yaml b/data/migration/432afa4_jwt,pyjwt.yaml index 6a343a8..e75c590 100644 --- a/data/migration/432afa4_jwt,pyjwt.yaml +++ b/data/migration/432afa4_jwt,pyjwt.yaml @@ -5,3 +5,5 @@ repo: dcos/dcos commit: 432afa46d1e1fc5043f9c7a111858cbdde61f239 pair_id: jwt,pyjwt commit_message: 'test-e2e: use the correct jwt library' +commit_url: https://github.com/dcos/dcos/commit/432afa46 +code_changes: [] diff --git a/data/migration/4377d67_django-rest-swagger,drf-yasg.yaml b/data/migration/4377d67_django-rest-swagger,drf-yasg.yaml index 5c949c8..98984c9 100644 --- a/data/migration/4377d67_django-rest-swagger,drf-yasg.yaml +++ b/data/migration/4377d67_django-rest-swagger,drf-yasg.yaml @@ -8,3 +8,8 @@ commit_message: 'Replace the deprecated rest_framework_swagger with drf_yasg using redoc' +commit_url: https://github.com/opengisch/qfieldcloud/commit/4377d67a +code_changes: +- filepath: web-app/qfieldcloud/urls.py + lines: + - 18:20-21 diff --git a/data/migration/43e8ec2_celery,rq.yaml b/data/migration/43e8ec2_celery,rq.yaml index 2cabe63..39566f2 100644 --- a/data/migration/43e8ec2_celery,rq.yaml +++ b/data/migration/43e8ec2_celery,rq.yaml @@ -5,3 +5,5 @@ repo: lonelam/onlinejudgeshu commit: 43e8ec2d90a3f14b3da385bf679c3287f837ab71 pair_id: celery,rq commit_message: "\u5220\u9664 celery \u4F9D\u8D56" +commit_url: https://github.com/lonelam/onlinejudgeshu/commit/43e8ec2d +code_changes: [] diff --git a/data/migration/45d94dd_gcloud-aio-core,aiohttp.yaml b/data/migration/45d94dd_gcloud-aio-core,aiohttp.yaml index e01fd9b..94e385a 100644 --- a/data/migration/45d94dd_gcloud-aio-core,aiohttp.yaml +++ b/data/migration/45d94dd_gcloud-aio-core,aiohttp.yaml @@ -5,3 +5,9 @@ repo: talkiq/gcloud-aio commit: 45d94ddaf969648d5479ff480a92b16d537716f9 pair_id: gcloud-aio-core,aiohttp commit_message: 'refactor(bigquery): remove core.http dependency' +commit_url: https://github.com/talkiq/gcloud-aio/commit/45d94dda +code_changes: +- filepath: bigquery/gcloud/aio/bigquery/bigquery.py + lines: + - '6:5' + - 96-100:91-94 diff --git a/data/migration/45fac3c_dataproperty,typepy.yaml b/data/migration/45fac3c_dataproperty,typepy.yaml index 4a51837..c64629a 100644 --- a/data/migration/45fac3c_dataproperty,typepy.yaml +++ b/data/migration/45fac3c_dataproperty,typepy.yaml @@ -5,3 +5,22 @@ repo: thombashi/pingparsing commit: 45fac3cb38661f80fc8bd129ce633cfd15423835 pair_id: dataproperty,typepy commit_message: 'Replace a module: DataProperty to typepy' +commit_url: https://github.com/thombashi/pingparsing/commit/45fac3cb +code_changes: +- filepath: pingparsing/_pingtransmitter.py + lines: + - 86:87 + - 154:159 + - 100:101 + - 110:112 + - 122:125 + - 144:148 + - 154:159 + - 11:11-12 +- filepath: pingparsing/_pingparsing.py + lines: + - '10:11' + - 134:135 + - 156:157 + - 186:187 + - 233:234 diff --git a/data/migration/472f336_xlsxwriter,openpyxl.yaml b/data/migration/472f336_xlsxwriter,openpyxl.yaml index 8dfb710..99025f1 100644 --- a/data/migration/472f336_xlsxwriter,openpyxl.yaml +++ b/data/migration/472f336_xlsxwriter,openpyxl.yaml @@ -5,3 +5,9 @@ repo: bcgov/gwells commit: 472f336f5db32ead27b6f4e171c6b8f782da8a02 pair_id: xlsxwriter,openpyxl commit_message: Fixed excel export (no more warnings), removed redundant code +commit_url: https://github.com/bcgov/gwells/commit/472f336f +code_changes: +- filepath: app/backend/wells/management/commands/export.py + lines: + - '11:12' + - '53:53' diff --git a/data/migration/49cf693_pycrypto,pycryptodome.yaml b/data/migration/49cf693_pycrypto,pycryptodome.yaml index 03d4b90..d36fc98 100644 --- a/data/migration/49cf693_pycrypto,pycryptodome.yaml +++ b/data/migration/49cf693_pycrypto,pycryptodome.yaml @@ -7,3 +7,5 @@ pair_id: pycrypto,pycryptodome commit_message: 'Add option for password authentication with island Replace PyCrypto with Cryptodome' +commit_url: https://github.com/guardicore/monkey/commit/49cf6931 +code_changes: [] diff --git a/data/migration/4ad53b5_py-bcrypt,bcrypt.yaml b/data/migration/4ad53b5_py-bcrypt,bcrypt.yaml index ab7e2da..e84187a 100644 --- a/data/migration/4ad53b5_py-bcrypt,bcrypt.yaml +++ b/data/migration/4ad53b5_py-bcrypt,bcrypt.yaml @@ -37,3 +37,5 @@ commit_message: 'Change out ''py-bcrypt'' for ''bcrypt''. (#80) * Unwrap previously wrapped lines' +commit_url: https://github.com/weasyl/weasyl/commit/4ad53b59 +code_changes: [] diff --git a/data/migration/4c3400a_pil,pillow.yaml b/data/migration/4c3400a_pil,pillow.yaml index 52839ae..6093701 100644 --- a/data/migration/4c3400a_pil,pillow.yaml +++ b/data/migration/4c3400a_pil,pillow.yaml @@ -7,3 +7,5 @@ pair_id: pil,pillow commit_message: Fixed formatting bug in ubuntu sysdef, now dad installs requirements only on initial setup, changed requirements.txt template to use pillow instead of PIL since PIL's packaging is messy and breaks under virtualenv +commit_url: https://github.com/h3/python-dad/commit/4c3400a0 +code_changes: [] diff --git a/data/migration/4fc081b_keras,torch.yaml b/data/migration/4fc081b_keras,torch.yaml index 0412702..45b64bc 100644 --- a/data/migration/4fc081b_keras,torch.yaml +++ b/data/migration/4fc081b_keras,torch.yaml @@ -6,3 +6,5 @@ commit: 4fc081b698262b6a52e65b348c13c1a41e3e0eca pair_id: keras,torch commit_message: prepare for training algo1 in trexrush and also add a new algo for trexrush +commit_url: https://github.com/charlespikachu/aigames/commit/4fc081b6 +code_changes: [] diff --git a/data/migration/50b7bae_mysqlclient,psycopg2.yaml b/data/migration/50b7bae_mysqlclient,psycopg2.yaml index 74a338b..2593943 100644 --- a/data/migration/50b7bae_mysqlclient,psycopg2.yaml +++ b/data/migration/50b7bae_mysqlclient,psycopg2.yaml @@ -10,3 +10,5 @@ commit_message: 'BREAKING feat(dbapi): switch to postgres, fixes #430 Migration instructions: https://github.com/desec-io/desec-stack/pull/432#issuecomment-680785746' +commit_url: https://github.com/desec-io/desec-stack/commit/50b7baed +code_changes: [] diff --git a/data/migration/5169173_flask-restplus,flask-restx.yaml b/data/migration/5169173_flask-restplus,flask-restx.yaml index 876d61d..2c89a73 100644 --- a/data/migration/5169173_flask-restplus,flask-restx.yaml +++ b/data/migration/5169173_flask-restplus,flask-restx.yaml @@ -5,3 +5,38 @@ repo: kizniche/mycodo commit: 516917351d7d8341375db4481ac72910c9510a42 pair_id: flask-restplus,flask-restx commit_message: Merge from Flask-RESTPlus to Flask-RESTX ([#742 +commit_url: https://github.com/kizniche/mycodo/commit/51691735 +code_changes: +- filepath: mycodo/mycodo_flask/api/daemon.py + lines: + - 7-9:7-9 +- filepath: mycodo/mycodo_flask/api/__init__.py + lines: + - '6:6' +- filepath: mycodo/mycodo_flask/api/output.py + lines: + - 7-9:7-9 +- filepath: mycodo/mycodo_flask/api/math.py + lines: + - 7-9:7-9 +- filepath: mycodo/mycodo_flask/api/measurement.py + lines: + - 8-10:8-10 +- filepath: mycodo/mycodo_flask/api/sql_schema_fields.py + lines: + - '2:2' +- filepath: mycodo/mycodo_flask/api/pid.py + lines: + - 7-9:7-9 +- filepath: mycodo/mycodo_flask/api/input.py + lines: + - 7-9:7-9 +- filepath: mycodo/mycodo_flask/api/choices.py + lines: + - 7-9:7-9 +- filepath: mycodo/mycodo_flask/api/settings.py + lines: + - 7-9:7-9 +- filepath: mycodo/mycodo_flask/api/controller.py + lines: + - 7-9:7-9 diff --git a/data/migration/51f2688_gevent,eventlet.yaml b/data/migration/51f2688_gevent,eventlet.yaml index 9bf8cd5..1708620 100644 --- a/data/migration/51f2688_gevent,eventlet.yaml +++ b/data/migration/51f2688_gevent,eventlet.yaml @@ -11,3 +11,5 @@ commit_message: 'Move away from gevent again (#433) * add dnspython' +commit_url: https://github.com/teamsempo/sempoblockchain/commit/51f26884 +code_changes: [] diff --git a/data/migration/528b986_jwt,pyjwt.yaml b/data/migration/528b986_jwt,pyjwt.yaml index b790222..6e627f3 100644 --- a/data/migration/528b986_jwt,pyjwt.yaml +++ b/data/migration/528b986_jwt,pyjwt.yaml @@ -5,3 +5,5 @@ repo: reddit/baseplate.py commit: 528b986f62e566611c00ba4fa13de526a6a78c1e pair_id: jwt,pyjwt commit_message: Fix PyPI package name for PyJWT +commit_url: https://github.com/reddit/baseplate.py/commit/528b986f +code_changes: [] diff --git a/data/migration/5393290_pil,pillow.yaml b/data/migration/5393290_pil,pillow.yaml index 892eb9e..f9bcd27 100644 --- a/data/migration/5393290_pil,pillow.yaml +++ b/data/migration/5393290_pil,pillow.yaml @@ -6,3 +6,5 @@ commit: 53932904f35c8d8f60628fdc33eb618e450abbe2 pair_id: pil,pillow commit_message: update to requirements (using Pillow than PIL that is obsolete. Also added new haystack and security fixes of django) +commit_url: https://github.com/slav0nic/djangobb/commit/53932904 +code_changes: [] diff --git a/data/migration/53f2073_requests,aiohttp.yaml b/data/migration/53f2073_requests,aiohttp.yaml index d7bfa04..464ee10 100644 --- a/data/migration/53f2073_requests,aiohttp.yaml +++ b/data/migration/53f2073_requests,aiohttp.yaml @@ -5,3 +5,5 @@ repo: mkdir700/chaoxing_auto_sign commit: 53f2073234e00bef35896690e748eabd4b4632ed pair_id: requests,aiohttp commit_message: "\u4FEE\u590D\u901F\u5EA6\u8FC7\u5FEB\u5BFC\u81F4\u7684\u95EE\u9898" +commit_url: https://github.com/mkdir700/chaoxing_auto_sign/commit/53f20732 +code_changes: [] diff --git a/data/migration/547f6d9_lockfile,fasteners.yaml b/data/migration/547f6d9_lockfile,fasteners.yaml index 58fc3f1..69566e1 100644 --- a/data/migration/547f6d9_lockfile,fasteners.yaml +++ b/data/migration/547f6d9_lockfile,fasteners.yaml @@ -5,3 +5,33 @@ repo: kizniche/mycodo commit: 547f6d9f22e569007c1066e36ee5142f5e1b533d pair_id: lockfile,fasteners commit_message: Replace deprecated LockFile with fasteners (#260) +commit_url: https://github.com/kizniche/mycodo/commit/547f6d9f +code_changes: +- filepath: mycodo/sensors/mh_z16.py + lines: + - 155:156 + - '22:22' + - 51:152 +- filepath: mycodo/sensors/k30.py + lines: + - 101:100 + - '3:3' + - 95:96 +- filepath: mycodo/controller_sensor.py + lines: + - '31:26' +- filepath: mycodo/sensors/mh_z19.py + lines: + - 101:102 + - '3:3' + - 95:98 +- filepath: mycodo/devices/atlas_scientific_uart.py + lines: + - '5:3' + - '51:54' + - '55:58' +- filepath: mycodo/devices/atlas_scientific_i2c.py + lines: + - '7:3' + - 77:79 + - 81:83 diff --git a/data/migration/56e3253_python-ldap,ldap3.yaml b/data/migration/56e3253_python-ldap,ldap3.yaml index 42fea18..3bfba8e 100644 --- a/data/migration/56e3253_python-ldap,ldap3.yaml +++ b/data/migration/56e3253_python-ldap,ldap3.yaml @@ -5,3 +5,5 @@ repo: tracim/tracim commit: 56e3253fe473d1a9d18f197bad11399259958d5e pair_id: python-ldap,ldap3 commit_message: Use pyramid_ldap3 instead of pyramid_ldap +commit_url: https://github.com/tracim/tracim/commit/56e3253f +code_changes: [] diff --git a/data/migration/57d12c4_openpyxl,xlsxwriter.yaml b/data/migration/57d12c4_openpyxl,xlsxwriter.yaml index 70d144f..0a876d6 100644 --- a/data/migration/57d12c4_openpyxl,xlsxwriter.yaml +++ b/data/migration/57d12c4_openpyxl,xlsxwriter.yaml @@ -5,3 +5,8 @@ repo: bcgov/gwells commit: 57d12c42941e0afb07ac46fb51f8316d6c5a0cea pair_id: openpyxl,xlsxwriter commit_message: openpyxl seems to cause pod to crash - maybe too much memory? +commit_url: https://github.com/bcgov/gwells/commit/57d12c42 +code_changes: +- filepath: app/backend/wells/management/commands/export.py + lines: + - '12:12' diff --git a/data/migration/58237dc_mysql-python,pymysql.yaml b/data/migration/58237dc_mysql-python,pymysql.yaml index ae351d8..0fd4573 100644 --- a/data/migration/58237dc_mysql-python,pymysql.yaml +++ b/data/migration/58237dc_mysql-python,pymysql.yaml @@ -5,3 +5,5 @@ repo: hustlzp/flask-boost commit: 58237dc1f7a1296630951179b78a29a77c730b85 pair_id: mysql-python,pymysql commit_message: Use PyMySQL instead of MySQL-python to support Python3. +commit_url: https://github.com/hustlzp/flask-boost/commit/58237dc1 +code_changes: [] diff --git a/data/migration/5924dc0_pycrypto,pycryptodome.yaml b/data/migration/5924dc0_pycrypto,pycryptodome.yaml index 2e417af..dc5ae63 100644 --- a/data/migration/5924dc0_pycrypto,pycryptodome.yaml +++ b/data/migration/5924dc0_pycrypto,pycryptodome.yaml @@ -5,3 +5,5 @@ repo: n1nj4sec/pupy commit: 5924dc061834370c0b0688ff21d86bcbcfbeb000 pair_id: pycrypto,pycryptodome commit_message: Let's try to use pycryptodome instead of pycrypto +commit_url: https://github.com/n1nj4sec/pupy/commit/5924dc06 +code_changes: [] diff --git a/data/migration/598f275_flask-restplus,flask-restx.yaml b/data/migration/598f275_flask-restplus,flask-restx.yaml index db9fc80..7e61b45 100644 --- a/data/migration/598f275_flask-restplus,flask-restx.yaml +++ b/data/migration/598f275_flask-restplus,flask-restx.yaml @@ -5,3 +5,29 @@ repo: pythondataintegrator/pythondataintegrator commit: 598f275f11bdb1796b4ea0f6b3676a45758c08c4 pair_id: flask-restplus,flask-restx commit_message: requirements updated and restx integrated. some model updated +commit_url: https://github.com/pythondataintegrator/pythondataintegrator/commit/598f275f +code_changes: +- filepath: src/api/controllers/operation/models/DataOperationModels.py + lines: + - '5:5' +- filepath: src/api/controllers/operation/models/JobSchedulerModels.py + lines: + - '5:5' +- filepath: src/api/infrastructor/api/ResourceBase.py + lines: + - '1:1' +- filepath: src/api/controllers/common/models/CommonModels.py + lines: + - '3:5' +- filepath: src/api/IocManager.py + lines: + - '6:6' +- filepath: src/api/controllers/integration/models/DataIntegrationModels.py + lines: + - '4:4' +- filepath: src/api/controllers/job/models/JobModels.py + lines: + - '4:4' +- filepath: src/api/controllers/connection/models/ConnectionModels.py + lines: + - '4:4' diff --git a/data/migration/59d8319_flask-restplus,flask-restx.yaml b/data/migration/59d8319_flask-restplus,flask-restx.yaml index f14bf72..2170af6 100644 --- a/data/migration/59d8319_flask-restplus,flask-restx.yaml +++ b/data/migration/59d8319_flask-restplus,flask-restx.yaml @@ -5,3 +5,18 @@ repo: apryor6/flaskerize commit: 59d8319355bf95f26949fe13ac3d6be5b5282fb6 pair_id: flask-restplus,flask-restx commit_message: Update to use flask-restx +commit_url: https://github.com/apryor6/flaskerize/commit/59d83193 +code_changes: +- filepath: flaskerize/generate.py + lines: + - 152:152 +- filepath: flaskerize/schematics/entity/files/{{ name }}.template/controller.py.template + lines: + - '1:1' + - '3:3' +- filepath: flaskerize/schematics/flask-api/files/{{ name }}.template/app/__init__.py + lines: + - '3:3' +- filepath: flaskerize/schematics/flask-api/files/{{ name }}.template/app/widget/controller.py + lines: + - '3:3' diff --git a/data/migration/5a842ae_kafka-python,confluent-kafka.yaml b/data/migration/5a842ae_kafka-python,confluent-kafka.yaml index e4a7a76..0899e0d 100644 --- a/data/migration/5a842ae_kafka-python,confluent-kafka.yaml +++ b/data/migration/5a842ae_kafka-python,confluent-kafka.yaml @@ -36,3 +36,10 @@ commit_message: 'Switch driver to confluent-kafka client library Depends-On: Ice374dca539b8ed1b1965b75379bad5140121483 Change-Id: Idfb9fe3700d882c8285c6dc56b0620951178eba2' +commit_url: https://github.com/openstack/oslo.messaging/commit/5a842ae1 +code_changes: +- filepath: oslo_messaging/_drivers/impl_kafka.py + lines: + - 220-232:231-248 + - 288-297:316-326 + - 26-28:18-19 diff --git a/data/migration/5c76c96_xlrd,openpyxl.yaml b/data/migration/5c76c96_xlrd,openpyxl.yaml index de489ae..a3db42c 100644 --- a/data/migration/5c76c96_xlrd,openpyxl.yaml +++ b/data/migration/5c76c96_xlrd,openpyxl.yaml @@ -5,3 +5,5 @@ repo: asehmi/data-science-meetup-oxford commit: 5c76c96f1062ddf9be986f6b8416101aef88d0cd pair_id: xlrd,openpyxl commit_message: '[security fix] replacing xlrd default with explicit openpyxl in pd.read_excel()' +commit_url: https://github.com/asehmi/data-science-meetup-oxford/commit/5c76c96f +code_changes: [] diff --git a/data/migration/5cb810e_pil,pillow.yaml b/data/migration/5cb810e_pil,pillow.yaml index ed338f7..7a43967 100644 --- a/data/migration/5cb810e_pil,pillow.yaml +++ b/data/migration/5cb810e_pil,pillow.yaml @@ -12,3 +12,5 @@ commit_message: 'Fixed issue with images that had no alpha channel. New feature Updated documentation to include pillow' +commit_url: https://github.com/getpelican/pelican-plugins/commit/5cb810eb +code_changes: [] diff --git a/data/migration/5ded32a_pycrypto,pycryptodome.yaml b/data/migration/5ded32a_pycrypto,pycryptodome.yaml index a6071af..baad1bb 100644 --- a/data/migration/5ded32a_pycrypto,pycryptodome.yaml +++ b/data/migration/5ded32a_pycrypto,pycryptodome.yaml @@ -5,3 +5,5 @@ repo: cybercentrecanada/assemblyline-service-cuckoo commit: 5ded32a52c92e7f3b89602ca3600fec9ac5a1662 pair_id: pycrypto,pycryptodome commit_message: Use pycryptodome instead of pycrypto +commit_url: https://github.com/cybercentrecanada/assemblyline-service-cuckoo/commit/5ded32a5 +code_changes: [] diff --git a/data/migration/5eb6909_eventlet,gevent.yaml b/data/migration/5eb6909_eventlet,gevent.yaml index 2defc90..ca137b0 100644 --- a/data/migration/5eb6909_eventlet,gevent.yaml +++ b/data/migration/5eb6909_eventlet,gevent.yaml @@ -7,3 +7,5 @@ pair_id: eventlet,gevent commit_message: 'Issue #249 - started on new scraper. Version version of Monitor and SearchCommands class' +commit_url: https://github.com/sc3/cookcountyjail/commit/5eb69097 +code_changes: [] diff --git a/data/migration/5f2c76c_py-bcrypt,bcrypt.yaml b/data/migration/5f2c76c_py-bcrypt,bcrypt.yaml index b8d1c27..c5c39a8 100644 --- a/data/migration/5f2c76c_py-bcrypt,bcrypt.yaml +++ b/data/migration/5f2c76c_py-bcrypt,bcrypt.yaml @@ -8,3 +8,5 @@ commit_message: 'Upgrade py-bcrypt to bcrypt Fixes issue #244 on GitHub.' +commit_url: https://github.com/pwnlandia/mhn/commit/5f2c76c5 +code_changes: [] diff --git a/data/migration/5f4d92a_slackclient,slack-sdk.yaml b/data/migration/5f4d92a_slackclient,slack-sdk.yaml index 3f432a0..0e00d5c 100644 --- a/data/migration/5f4d92a_slackclient,slack-sdk.yaml +++ b/data/migration/5f4d92a_slackclient,slack-sdk.yaml @@ -5,3 +5,16 @@ repo: slackapi/python-slack-sdk commit: 5f4d92a8048814fc4938753594e74d7cfc74c27a pair_id: slackclient,slack-sdk commit_message: Update the tutorial to be up-to-date with v3 +commit_url: https://github.com/slackapi/python-slack-sdk/commit/5f4d92a8 +code_changes: +- filepath: tutorial/PythOnBoardingBot/async_app.py + lines: + - 146:147 + - '42:43' + - 65:66 + - 94:95 + - 123:124 + - 7:7-8 +- filepath: tutorial/PythOnBoardingBot/app.py + lines: + - '4:4' diff --git a/data/migration/633e7d1_gevent,eventlet.yaml b/data/migration/633e7d1_gevent,eventlet.yaml index 44bf80e..d117fa5 100644 --- a/data/migration/633e7d1_gevent,eventlet.yaml +++ b/data/migration/633e7d1_gevent,eventlet.yaml @@ -5,3 +5,5 @@ repo: iqtlabs/poseidon commit: 633e7d1b5b0c7f12a89bdb5504084f4f760a37eb pair_id: gevent,eventlet commit_message: use eventlet instead of gevent +commit_url: https://github.com/iqtlabs/poseidon/commit/633e7d1b +code_changes: [] diff --git a/data/migration/6b0f04a_pycrypto,pycryptodome.yaml b/data/migration/6b0f04a_pycrypto,pycryptodome.yaml index 99b4580..0488d83 100644 --- a/data/migration/6b0f04a_pycrypto,pycryptodome.yaml +++ b/data/migration/6b0f04a_pycrypto,pycryptodome.yaml @@ -5,3 +5,5 @@ repo: wh1te909/tacticalrmm commit: 6b0f04a5b0b77d029cff0f16e0292d66116b9bdf pair_id: pycrypto,pycryptodome commit_message: replace pycrypto with newer pycryptodome +commit_url: https://github.com/wh1te909/tacticalrmm/commit/6b0f04a5 +code_changes: [] diff --git a/data/migration/6b10345_kafka-python,confluent-kafka.yaml b/data/migration/6b10345_kafka-python,confluent-kafka.yaml index c91f633..c473c56 100644 --- a/data/migration/6b10345_kafka-python,confluent-kafka.yaml +++ b/data/migration/6b10345_kafka-python,confluent-kafka.yaml @@ -10,3 +10,13 @@ commit_message: 'Update: migrate to `confluent-kafka-python` Works out-of-the-box for multiple Kafka brokers. Bonus: it''s faster and more maintained.' +commit_url: https://github.com/biznetgio/restknot/commit/6b103453 +code_changes: +- filepath: agent/dnsagent/clis/start.py + lines: + - 35:35-36 +- filepath: api/app/helpers/producer.py + lines: + - 18-21:18-20 + - 31:35-36 + - '5:5' diff --git a/data/migration/6b629d0_flask-restplus,flask-restx.yaml b/data/migration/6b629d0_flask-restplus,flask-restx.yaml index 265fa03..5c50111 100644 --- a/data/migration/6b629d0_flask-restplus,flask-restx.yaml +++ b/data/migration/6b629d0_flask-restplus,flask-restx.yaml @@ -13,3 +13,38 @@ commit_message: 'Replace ''flask_restplus'' with ''flask_restx'' Fixes: #23' +commit_url: https://github.com/orchest/orchest/commit/6b629d0d +code_changes: +- filepath: services/orchest-api/app/app/apis/namespace_projects.py + lines: + - '6:6' +- filepath: services/orchest-api/app/app/apis/namespace_pipelines.py + lines: + - '6:6' +- filepath: services/orchest-api/app/app/apis/namespace_environment_builds.py + lines: + - '6:6' +- filepath: services/orchest-api/app/app/schema.py + lines: + - '9:9' +- filepath: services/orchest-api/app/app/apis/namespace_experiments.py + lines: + - '8:8' +- filepath: services/orchest-api/app/app/utils.py + lines: + - '8:8' +- filepath: services/orchest-api/app/app/apis/namespace_validations.py + lines: + - '7:7' +- filepath: services/orchest-api/app/app/apis/__init__.py + lines: + - '2:2' +- filepath: services/orchest-api/app/app/apis/namespace_sessions.py + lines: + - '5:5' +- filepath: services/orchest-api/app/app/apis/namespace_environment_images.py + lines: + - '4:4' +- filepath: services/orchest-api/app/app/apis/namespace_runs.py + lines: + - '11:11' diff --git a/data/migration/6e7ee63_requests,aiohttp.yaml b/data/migration/6e7ee63_requests,aiohttp.yaml index 28fd98c..e8ebe98 100644 --- a/data/migration/6e7ee63_requests,aiohttp.yaml +++ b/data/migration/6e7ee63_requests,aiohttp.yaml @@ -5,3 +5,5 @@ repo: epsagon/epsagon-kubernetes commit: 6e7ee63ded228a139c4198bffb3f64675228f12e pair_id: requests,aiohttp commit_message: Watch based agent +commit_url: https://github.com/epsagon/epsagon-kubernetes/commit/6e7ee63d +code_changes: [] diff --git a/data/migration/70b3abc_mysql-python,pymysql.yaml b/data/migration/70b3abc_mysql-python,pymysql.yaml index eabf8b1..690058c 100644 --- a/data/migration/70b3abc_mysql-python,pymysql.yaml +++ b/data/migration/70b3abc_mysql-python,pymysql.yaml @@ -8,3 +8,5 @@ commit_message: 'Use PyMySQL driver instead of MySQLdb because PyMySQL is written in pure python and is easier to install' +commit_url: https://github.com/rnacentral/rnacentral-webcode/commit/70b3abc5 +code_changes: [] diff --git a/data/migration/71aff3a_retrying,tenacity.yaml b/data/migration/71aff3a_retrying,tenacity.yaml index 575428f..3701a7c 100644 --- a/data/migration/71aff3a_retrying,tenacity.yaml +++ b/data/migration/71aff3a_retrying,tenacity.yaml @@ -5,3 +5,24 @@ repo: intelai/inference-model-manager commit: 71aff3a0bd1ae2a7d7d91858dcbe721de152693e pair_id: retrying,tenacity commit_message: Replace retrying with tenacity (#119) +commit_url: https://github.com/intelai/inference-model-manager/commit/71aff3a0 +code_changes: +- filepath: tests/management_api_tests/context.py + lines: + - '1:1' + - 70:70 + - 90:90 + - 107:107 +- filepath: management/management_api/tenants/tenants_utils.py + lines: + - 109:108 + - 129:128 + - '5:5' +- filepath: tests/conftest.py + lines: + - 120:120 + - '4:4' +- filepath: tests/management_api_tests/endpoints/endpoint_utils.py + lines: + - 108:108 + - '3:3' diff --git a/data/migration/728f86e_django-rest-swagger,drf-yasg.yaml b/data/migration/728f86e_django-rest-swagger,drf-yasg.yaml index 1c96082..c40cb6b 100644 --- a/data/migration/728f86e_django-rest-swagger,drf-yasg.yaml +++ b/data/migration/728f86e_django-rest-swagger,drf-yasg.yaml @@ -8,3 +8,8 @@ commit_message: 'Use drf-yasg instead of django_rest_swagger Signed-off-by: Nicholas Rempel ' +commit_url: https://github.com/bcgov/theorgbook/commit/728f86e9 +code_changes: +- filepath: tob-api/api_v2/swagger.py + lines: + - 6:7-8 diff --git a/data/migration/7811c8f_eventlet,gevent.yaml b/data/migration/7811c8f_eventlet,gevent.yaml index f4578bd..92b493a 100644 --- a/data/migration/7811c8f_eventlet,gevent.yaml +++ b/data/migration/7811c8f_eventlet,gevent.yaml @@ -5,3 +5,5 @@ repo: teamsempo/sempoblockchain commit: 7811c8f9c0c4d75e6c7a24d597f613fb85b46361 pair_id: eventlet,gevent commit_message: swapping to gevent (#389) +commit_url: https://github.com/teamsempo/sempoblockchain/commit/7811c8f9 +code_changes: [] diff --git a/data/migration/7ba8676_logbook,loguru.yaml b/data/migration/7ba8676_logbook,loguru.yaml index 32a5111..9eafb87 100644 --- a/data/migration/7ba8676_logbook,loguru.yaml +++ b/data/migration/7ba8676_logbook,loguru.yaml @@ -5,3 +5,9 @@ repo: thombashi/tcconfig commit: 7ba8676b3b9347ef15142bfeba30d611822c154d pair_id: logbook,loguru commit_message: Replace the logging library +commit_url: https://github.com/thombashi/tcconfig/commit/7ba8676b +code_changes: +- filepath: tcconfig/_logger.py + lines: + - 18,29:20 + - '6:10' diff --git a/data/migration/7ea7ddb_flask,quart.yaml b/data/migration/7ea7ddb_flask,quart.yaml index 2d4a090..df7ee2b 100644 --- a/data/migration/7ea7ddb_flask,quart.yaml +++ b/data/migration/7ea7ddb_flask,quart.yaml @@ -5,3 +5,20 @@ repo: synesthesiam/voice2json commit: 7ea7ddb8400775282e82c1adcb17b013f27ede2b pair_id: flask,quart commit_message: Using quart for web interface +commit_url: https://github.com/synesthesiam/voice2json/commit/7ea7ddb8 +code_changes: +- filepath: web/app.py + lines: + - 100:102 + - 105:107 + - 166:172 + - 195:202 + - 235:243 + - 237:245 + - 242:250 + - '20:20' + - '28:28' + - 59:59-60 + - 95:96-97 + - 188:194-195 + - 212:219-220 diff --git a/data/migration/813214e_slackclient,slack-sdk.yaml b/data/migration/813214e_slackclient,slack-sdk.yaml index 810054c..d5ee57e 100644 --- a/data/migration/813214e_slackclient,slack-sdk.yaml +++ b/data/migration/813214e_slackclient,slack-sdk.yaml @@ -5,3 +5,17 @@ repo: slackapi/python-slack-events-api commit: 813214e403c800722dd5a92449cb0a49b8b73abc pair_id: slackclient,slack-sdk commit_message: version 3.0.0 +commit_url: https://github.com/slackapi/python-slack-events-api/commit/813214e4 +code_changes: +- filepath: example/current_app/main.py + lines: + - '9:2' +- filepath: example/blueprint/example.py + lines: + - '12:2' +- filepath: example/example.py + lines: + - '2:2' +- filepath: example/working_with_proxy/example.py + lines: + - '12:2' diff --git a/data/migration/85d50bb_pil,pillow.yaml b/data/migration/85d50bb_pil,pillow.yaml index 0ce4f30..814ca81 100644 --- a/data/migration/85d50bb_pil,pillow.yaml +++ b/data/migration/85d50bb_pil,pillow.yaml @@ -57,3 +57,5 @@ commit_message: 'Fixes PIL dependency $ source env/bin/activate $ pip uninstall PIL' +commit_url: https://github.com/learning-unlimited/esp-website/commit/85d50bbb +code_changes: [] diff --git a/data/migration/86244b6_pyqt5,pyside6.yaml b/data/migration/86244b6_pyqt5,pyside6.yaml index bbb83ca..5e258ac 100644 --- a/data/migration/86244b6_pyqt5,pyside6.yaml +++ b/data/migration/86244b6_pyqt5,pyside6.yaml @@ -5,3 +5,93 @@ repo: toufool/auto-split commit: 86244b6c190f48200826788fa6af4bd8d26b230f pair_id: pyqt5,pyside6 commit_message: Python 3.9 + PyQt6 +commit_url: https://github.com/toufool/auto-split/commit/86244b6c +code_changes: +- filepath: src/AutoSplit.py + lines: + - '4:4' + - 139:141 + - 164:166 + - 617:619 + - 680:682 + - 881:883 + - 968:961 +- filepath: src/resources_rc.py + lines: + - '9:6' +- filepath: src/settings_file.py + lines: + - '2:2' +- filepath: src/error_messages.py + lines: + - '2:2' +- filepath: src/about.py + lines: + - '9:9' + - '32:34' + - '48:50' + - '77:79' +- filepath: src/screen_region.py + lines: + - '1:1' + - 224:227 + - 229-230:232-233 + - 257-258:260-261 + - 268:271 + - 273:276 + - 277:280 +- filepath: src/menu_bar.py + lines: + - '2:2' +- filepath: src/design.py + lines: + - '9:9' + - '29:31' + - '37:39' + - '40:42' + - '52:54' + - 77:79 + - 90:92 + - 94:96 + - 98:100 + - 102:104 + - 109:111 + - 155:157 + - 172:174 + - 176:178 + - 180:182 + - 184:186 + - 188:190 + - 192:194 + - 194:196 + - 198:200 + - 200:202 + - 204:206 + - 206:208 + - 210:212 + - 212:214 + - 216:218 + - 218:220 + - 222:224 + - 224:226 + - 228:230 + - 230:232 + - 234:236 + - 236:238 + - 240:242 + - 242:244 + - 249:251 + - 251:253 + - 262:264 + - 308:310 + - 312:314 + - 317:319 + - 326:328 + - 365:367 + - 373:375 + - 456:458 + - 458:460 + - 460:462 + - 462:464 + - 464:466 + - 561:563 diff --git a/data/migration/8778a80_pil,pillow.yaml b/data/migration/8778a80_pil,pillow.yaml index 8606c1d..43d892d 100644 --- a/data/migration/8778a80_pil,pillow.yaml +++ b/data/migration/8778a80_pil,pillow.yaml @@ -8,3 +8,5 @@ commit_message: 'Replace PIL with Pillow Somehow PIL is not making Travis very happy atm.' +commit_url: https://github.com/django-wiki/django-wiki/commit/8778a806 +code_changes: [] diff --git a/data/migration/87a5671_xlrd,openpyxl.yaml b/data/migration/87a5671_xlrd,openpyxl.yaml index 9accf58..d85d43d 100644 --- a/data/migration/87a5671_xlrd,openpyxl.yaml +++ b/data/migration/87a5671_xlrd,openpyxl.yaml @@ -5,3 +5,5 @@ repo: oeg-upm/mapeathor commit: 87a5671e807b70b06dbb00dc8e297aee61b1632b pair_id: xlrd,openpyxl commit_message: xlrd bug fixed +commit_url: https://github.com/oeg-upm/mapeathor/commit/87a5671e +code_changes: [] diff --git a/data/migration/89b64c6_raven,sentry-sdk.yaml b/data/migration/89b64c6_raven,sentry-sdk.yaml index 40af351..210f913 100644 --- a/data/migration/89b64c6_raven,sentry-sdk.yaml +++ b/data/migration/89b64c6_raven,sentry-sdk.yaml @@ -9,3 +9,5 @@ commit_message: 'fix(Error logging): Upgrade to sentry-sdk; use message for migr Closes #336 and #350' +commit_url: https://github.com/stencila/hub/commit/89b64c61 +code_changes: [] diff --git a/data/migration/89c7afc_pymilvus-orm,pymilvus.yaml b/data/migration/89c7afc_pymilvus-orm,pymilvus.yaml index 139f044..dbcb7af 100644 --- a/data/migration/89c7afc_pymilvus-orm,pymilvus.yaml +++ b/data/migration/89c7afc_pymilvus-orm,pymilvus.yaml @@ -5,3 +5,9 @@ repo: milvus-io/bootcamp commit: 89c7afc6548362e9bbf1dbf6142aabb02bc3bb93 pair_id: pymilvus-orm,pymilvus commit_message: update benchmark test script for Milvus 2.0.0-rc5 +commit_url: https://github.com/milvus-io/bootcamp/commit/89c7afc6 +code_changes: +- filepath: benchmark_test/scripts/milvus_helpers.py + lines: + - 2-5,7:2 + - 98:96 diff --git a/data/migration/8d0ec68_retrying,tenacity.yaml b/data/migration/8d0ec68_retrying,tenacity.yaml index f0d9e47..b942a51 100644 --- a/data/migration/8d0ec68_retrying,tenacity.yaml +++ b/data/migration/8d0ec68_retrying,tenacity.yaml @@ -6,3 +6,8 @@ commit: 8d0ec687838ea69612d7b1236e2341198aef7937 pair_id: retrying,tenacity commit_message: 'Fix: Add retry logic to prevent throttling issue when listing exports (#13)' +commit_url: https://github.com/pokainc/cfn-cross-region-export/commit/8d0ec687 +code_changes: +- filepath: importer/lambda/cross_region_importer.py + lines: + - '10:10' diff --git a/data/migration/8ef3b62_flask-restful,flask-restplus.yaml b/data/migration/8ef3b62_flask-restful,flask-restplus.yaml index e07f953..a32e211 100644 --- a/data/migration/8ef3b62_flask-restful,flask-restplus.yaml +++ b/data/migration/8ef3b62_flask-restful,flask-restplus.yaml @@ -5,3 +5,26 @@ repo: ziirish/burp-ui commit: 8ef3b624e52ac6a9420c533b0dd744a36d91c4d3 pair_id: flask-restful,flask-restplus commit_message: use flask-restplus +commit_url: https://github.com/ziirish/burp-ui/commit/8ef3b624 +code_changes: +- filepath: burpui/api/client.py + lines: + - '13:13' +- filepath: burpui/api/restore.py + lines: + - '18:18' +- filepath: burpui/api/__init__.py + lines: + - '14:14' +- filepath: burpui/api/misc.py + lines: + - '15:15' +- filepath: burpui/api/servers.py + lines: + - '8:8' +- filepath: burpui/api/settings.py + lines: + - '14:14' +- filepath: burpui/api/clients.py + lines: + - '15:15' diff --git a/data/migration/902b66d_pil,pillow.yaml b/data/migration/902b66d_pil,pillow.yaml index 8f813a0..9e153f3 100644 --- a/data/migration/902b66d_pil,pillow.yaml +++ b/data/migration/902b66d_pil,pillow.yaml @@ -5,3 +5,5 @@ repo: gml16/rl-medical commit: 902b66dfcb506bae0c9f4ac4a69dc4a1f22cec9e pair_id: pil,pillow commit_message: Fixed requirement from PIL to pillow +commit_url: https://github.com/gml16/rl-medical/commit/902b66df +code_changes: [] diff --git a/data/migration/9291b54_pycryptodome,pycryptodomex.yaml b/data/migration/9291b54_pycryptodome,pycryptodomex.yaml index 85a90f7..3cc7cf4 100644 --- a/data/migration/9291b54_pycryptodome,pycryptodomex.yaml +++ b/data/migration/9291b54_pycryptodome,pycryptodomex.yaml @@ -12,3 +12,24 @@ commit_message: 'Suggest change to pycryptodomex vs pycryptodome Crypto hooks be beneficial to migrate to the more explicit Cryptodome namespace due to a notable lack of support for pycryptodome hooks in pyinstaller.' +commit_url: https://github.com/malwaredllc/byob/commit/9291b54e +code_changes: +- filepath: byob/modules/ransom.py + lines: + - 68:68 + - 131:131 + - 187:187 + - 212:212 + - 75:75 + - 132-133:132-133 + - 188:188 + - 213:213 +- filepath: byob/core/security.py + lines: + - 20-23:20-23 + - '41:41' + - 43-44:43-44 + - '46:46' + - 64:64 + - 85:85 + - 84:84 diff --git a/data/migration/936761f_dataproperty,typepy.yaml b/data/migration/936761f_dataproperty,typepy.yaml index 152ad59..127298e 100644 --- a/data/migration/936761f_dataproperty,typepy.yaml +++ b/data/migration/936761f_dataproperty,typepy.yaml @@ -5,3 +5,10 @@ repo: thombashi/datetimerange commit: 936761f779c4f7dc8c2d4c03c47b6e7b6e978a89 pair_id: dataproperty,typepy commit_message: Add timestamp as support input value types +commit_url: https://github.com/thombashi/datetimerange/commit/936761f7 +code_changes: +- filepath: datetimerange/__init__.py + lines: + - '11:13' + - 457-458:465-466 + - 484-485:498-499 diff --git a/data/migration/963f347_gcloud-aio-core,aiohttp.yaml b/data/migration/963f347_gcloud-aio-core,aiohttp.yaml index 237b6e9..9e7a271 100644 --- a/data/migration/963f347_gcloud-aio-core,aiohttp.yaml +++ b/data/migration/963f347_gcloud-aio-core,aiohttp.yaml @@ -5,3 +5,9 @@ repo: talkiq/gcloud-aio commit: 963f34706918757ab7d3cbad70c363b9a48b9d40 pair_id: gcloud-aio-core,aiohttp commit_message: 'refactor(datastore): remove core.http dependency' +commit_url: https://github.com/talkiq/gcloud-aio/commit/963f3470 +code_changes: +- filepath: datastore/gcloud/aio/datastore/datastore.py + lines: + - 142:154-157 + - '5:4' diff --git a/data/migration/9abf7b1_slackclient,slack-sdk.yaml b/data/migration/9abf7b1_slackclient,slack-sdk.yaml index 250119b..ee0a0da 100644 --- a/data/migration/9abf7b1_slackclient,slack-sdk.yaml +++ b/data/migration/9abf7b1_slackclient,slack-sdk.yaml @@ -14,3 +14,14 @@ commit_message: 'Fix rabbitmq bugs (connector argument position) (#167) * Fix typo (Uncontrolled Exception instead of Uncontroller Exception)' +commit_url: https://github.com/alice-biometrics/petisco/commit/9abf7b1f +code_changes: +- filepath: petisco/legacy/notifier/infrastructure/slack/slack_notifier.py + lines: + - 1-2:1-2 +- filepath: petisco/extra/slack/is_slack_available.py + lines: + - '3:3' +- filepath: petisco/extra/slack/application/notifier/slack_notifier.py + lines: + - 3-4:3-4 diff --git a/data/migration/9c85d66_pil,pillow.yaml b/data/migration/9c85d66_pil,pillow.yaml index 8a10b2d..42086db 100644 --- a/data/migration/9c85d66_pil,pillow.yaml +++ b/data/migration/9c85d66_pil,pillow.yaml @@ -5,3 +5,5 @@ repo: thunder-project/thunder commit: 9c85d66c14f1c7b39e8efd39dd7fba9163d7efca pair_id: pil,pillow commit_message: Replaced PIL with pillow +commit_url: https://github.com/thunder-project/thunder/commit/9c85d66c +code_changes: [] diff --git a/data/migration/a4c347a_eventlet,gevent.yaml b/data/migration/a4c347a_eventlet,gevent.yaml index 631e2ed..5157af8 100644 --- a/data/migration/a4c347a_eventlet,gevent.yaml +++ b/data/migration/a4c347a_eventlet,gevent.yaml @@ -5,3 +5,8 @@ repo: stefal/rtkbase commit: a4c347a2ede5fba1d0e787193b7dc4079ab4fd6f pair_id: eventlet,gevent commit_message: 'Temporary workaround to #22' +commit_url: https://github.com/stefal/rtkbase/commit/a4c347a2 +code_changes: +- filepath: web_app/server.py + lines: + - 28-29:26-27 diff --git a/data/migration/a50812d_flask-security,flask-security-too.yaml b/data/migration/a50812d_flask-security,flask-security-too.yaml index d7f899c..1401917 100644 --- a/data/migration/a50812d_flask-security,flask-security-too.yaml +++ b/data/migration/a50812d_flask-security,flask-security-too.yaml @@ -12,3 +12,5 @@ commit_message: 'Migrating dependency on flask-security to flask-security-too became abandonware. A fork mantained by jwag956 seems to handle the project''s continuity. I took a look in the source code and it seems to be properly maintained.' +commit_url: https://github.com/italomaia/flask-empty/commit/a50812d3 +code_changes: [] diff --git a/data/migration/a5c04bb_requests,aiohttp.yaml b/data/migration/a5c04bb_requests,aiohttp.yaml index 2ca997c..09beb6c 100644 --- a/data/migration/a5c04bb_requests,aiohttp.yaml +++ b/data/migration/a5c04bb_requests,aiohttp.yaml @@ -5,3 +5,20 @@ repo: talkpython/async-techniques-python-course commit: a5c04bbd9b5614a8fc0317050c01e4c241b1b41d pair_id: requests,aiohttp commit_message: fully async flask app based on quart and aiohttp +commit_url: https://github.com/talkpython/async-techniques-python-course/commit/a5c04bbd +code_changes: +- filepath: src/10-async-web/acityscape_api/services/location_service.py + lines: + - '4:5' + - 21:22-23 + - '24:26' +- filepath: src/10-async-web/acityscape_api/services/weather_service.py + lines: + - '1:1' + - 13:13-14 + - '16:17' +- filepath: src/10-async-web/acityscape_api/services/sun_service.py + lines: + - '5:5' + - 21:21-22 + - '24:24' diff --git a/data/migration/a688034_flask-restplus,flask-restx.yaml b/data/migration/a688034_flask-restplus,flask-restx.yaml index ad6b2a9..ea08d8a 100644 --- a/data/migration/a688034_flask-restplus,flask-restx.yaml +++ b/data/migration/a688034_flask-restplus,flask-restx.yaml @@ -5,3 +5,5 @@ repo: cycat-project/cycat-service commit: a6880349b111f7a111d6d9163dde664251eaa0e4 pair_id: flask-restplus,flask-restx commit_message: 'fix: [requirements] flask-restx added' +commit_url: https://github.com/cycat-project/cycat-service/commit/a6880349 +code_changes: [] diff --git a/data/migration/a7375cc_celery,rq.yaml b/data/migration/a7375cc_celery,rq.yaml index f4d83e5..f3235b1 100644 --- a/data/migration/a7375cc_celery,rq.yaml +++ b/data/migration/a7375cc_celery,rq.yaml @@ -5,3 +5,8 @@ repo: sapfir0/premier-eye commit: a7375ccc40885f04faf4a05852591e6de4ba676d pair_id: celery,rq commit_message: "\u041F\u0435\u0440\u0435\u0434\u0435\u043B\u0430\u043A\u0430" +commit_url: https://github.com/sapfir0/premier-eye/commit/a7375ccc +code_changes: +- filepath: pyfront/app/__init__.py + lines: + - '2:3' diff --git a/data/migration/a7f4c3f_pymilvus-orm,pymilvus.yaml b/data/migration/a7f4c3f_pymilvus-orm,pymilvus.yaml index fe1d4bf..b202f6d 100644 --- a/data/migration/a7f4c3f_pymilvus-orm,pymilvus.yaml +++ b/data/migration/a7f4c3f_pymilvus-orm,pymilvus.yaml @@ -5,3 +5,8 @@ repo: milvus-io/bootcamp commit: a7f4c3f13e007116d88d9a2776f471a4e4f1fc81 pair_id: pymilvus-orm,pymilvus commit_message: update qa-chatbot to Milvus2.0.0-rc5 +commit_url: https://github.com/milvus-io/bootcamp/commit/a7f4c3f1 +code_changes: +- filepath: solutions/question_answering_system/quick_deploy/server/src/milvus_helpers.py + lines: + - 2-5,7:2 diff --git a/data/migration/aa607bd_flask,quart.yaml b/data/migration/aa607bd_flask,quart.yaml index 69fe435..cd68187 100644 --- a/data/migration/aa607bd_flask,quart.yaml +++ b/data/migration/aa607bd_flask,quart.yaml @@ -6,3 +6,20 @@ commit: aa607bd32a90d7693e91bd4a1be39baec2d889ba pair_id: flask,quart commit_message: Final code for first conversion from flask to quart (no real async yet) +commit_url: https://github.com/talkpython/async-techniques-python-course/commit/aa607bd3 +code_changes: +- filepath: src/10-async-web/acityscape_api/app.py + lines: + - '1:1' + - '9:9' +- filepath: src/10-async-web/acityscape_api/views/home.py + lines: + - '1:1' + - '3:3' + - '15:15' +- filepath: src/10-async-web/acityscape_api/views/city_api.py + lines: + - '1:1' + - '4:4' + - 11-12:11-12 + - 20-21:20-21 diff --git a/data/migration/ab4e5fd_requests,aiohttp.yaml b/data/migration/ab4e5fd_requests,aiohttp.yaml index 1cd5f55..1d7d359 100644 --- a/data/migration/ab4e5fd_requests,aiohttp.yaml +++ b/data/migration/ab4e5fd_requests,aiohttp.yaml @@ -5,3 +5,10 @@ repo: talkpython/async-techniques-python-course commit: ab4e5fdd32982c97e9701d3e1fdb8c39882d4250 pair_id: requests,aiohttp commit_message: final code for web scraping with asyncio. +commit_url: https://github.com/talkpython/async-techniques-python-course/commit/ab4e5fdd +code_changes: +- filepath: src/04-asyncio/web_scraping/async_scrape/program.py + lines: + - '1:3' + - 10:13-14 + - '13:17' diff --git a/data/migration/ae216dd_pycrypto,pycryptodome.yaml b/data/migration/ae216dd_pycrypto,pycryptodome.yaml index 3254a77..f71bbdc 100644 --- a/data/migration/ae216dd_pycrypto,pycryptodome.yaml +++ b/data/migration/ae216dd_pycrypto,pycryptodome.yaml @@ -5,3 +5,5 @@ repo: wh1te909/tacticalrmm commit: ae216dd41d81c06bd5f7cad2bfef61f5c4843744 pair_id: pycrypto,pycryptodome commit_message: replace pycrypto with newer pycryptodome +commit_url: https://github.com/wh1te909/tacticalrmm/commit/ae216dd4 +code_changes: [] diff --git a/data/migration/b19aae1_pycrypto,pycryptodome.yaml b/data/migration/b19aae1_pycrypto,pycryptodome.yaml index 3b52939..f7cd7e6 100644 --- a/data/migration/b19aae1_pycrypto,pycryptodome.yaml +++ b/data/migration/b19aae1_pycrypto,pycryptodome.yaml @@ -8,3 +8,5 @@ commit_message: 'pycryptodome & readme updates pycrypto has been depreciated & replaced with pycryptodome.' +commit_url: https://github.com/bitshares/python-bitshares/commit/b19aae1a +code_changes: [] diff --git a/data/migration/b2c9313_requests,aiohttp.yaml b/data/migration/b2c9313_requests,aiohttp.yaml index de799bb..f993e30 100644 --- a/data/migration/b2c9313_requests,aiohttp.yaml +++ b/data/migration/b2c9313_requests,aiohttp.yaml @@ -5,3 +5,5 @@ repo: sabeechen/hassio-google-drive-backup commit: b2c93130aee27ab377460ed9375b5cd89c35a44c pair_id: requests,aiohttp commit_message: Add asyncio requirements +commit_url: https://github.com/sabeechen/hassio-google-drive-backup/commit/b2c93130 +code_changes: [] diff --git a/data/migration/b687d20_huey,celery.yaml b/data/migration/b687d20_huey,celery.yaml index 305e30d..0955b40 100644 --- a/data/migration/b687d20_huey,celery.yaml +++ b/data/migration/b687d20_huey,celery.yaml @@ -7,3 +7,9 @@ pair_id: huey,celery commit_message: "\u5E9F\u5F03 huey\uFF0C\u591A\u6570\u636E\u5E93\u8FDE\u63A5\u7684\ \u65F6\u5019\u5B58\u5728 connection \u65E0\u6CD5\u91CA\u653E\u7684\u95EE\u9898\uFF0C\ \u56DE\u5230 celery" +commit_url: https://github.com/lonelam/onlinejudgeshu/commit/b687d206 +code_changes: +- filepath: submission/tasks.py + lines: + - '2:3' + - '7:7' diff --git a/data/migration/b86b375_raven,sentry-sdk.yaml b/data/migration/b86b375_raven,sentry-sdk.yaml index 2174f15..fd58864 100644 --- a/data/migration/b86b375_raven,sentry-sdk.yaml +++ b/data/migration/b86b375_raven,sentry-sdk.yaml @@ -6,3 +6,17 @@ commit: b86b375952cc3e965c32201caa8094998c56cde7 pair_id: raven,sentry-sdk commit_message: Upgrade to Python 3.8 so that sentry will work with django channels 2 +commit_url: https://github.com/thespaghettidetective/thespaghettidetective/commit/b86b3759 +code_changes: +- filepath: web/app/notifications.py + lines: + - '13:13' + - '44:44' + - '49:49' + - '54:54' + - 60:60 + - 66:66 + - 250:250 + - 256:256 + - 262:262 + - 268:268 diff --git a/data/migration/b955ac9_ruamel.yaml,pyyaml.yaml b/data/migration/b955ac9_ruamel.yaml,pyyaml.yaml index 7382682..2c150fb 100644 --- a/data/migration/b955ac9_ruamel.yaml,pyyaml.yaml +++ b/data/migration/b955ac9_ruamel.yaml,pyyaml.yaml @@ -5,3 +5,30 @@ repo: microsoft/nni commit: b955ac99a46094d2d701d447e9df07509767cc32 pair_id: ruamel.yaml,pyyaml commit_message: Use PyYAML instead of ruamel.yaml (#3702) +commit_url: https://github.com/microsoft/nni/commit/b955ac99 +code_changes: +- filepath: nni/tools/nnictl/common_utils.py + lines: + - '12:12' +- filepath: test/nni_test/nnitest/utils.py + lines: + - '12:12' + - '46:46' + - '51:51' +- filepath: nni/experiment/config/common.py + lines: + - '8:8' + - 121:121 +- filepath: test/nni_test/nnitest/run_tests.py + lines: + - '12:12' + - 83:83 +- filepath: nni/experiment/config/base.py + lines: + - '9:9' + - 75:75 +- filepath: nni/tools/package_utils/__init__.py + lines: + - '9:9' + - 218:218 + - 229:229 diff --git a/data/migration/b9b65c0_pyyaml,ruamel.yaml.yaml b/data/migration/b9b65c0_pyyaml,ruamel.yaml.yaml index 5ca01e6..c4bd035 100644 --- a/data/migration/b9b65c0_pyyaml,ruamel.yaml.yaml +++ b/data/migration/b9b65c0_pyyaml,ruamel.yaml.yaml @@ -112,3 +112,8 @@ commit_message: 'Squashed ''cwltool/schemas/'' changes from f027dbb..d03b190 git-subtree-dir: cwltool/schemas git-subtree-split: d03b19017e35326ee753f6ca82d9bc4a56d44b99' +commit_url: https://github.com/common-workflow-language/cwltool/commit/b9b65c0f +code_changes: +- filepath: draft-4/salad/schema_salad/jsonld_context.py + lines: + - '3:4' diff --git a/data/migration/baca6bb_urllib,urllib3.yaml b/data/migration/baca6bb_urllib,urllib3.yaml index 104c1a0..1609a1f 100644 --- a/data/migration/baca6bb_urllib,urllib3.yaml +++ b/data/migration/baca6bb_urllib,urllib3.yaml @@ -5,3 +5,5 @@ repo: thehive-project/cortex-analyzers commit: baca6bbf601ae74d188cf8b483ccf4864f300d9c pair_id: urllib,urllib3 commit_message: changed requirements to urllib3 +commit_url: https://github.com/thehive-project/cortex-analyzers/commit/baca6bbf +code_changes: [] diff --git a/data/migration/bbeb755_scapy-python3,scapy.yaml b/data/migration/bbeb755_scapy-python3,scapy.yaml index 557da86..636f2fc 100644 --- a/data/migration/bbeb755_scapy-python3,scapy.yaml +++ b/data/migration/bbeb755_scapy-python3,scapy.yaml @@ -12,3 +12,5 @@ commit_message: 'Update scapy Migrates to original and up-to-date scapy, which now supports both python 2 and 3' +commit_url: https://github.com/danimtb/dasshio/commit/bbeb755a +code_changes: [] diff --git a/data/migration/bed73dc_urllib,urllib3.yaml b/data/migration/bed73dc_urllib,urllib3.yaml index b9599f8..3a992bf 100644 --- a/data/migration/bed73dc_urllib,urllib3.yaml +++ b/data/migration/bed73dc_urllib,urllib3.yaml @@ -5,3 +5,5 @@ repo: cyberreboot/vent commit: bed73dc079dace87f73de7dc9fd59e4128b45cb6 pair_id: urllib,urllib3 commit_message: urllib3 +commit_url: https://github.com/cyberreboot/vent/commit/bed73dc0 +code_changes: [] diff --git a/data/migration/c08ec7a_huey,celery.yaml b/data/migration/c08ec7a_huey,celery.yaml index 783d769..f12019e 100644 --- a/data/migration/c08ec7a_huey,celery.yaml +++ b/data/migration/c08ec7a_huey,celery.yaml @@ -25,3 +25,5 @@ commit_message: "\u4FEE\u6539 admin \u754C\u9762\uFF0Cip \u592A\u5BBD\u4E86\n\nm \u5224\u9898\u673A\u5668\u7684\u914D\u7F6E\u6587\u4EF6\n\n\u5220\u9664\u4E0D\u518D\ \u4F7F\u7528\u7684\u914D\u7F6E\u6587\u4EF6\n\nSquash from a1fff74 to 12f96c6 by\ \ virusdefender" +commit_url: https://github.com/lonelam/onlinejudgeshu/commit/c08ec7a2 +code_changes: [] diff --git a/data/migration/c77913a_eventlet,gevent.yaml b/data/migration/c77913a_eventlet,gevent.yaml index c531dfe..5a21eb0 100644 --- a/data/migration/c77913a_eventlet,gevent.yaml +++ b/data/migration/c77913a_eventlet,gevent.yaml @@ -5,3 +5,5 @@ repo: it3s/mootiro-maps commit: c77913a45e3400e9e3f49dd4340e81a16a6c131f pair_id: eventlet,gevent commit_message: changed eventlet for gevent +commit_url: https://github.com/it3s/mootiro-maps/commit/c77913a4 +code_changes: [] diff --git a/data/migration/c7c5a13_raven,sentry-sdk.yaml b/data/migration/c7c5a13_raven,sentry-sdk.yaml index ec8d61d..b0648ae 100644 --- a/data/migration/c7c5a13_raven,sentry-sdk.yaml +++ b/data/migration/c7c5a13_raven,sentry-sdk.yaml @@ -5,3 +5,5 @@ repo: line/promgen commit: c7c5a138e4592aa1f0fa182ca1f8b971afaf7156 pair_id: raven,sentry-sdk commit_message: '[INTERNAL] Switch from raven to sentry_sdk' +commit_url: https://github.com/line/promgen/commit/c7c5a138 +code_changes: [] diff --git a/data/migration/cbaf252_python-ldap,ldap3.yaml b/data/migration/cbaf252_python-ldap,ldap3.yaml index 3779ae6..909b518 100644 --- a/data/migration/cbaf252_python-ldap,ldap3.yaml +++ b/data/migration/cbaf252_python-ldap,ldap3.yaml @@ -7,3 +7,8 @@ pair_id: python-ldap,ldap3 commit_message: "replace Python-LDAP with ldap3 (#690)\n\n* fix args in mailer\u2019\ s setup.py\n\n* switch mailer to ldap3\n\nclose #637\n\n* check that manager was\ \ set" +commit_url: https://github.com/cloud-custodian/cloud-custodian/commit/cbaf252f +code_changes: +- filepath: tools/c7n_mailer/c7n_mailer/address.py + lines: + - 19:16-20 diff --git a/data/migration/cc47b42_python-ldap,ldap3.yaml b/data/migration/cc47b42_python-ldap,ldap3.yaml index d757e77..08b300c 100644 --- a/data/migration/cc47b42_python-ldap,ldap3.yaml +++ b/data/migration/cc47b42_python-ldap,ldap3.yaml @@ -5,3 +5,10 @@ repo: ictu/quality-time commit: cc47b42cf70b6968b22a3819bf0b9714135271c1 pair_id: python-ldap,ldap3 commit_message: 'Issue #679 ldap3 library implemented instead of python_ldap (#703)' +commit_url: https://github.com/ictu/quality-time/commit/cc47b42c +code_changes: +- filepath: components/server/src/routes/auth.py + lines: + - 11:13-14 + - 47:66 + - 50-51:73 diff --git a/data/migration/cdaff15_pycrypto,cryptography.yaml b/data/migration/cdaff15_pycrypto,cryptography.yaml index 31ce4f4..45335da 100644 --- a/data/migration/cdaff15_pycrypto,cryptography.yaml +++ b/data/migration/cdaff15_pycrypto,cryptography.yaml @@ -5,3 +5,8 @@ repo: freeopcua/opcua-asyncio commit: cdaff1575780a99ab035abb08a6ad13414cd4859 pair_id: pycrypto,cryptography commit_message: completely remove dependency to pycrypto +commit_url: https://github.com/freeopcua/opcua-asyncio/commit/cdaff157 +code_changes: +- filepath: opcua/uacrypto.py + lines: + - 8-15:3-7 diff --git a/data/migration/cdb6679_pil,pillow.yaml b/data/migration/cdb6679_pil,pillow.yaml index c93b075..5631f91 100644 --- a/data/migration/cdb6679_pil,pillow.yaml +++ b/data/migration/cdb6679_pil,pillow.yaml @@ -5,3 +5,5 @@ repo: fantomas42/django-blog-zinnia commit: cdb667907dc2aa943955df49c4d4a604b4ecd195 pair_id: pil,pillow commit_message: using Pillow 2.0 for Python 2 & 3 compatibility +commit_url: https://github.com/fantomas42/django-blog-zinnia/commit/cdb66790 +code_changes: [] diff --git a/data/migration/cec78f4_pil,pillow.yaml b/data/migration/cec78f4_pil,pillow.yaml index 0b847a0..90fbb2a 100644 --- a/data/migration/cec78f4_pil,pillow.yaml +++ b/data/migration/cec78f4_pil,pillow.yaml @@ -8,3 +8,5 @@ commit_message: 'replace PIL with Pillow Pillow is a fork of PIL, with newer features and more (pip) packaging friendly.' +commit_url: https://github.com/numenta/nupic/commit/cec78f4f +code_changes: [] diff --git a/data/migration/cf856c0_gevent,eventlet.yaml b/data/migration/cf856c0_gevent,eventlet.yaml index 591f895..b99af42 100644 --- a/data/migration/cf856c0_gevent,eventlet.yaml +++ b/data/migration/cf856c0_gevent,eventlet.yaml @@ -20,3 +20,8 @@ commit_message: 'Switching back to eventlet fix #29 fix #22' +commit_url: https://github.com/stefal/rtkbase/commit/cf856c0c +code_changes: +- filepath: web_app/server.py + lines: + - 26-27:28-29 diff --git a/data/migration/d10cb16_raven,sentry-sdk.yaml b/data/migration/d10cb16_raven,sentry-sdk.yaml index 56ed766..9549b99 100644 --- a/data/migration/d10cb16_raven,sentry-sdk.yaml +++ b/data/migration/d10cb16_raven,sentry-sdk.yaml @@ -7,3 +7,12 @@ pair_id: raven,sentry-sdk commit_message: "Upgrade Sentry client from raven to sentry-sdk\n\nThe API isn\u2019\ t great and there\u2019s already a workaround for a bug/glaring omission, but the\ \ library is actively maintained and the new performance/tracing features are nice." +commit_url: https://github.com/weasyl/weasyl/commit/d10cb162 +code_changes: +- filepath: weasyl/middleware.py + lines: + - 316:305 + - 8-9:10 +- filepath: weasyl/define.py + lines: + - 988:979 diff --git a/data/migration/d15540f_gcloud-aio-core,aiohttp.yaml b/data/migration/d15540f_gcloud-aio-core,aiohttp.yaml index 2b1b0c1..14926b9 100644 --- a/data/migration/d15540f_gcloud-aio-core,aiohttp.yaml +++ b/data/migration/d15540f_gcloud-aio-core,aiohttp.yaml @@ -5,3 +5,8 @@ repo: talkiq/gcloud-aio commit: d15540f94ecdf468b1baf7fd9c025e4f862b3b69 pair_id: gcloud-aio-core,aiohttp commit_message: 'feat(taskqueue): migrate to cloudtasks v2beta2 (#13)' +commit_url: https://github.com/talkiq/gcloud-aio/commit/d15540f9 +code_changes: +- filepath: taskqueue/gcloud/aio/taskqueue/taskqueue.py + lines: + - 12-17:6 diff --git a/data/migration/d3a9a16_requests,aiohttp.yaml b/data/migration/d3a9a16_requests,aiohttp.yaml index 1c0a246..9de5508 100644 --- a/data/migration/d3a9a16_requests,aiohttp.yaml +++ b/data/migration/d3a9a16_requests,aiohttp.yaml @@ -8,3 +8,26 @@ commit_message: 'Async collector (#1102) Collector is now asynchronous.' +commit_url: https://github.com/ictu/quality-time/commit/d3a9a16a +code_changes: +- filepath: components/collector/src/base_collectors/source_collector.py + lines: + - 106:101 + - '13:13' +- filepath: components/collector/src/collector_utilities/functions.py + lines: + - '18:18' +- filepath: components/collector/src/collector_utilities/type.py + lines: + - '15:16' + - '5:5' +- filepath: components/collector/src/source_collectors/api_source_collectors/azure_devops.py + lines: + - '12:12' + - '31:31' + - '40:41' + - '52:53' + - 93:93 + - 122:122 + - 133:133 + - 157:158 diff --git a/data/migration/d3bedb7_raven,sentry-sdk.yaml b/data/migration/d3bedb7_raven,sentry-sdk.yaml index cfdd80a..11ec069 100644 --- a/data/migration/d3bedb7_raven,sentry-sdk.yaml +++ b/data/migration/d3bedb7_raven,sentry-sdk.yaml @@ -5,3 +5,5 @@ repo: rafalp/misago_docker commit: d3bedb763bb0d021c7c629423335daaa32b70152 pair_id: raven,sentry-sdk commit_message: Update Sentry to SDK +commit_url: https://github.com/rafalp/misago_docker/commit/d3bedb76 +code_changes: [] diff --git a/data/migration/d4119a0_flask-restful,flask-restplus.yaml b/data/migration/d4119a0_flask-restful,flask-restplus.yaml index 242f537..829369d 100644 --- a/data/migration/d4119a0_flask-restful,flask-restplus.yaml +++ b/data/migration/d4119a0_flask-restful,flask-restplus.yaml @@ -5,3 +5,12 @@ repo: testdrivenio/flask-react-aws commit: d4119a0f609b151df99b2250e419c168e688a0c6 pair_id: flask-restful,flask-restplus commit_message: testing ci +commit_url: https://github.com/testdrivenio/flask-react-aws/commit/d4119a0f +code_changes: +- filepath: services/users/project/api/users/views.py + lines: + - '5:5' +- filepath: services/users/project/api/ping.py + lines: + - '5:4' + - '8:6' diff --git a/data/migration/d54d772_python-social-auth,social-auth-app-django.yaml b/data/migration/d54d772_python-social-auth,social-auth-app-django.yaml index a45ca23..d24fe5d 100644 --- a/data/migration/d54d772_python-social-auth,social-auth-app-django.yaml +++ b/data/migration/d54d772_python-social-auth,social-auth-app-django.yaml @@ -5,3 +5,5 @@ repo: cmjatai/cmj commit: d54d772e5ae033845381879baa84a7bbd3ebc727 pair_id: python-social-auth,social-auth-app-django commit_message: Adiciona React ao projeto +commit_url: https://github.com/cmjatai/cmj/commit/d54d772e +code_changes: [] diff --git a/data/migration/d6cd8df_pyqt5,pyside6.yaml b/data/migration/d6cd8df_pyqt5,pyside6.yaml index cf8aff0..af7329e 100644 --- a/data/migration/d6cd8df_pyqt5,pyside6.yaml +++ b/data/migration/d6cd8df_pyqt5,pyside6.yaml @@ -5,3 +5,5 @@ repo: toufool/auto-split commit: d6cd8dfdc93aff7e1ff8763a06a64e20a18a4a33 pair_id: pyqt5,pyside6 commit_message: Python 3.9 + PyQt6 +commit_url: https://github.com/toufool/auto-split/commit/d6cd8dfd +code_changes: [] diff --git a/data/migration/d707ff6_gevent,eventlet.yaml b/data/migration/d707ff6_gevent,eventlet.yaml index 4b5ab8b..2096ed0 100644 --- a/data/migration/d707ff6_gevent,eventlet.yaml +++ b/data/migration/d707ff6_gevent,eventlet.yaml @@ -5,3 +5,9 @@ repo: duanhongyi/dwebsocket commit: d707ff652fd74c3420e83a50fc9b1b9026ed0d98 pair_id: gevent,eventlet commit_message: add py3k support +commit_url: https://github.com/duanhongyi/dwebsocket/commit/d707ff65 +code_changes: +- filepath: examples/run_eventlet.py + lines: + - 14-15:16 + - 3-5:1-2,6 diff --git a/data/migration/d84b166_python-social-auth,social-auth-app-django.yaml b/data/migration/d84b166_python-social-auth,social-auth-app-django.yaml index f315c54..9cfae92 100644 --- a/data/migration/d84b166_python-social-auth,social-auth-app-django.yaml +++ b/data/migration/d84b166_python-social-auth,social-auth-app-django.yaml @@ -5,3 +5,5 @@ repo: humanbrainproject/hbp_neuromorphic_platform commit: d84b1668c85c9b57f0a5269b7b5ff72f2ff73808 pair_id: python-social-auth,social-auth-app-django commit_message: Updated from python-social-auth (deprecated) to social-auth-app-django +commit_url: https://github.com/humanbrainproject/hbp_neuromorphic_platform/commit/d84b1668 +code_changes: [] diff --git a/data/migration/d8dedc7_pycrypto,pycryptodome.yaml b/data/migration/d8dedc7_pycrypto,pycryptodome.yaml index 55b9c16..8f74af8 100644 --- a/data/migration/d8dedc7_pycrypto,pycryptodome.yaml +++ b/data/migration/d8dedc7_pycrypto,pycryptodome.yaml @@ -14,3 +14,5 @@ commit_message: 'Replace pycrypto with pycryptodome them actually impact how we use it), so we might as well replace pycrypto with pycryptodome.' +commit_url: https://github.com/quantopian/penguindome/commit/d8dedc77 +code_changes: [] diff --git a/data/migration/dac43f8_gunicorn,waitress.yaml b/data/migration/dac43f8_gunicorn,waitress.yaml index 04b5263..2534f16 100644 --- a/data/migration/dac43f8_gunicorn,waitress.yaml +++ b/data/migration/dac43f8_gunicorn,waitress.yaml @@ -5,3 +5,5 @@ repo: covidzero/hummingbird-v2 commit: dac43f81346d1b23752698cf53d8fb9be721993b pair_id: gunicorn,waitress commit_message: change from gunicorn to waitress (#85) +commit_url: https://github.com/covidzero/hummingbird-v2/commit/dac43f81 +code_changes: [] diff --git a/data/migration/db7f132_flask,quart.yaml b/data/migration/db7f132_flask,quart.yaml index 5941d0f..07e3092 100644 --- a/data/migration/db7f132_flask,quart.yaml +++ b/data/migration/db7f132_flask,quart.yaml @@ -5,3 +5,9 @@ repo: learningorchestra/learningorchestra commit: db7f1321e13b5386f94670537aa49943f0f0cec9 pair_id: flask,quart commit_message: adding quart to make async requests +commit_url: https://github.com/learningorchestra/learningorchestra/commit/db7f1321 +code_changes: +- filepath: microservices/projection_image/server.py + lines: + - '1:1' + - '33:33' diff --git a/data/migration/dcd48ef_fuzzywuzzy,rapidfuzz.yaml b/data/migration/dcd48ef_fuzzywuzzy,rapidfuzz.yaml index ab8e313..98bd145 100644 --- a/data/migration/dcd48ef_fuzzywuzzy,rapidfuzz.yaml +++ b/data/migration/dcd48ef_fuzzywuzzy,rapidfuzz.yaml @@ -13,3 +13,5 @@ commit_message: 'use rapidfuzz instead of fuzzywuzzy Former-commit-id: a27da32d3a703dd37cbdc1e401540c97c8aabe48 Former-commit-id: 5cf1807ded5b5b6c22ed8a70968910a7c99c066f' +commit_url: https://github.com/nlpia/nlpia-bot/commit/dcd48ef2 +code_changes: [] diff --git a/data/migration/dd3b266_urllib,urllib3.yaml b/data/migration/dd3b266_urllib,urllib3.yaml index d5aeb78..30e983c 100644 --- a/data/migration/dd3b266_urllib,urllib3.yaml +++ b/data/migration/dd3b266_urllib,urllib3.yaml @@ -6,3 +6,5 @@ commit: dd3b2664b930544a60dffe749193cc766ddd1a03 pair_id: urllib,urllib3 commit_message: (Bug/Minor) Updated Python dependencies to latest versions (Fix GitHub Dependabot alert about urllib3 version <=1.26.5) +commit_url: https://github.com/jcjorel/clonesquad-ec2-pet-autoscaler/commit/dd3b2664 +code_changes: [] diff --git a/data/migration/dec4ae0_scapy-python3,scapy.yaml b/data/migration/dec4ae0_scapy-python3,scapy.yaml index 60329aa..d0260c1 100644 --- a/data/migration/dec4ae0_scapy-python3,scapy.yaml +++ b/data/migration/dec4ae0_scapy-python3,scapy.yaml @@ -5,3 +5,5 @@ repo: tklab-tud/id2t commit: dec4ae016d18537f225dd3dac52c70ccdb973d58 pair_id: scapy-python3,scapy commit_message: update scapy-python3 to scapy 2.4.2 +commit_url: https://github.com/tklab-tud/id2t/commit/dec4ae01 +code_changes: [] diff --git a/data/migration/df57533_raven,sentry-sdk.yaml b/data/migration/df57533_raven,sentry-sdk.yaml index 5063b67..1727f62 100644 --- a/data/migration/df57533_raven,sentry-sdk.yaml +++ b/data/migration/df57533_raven,sentry-sdk.yaml @@ -5,3 +5,5 @@ repo: anikalegal/clerk commit: df57533f6105b3ef513990ede61d8523a3674486 pair_id: raven,sentry-sdk commit_message: Add staging environment +commit_url: https://github.com/anikalegal/clerk/commit/df57533f +code_changes: [] diff --git a/data/migration/e192ca6_pycrypto,pycryptodome.yaml b/data/migration/e192ca6_pycrypto,pycryptodome.yaml index 39b282a..c83a05f 100644 --- a/data/migration/e192ca6_pycrypto,pycryptodome.yaml +++ b/data/migration/e192ca6_pycrypto,pycryptodome.yaml @@ -6,3 +6,8 @@ commit: e192ca69e2d610bc59a9f10165c7fd1c8ab9b157 pair_id: pycrypto,pycryptodome commit_message: "\u89E3\u51B3\u5BC6\u7801\u52A0\u5BC6\u53EF\u80FD\u62A5\u9519\u7684\ \u95EE\u9898" +commit_url: https://github.com/hhyo/archery/commit/e192ca69 +code_changes: +- filepath: sql/utils/aes_decryptor.py + lines: + - '26:26' diff --git a/data/migration/e38ec14_raven,sentry-sdk.yaml b/data/migration/e38ec14_raven,sentry-sdk.yaml index 486051e..6e310f4 100644 --- a/data/migration/e38ec14_raven,sentry-sdk.yaml +++ b/data/migration/e38ec14_raven,sentry-sdk.yaml @@ -5,3 +5,5 @@ repo: hypothesis/bouncer commit: e38ec148f5bad94648d338eea691d44abd4bdf5d pair_id: raven,sentry-sdk commit_message: Replace the raven dependency with `h_pyramid_sentry` +commit_url: https://github.com/hypothesis/bouncer/commit/e38ec148 +code_changes: [] diff --git a/data/migration/e418cdc_pil,pillow.yaml b/data/migration/e418cdc_pil,pillow.yaml index 3bddf1d..9d28609 100644 --- a/data/migration/e418cdc_pil,pillow.yaml +++ b/data/migration/e418cdc_pil,pillow.yaml @@ -5,3 +5,5 @@ repo: pyav-org/pyav commit: e418cdc8034dc2dac3379fa28087e739449c1c7d pair_id: pil,pillow commit_message: Test using Pillow instead of PIL +commit_url: https://github.com/pyav-org/pyav/commit/e418cdc8 +code_changes: [] diff --git a/data/migration/e5073e4_pymilvus-orm,pymilvus.yaml b/data/migration/e5073e4_pymilvus-orm,pymilvus.yaml index 2599638..b4a73b2 100644 --- a/data/migration/e5073e4_pymilvus-orm,pymilvus.yaml +++ b/data/migration/e5073e4_pymilvus-orm,pymilvus.yaml @@ -5,3 +5,11 @@ repo: milvus-io/bootcamp commit: e5073e4c0c3e799822e939268d80c8f0601ea4cf pair_id: pymilvus-orm,pymilvus commit_message: update video analysis +commit_url: https://github.com/milvus-io/bootcamp/commit/e5073e4c +code_changes: +- filepath: solutions/video_similarity_search/quick_deploy/server/src/milvus_helpers.py + lines: + - 2-5,7:3 +- filepath: solutions/video_similarity_search/object_detection/server/src/milvus_helpers.py + lines: + - 2-5,7:3 diff --git a/data/migration/e6b17da_pycrypto,pycryptodome.yaml b/data/migration/e6b17da_pycrypto,pycryptodome.yaml index 4ba7027..e2276b1 100644 --- a/data/migration/e6b17da_pycrypto,pycryptodome.yaml +++ b/data/migration/e6b17da_pycrypto,pycryptodome.yaml @@ -6,3 +6,5 @@ commit: e6b17da57dd2ef030d29894fde7e9340b324776d pair_id: pycrypto,pycryptodome commit_message: "perf: \u53BB\u6389pycrypto\u5E93\n\nperf: \u663E\u793A\u6DFB\u52A0\ pycryptodome" +commit_url: https://github.com/jumpserver/jumpserver/commit/e6b17da5 +code_changes: [] diff --git a/data/migration/e706486_slackclient,slack-sdk.yaml b/data/migration/e706486_slackclient,slack-sdk.yaml index 05b1bdb..ad33c35 100644 --- a/data/migration/e706486_slackclient,slack-sdk.yaml +++ b/data/migration/e706486_slackclient,slack-sdk.yaml @@ -20,3 +20,5 @@ commit_message: 'updates the implementation of the slack backend for notificatio Signed-off-by: Daniel Ziegenberg ' +commit_url: https://github.com/ansible/awx/commit/e7064868 +code_changes: [] diff --git a/data/migration/e7d4fd5_fuzzywuzzy,rapidfuzz.yaml b/data/migration/e7d4fd5_fuzzywuzzy,rapidfuzz.yaml index e3c752c..ed975ca 100644 --- a/data/migration/e7d4fd5_fuzzywuzzy,rapidfuzz.yaml +++ b/data/migration/e7d4fd5_fuzzywuzzy,rapidfuzz.yaml @@ -9,3 +9,5 @@ commit_message: 'use rapidfuzz instead of fuzzywuzzy Former-commit-id: 53c3bce9c5f9bcec87475759fe040289d45ba1d6' +commit_url: https://github.com/nlpia/nlpia-bot/commit/e7d4fd55 +code_changes: [] diff --git a/data/migration/ea23791_raven,sentry-sdk.yaml b/data/migration/ea23791_raven,sentry-sdk.yaml index 43e073c..91811e6 100644 --- a/data/migration/ea23791_raven,sentry-sdk.yaml +++ b/data/migration/ea23791_raven,sentry-sdk.yaml @@ -5,3 +5,9 @@ repo: agdsn/sipa commit: ea23791cfdc36d614189418a01a57c78859fa5e8 pair_id: raven,sentry-sdk commit_message: Use sentry SDK instead of raven +commit_url: https://github.com/agdsn/sipa/commit/ea23791c +code_changes: +- filepath: sipa/initialization.py + lines: + - 186-187:189-194 + - 9-11:8,12 diff --git a/data/migration/ee4d526_pyyaml,ruamel.yaml.yaml b/data/migration/ee4d526_pyyaml,ruamel.yaml.yaml index 4c0d45a..6f225e4 100644 --- a/data/migration/ee4d526_pyyaml,ruamel.yaml.yaml +++ b/data/migration/ee4d526_pyyaml,ruamel.yaml.yaml @@ -5,3 +5,14 @@ repo: cloud-custodian/cloud-custodian commit: ee4d52689e1f4965439b2d360c89eddf8767a935 pair_id: pyyaml,ruamel.yaml commit_message: tools/c7n_mailer port to py36 (#1417) +commit_url: https://github.com/cloud-custodian/cloud-custodian/commit/ee4d5268 +code_changes: +- filepath: tools/c7n_mailer/c7n_mailer/replay.py + lines: + - '21:21' +- filepath: tools/c7n_mailer/c7n_mailer/utils.py + lines: + - '18:20' +- filepath: tools/c7n_mailer/c7n_mailer/cli.py + lines: + - '8:8' diff --git a/data/migration/f0761b8_scapy-python3,scapy.yaml b/data/migration/f0761b8_scapy-python3,scapy.yaml index 8c2395f..6ad7f68 100644 --- a/data/migration/f0761b8_scapy-python3,scapy.yaml +++ b/data/migration/f0761b8_scapy-python3,scapy.yaml @@ -12,3 +12,5 @@ commit_message: 'Update scapy Migrates to original and up-to-date scapy, which now supports both python 2 and 3' +commit_url: https://github.com/plizonczyk/noiseprotocol/commit/f0761b88 +code_changes: [] diff --git a/data/migration/f08e9f1_mysql-python,pymysql.yaml b/data/migration/f08e9f1_mysql-python,pymysql.yaml index d375883..13a2d1c 100644 --- a/data/migration/f08e9f1_mysql-python,pymysql.yaml +++ b/data/migration/f08e9f1_mysql-python,pymysql.yaml @@ -18,3 +18,5 @@ commit_message: 'Switch from MySQL-python to PyMySQL Change-Id: I73e0fdb6eca70e7d029a40a2f6f17a7c0797a21d' +commit_url: https://github.com/openstack/neutron/commit/f08e9f1f +code_changes: [] diff --git a/data/migration/f1120d3_raven,sentry-sdk.yaml b/data/migration/f1120d3_raven,sentry-sdk.yaml index 4738af6..d75f563 100644 --- a/data/migration/f1120d3_raven,sentry-sdk.yaml +++ b/data/migration/f1120d3_raven,sentry-sdk.yaml @@ -29,3 +29,9 @@ commit_message: 'Feat - Switch from SSM to outputs + SAM (#20) Co-authored-by: Laurent Jalbert-Simard ' +commit_url: https://github.com/pokainc/cfn-cross-region-export/commit/f1120d34 +code_changes: +- filepath: exporter/lambda/cross_region_import_replication.py + lines: + - 21-25:11 + - 8-9:8-9 diff --git a/data/migration/f5ba90e_pyyaml,ruamel.yaml.yaml b/data/migration/f5ba90e_pyyaml,ruamel.yaml.yaml index ee9c8b2..b755e75 100644 --- a/data/migration/f5ba90e_pyyaml,ruamel.yaml.yaml +++ b/data/migration/f5ba90e_pyyaml,ruamel.yaml.yaml @@ -5,3 +5,8 @@ repo: holgern/beem commit: f5ba90e2cc5bb88b29b173bae11ba46e06efecf7 pair_id: pyyaml,ruamel.yaml commit_message: Switch to ruamel.yaml +commit_url: https://github.com/holgern/beem/commit/f5ba90e2 +code_changes: +- filepath: beem/utils.py + lines: + - '9:9' diff --git a/data/migration/f6230c7_py-bcrypt,bcrypt.yaml b/data/migration/f6230c7_py-bcrypt,bcrypt.yaml index 1b85cb6..2dd1919 100644 --- a/data/migration/f6230c7_py-bcrypt,bcrypt.yaml +++ b/data/migration/f6230c7_py-bcrypt,bcrypt.yaml @@ -5,3 +5,9 @@ repo: weasyl/weasyl commit: f6230c731f662be1301bdc38f6ab9815c7441144 pair_id: py-bcrypt,bcrypt commit_message: Implements pyca/bcrypt +commit_url: https://github.com/weasyl/weasyl/commit/f6230c73 +code_changes: +- filepath: weasyl/login.py + lines: + - 76:77 + - 284:285 diff --git a/data/migration/f69877c_python-ldap,ldap3.yaml b/data/migration/f69877c_python-ldap,ldap3.yaml index 5d2a190..f464d8f 100644 --- a/data/migration/f69877c_python-ldap,ldap3.yaml +++ b/data/migration/f69877c_python-ldap,ldap3.yaml @@ -5,3 +5,5 @@ repo: thehive-project/cortex-analyzers commit: f69877cf2f81aa27b63e2c3c3f1072a6868aba4a pair_id: python-ldap,ldap3 commit_message: use ldap3, add port/search_field, move templates +commit_url: https://github.com/thehive-project/cortex-analyzers/commit/f69877cf +code_changes: [] diff --git a/data/migration/f7d2ea4_raven,sentry-sdk.yaml b/data/migration/f7d2ea4_raven,sentry-sdk.yaml index 12bf771..2b79095 100644 --- a/data/migration/f7d2ea4_raven,sentry-sdk.yaml +++ b/data/migration/f7d2ea4_raven,sentry-sdk.yaml @@ -5,3 +5,5 @@ repo: uclapi/uclapi commit: f7d2ea4679405d7693ca8cd00992f11f1a2202ae pair_id: raven,sentry-sdk commit_message: ':sparkles: Migrate to Sentry' +commit_url: https://github.com/uclapi/uclapi/commit/f7d2ea46 +code_changes: [] diff --git a/data/migration/f970b54_pil,pillow.yaml b/data/migration/f970b54_pil,pillow.yaml index 463b734..e684280 100644 --- a/data/migration/f970b54_pil,pillow.yaml +++ b/data/migration/f970b54_pil,pillow.yaml @@ -5,3 +5,8 @@ repo: rcos/observatory-retired commit: f970b543dc349460492a32a11731738062bfcc09 pair_id: pil,pillow commit_message: Go to Pillow for images since PIL isn't updated +commit_url: https://github.com/rcos/observatory-retired/commit/f970b543 +code_changes: +- filepath: observatory/dashboard/models/Screenshot.py + lines: + - '15:15' diff --git a/data/migration/fe6b437_pil,pillow.yaml b/data/migration/fe6b437_pil,pillow.yaml index f9c78ef..e560451 100644 --- a/data/migration/fe6b437_pil,pillow.yaml +++ b/data/migration/fe6b437_pil,pillow.yaml @@ -5,3 +5,5 @@ repo: henrysky/astronn commit: fe6b4379c5d84495cb30af0ad50931c871129f0f pair_id: pil,pillow commit_message: pillow not PIL [ci skip] +commit_url: https://github.com/henrysky/astronn/commit/fe6b4379 +code_changes: [] diff --git a/data/migration/fe8e65d_dotenv,python-dotenv.yaml b/data/migration/fe8e65d_dotenv,python-dotenv.yaml index fba9ad3..ffe68c3 100644 --- a/data/migration/fe8e65d_dotenv,python-dotenv.yaml +++ b/data/migration/fe8e65d_dotenv,python-dotenv.yaml @@ -5,3 +5,5 @@ repo: kaveio/kavetoolbox commit: fe8e65df6d05e3818627638104d3ca0730753657 pair_id: dotenv,python-dotenv commit_message: Changing dotenv to python-dotenv +commit_url: https://github.com/kaveio/kavetoolbox/commit/fe8e65df +code_changes: [] diff --git a/docs/_config.yml b/docs/_config.yml index 077ac25..728d563 100644 --- a/docs/_config.yml +++ b/docs/_config.yml @@ -32,8 +32,6 @@ remote_theme: "just-the-docs/just-the-docs" aux_links: "Repository": - "https://github.com/ualberta-smr/PyMigBench/" - "Paper (Preprint)": - - "https://arxiv.org/abs/2207.01124" aux_links_new_tab: true vars: # custom variables repo: "https://github.com/ualberta-smr/PyMigBench/" diff --git a/docs/dataset.md b/docs/dataset.md index f58fc31..31f2069 100644 --- a/docs/dataset.md +++ b/docs/dataset.md @@ -2,12 +2,12 @@ nav_order: 1 --- # PyMigBench dataset -The PyMigBench dataset is in the [data]({{ site.vars.repo }}/tree/main/data){:target="_blank"} directory. +The PyMigBench dataset is in the [data]({{ site.vars.repo }}/tree/msr-2023-datatrack/data){:target="_blank"} directory. There are three types of data: analogous library pairs, valid migrations, and migration-related code changes located in respective subdirectories. Each YAML file in these subdirectories contains information about one data item. ## Library pair -* Location: [data/libpair]({{ site.vars.repo }}/tree/main/data/libpair){:target="_blank"} +* Location: [data/libpair]({{ site.vars.repo }}/tree/msr-2023-datatrack/data/libpair){:target="_blank"} ### Schema @@ -17,7 +17,7 @@ Each YAML file in these subdirectories contains information about one data item. - `domain`: the domain of the library pair ### Sample data file -Analogous library pair from flask to quart: [flask,quart.yaml]({{ site.vars.repo }}/blob/main/data/libpair/flask,quart.yaml){:target="_blank"} +Analogous library pair from flask to quart: [flask,quart.yaml]({{ site.vars.repo }}/blob/msr-2023-datatrack/data/libpair/flask,quart.yaml){:target="_blank"} ```yaml id: flask,quart source: flask @@ -26,7 +26,7 @@ domain: Development framework/extension ``` ## Migration -* Location: [data/migration]({{ site.vars.repo }}/tree/main/data/migration){:target="_blank"} +* Location: [data/migration]({{ site.vars.repo }}/tree/msr-2023-datatrack/data/migration){:target="_blank"} ### Schema - `id`: unique ID of the migration @@ -36,68 +36,33 @@ domain: Development framework/extension - `commit`: the hash of the commit where the migration happened - `pair_id`: the ID of the library pair in the migration - `commit_message` (type: multiline text): the commit message +- `commit_url`: URL of the migration commit on GitHub +- `code_changes` (type: list): the list of code changes found in this migration. + - `filepath`: the file where the code was changed + - `lines`: a list of range of line numbers where the code was changed for migration. ### Sample data file -Migration from flask to quart at commit 7ea7ddb: [7ea7ddb_flask,quart.yaml]({{ site.vars.repo }}/blob/main/data/migration/7ea7ddb_flask,quart.yaml){:target="_blank"} +Migration from flask to quart at commit 0a70f2b: [0a70f2b_flask,quart.yaml]({{ site.vars.repo }}/blob/msr-2023-datatrack/data/migration/0a70f2b_flask,quart.yaml){:target="_blank"} ```yaml -id: 7ea7ddb_flask,quart +id: 0a70f2b_flask,quart source: flask target: quart -repo: synesthesiam/voice2json -commit: 7ea7ddb8400775282e82c1adcb17b013f27ede2b +repo: pgjones/faster_than_flask_article +commit: 0a70f2bddae90da13da5bce2b77ea56355ecc5d1 pair_id: flask,quart -commit_message: Using quart for web interface -``` - -## Migration-related code change -* Location: [data/codechange]({{ site.vars.repo }}/tree/main/data/codechange){:target="_blank"}. -Additionally, [data/codefile]({{ site.vars.repo }}/tree/main/data/codefile){:target="_blank"} -contains the diffs and the old and new version of Python files modified during migrations. - -### Schema -- `id`: unique ID of the code change -- `repo`: the repository where the code change happened -- `commit`: the hash of the commit where the code change happened -- `source`: the source library -- `target`: the target library -- `pair_id`: the ID of the library pair in the code change -- `filepath`: path of the file within the repository where the code change happened -- `program_element`: the program element affected by the code change -- `cardinality`: the cardinality of the code change -- `properties` (type: array): additional properties of the code change -- `source_version_line`: the lines in the old version of the code deleted during the migration -- `target_version_line`: the lines in the new version of the code deleted during the migration - - -### Sample data file -A code change from flask to quart at commit 7ea7ddb: [80_1.yaml]({{ site.vars.repo }}/blob/main/data/codechange/80_1.yaml){:target="_blank"} -```yaml -id: '80_1' -repo: synesthesiam/voice2json -commit: 7ea7ddb8400775282e82c1adcb17b013f27ede2b -source: flask -target: quart -pair_id: flask,quart -filepath: web/app.py -program_element: import -cardinality: 1-1 -properties: -- module name change -- object name change -source_version_line: '20' -target_version_line: '20' -``` +commit_message: Quart version +commit_url: https://github.com/pgjones/faster_than_flask_article/commit/0a70f2bd +code_changes: +- filepath: app/films.py + lines: + - '1:1' +- filepath: app/run.py + lines: + - '4:5' + - '35:12' +- filepath: app/reviews.py + lines: + - '1:1' + - '8:8' -The part of the diff file showing the code change that the above YAML file represents: [synesthesiam@voice2json__7ea7ddb__web$app.py.diff]({{ site.vars.repo }}/blob/main/data/codefile/synesthesiam@voice2json__7ea7ddb__web$app.py.diff){:target="_blank"} -```diff -diff --git a/web/app.py b/web/app.py - index 6917d188b5e3fa43fce79b44d4e1ec161e1443ab..7ea7ddb8400775282e82c1adcb17b013f27ede2b 100644 - --- a/web/app.py - +++ b/web/app.py -@@ -17,15 +17,15 @@ from pathlib import Path - from typing import Optional, Dict, Any, Tuple, BinaryIO, List - - import pydash --from flask import Flask, request, render_template, send_from_directory, flash, send_file -+from quart import Quart, request, render_template, send_from_directory, flash, send_file ``` diff --git a/docs/examples.md b/docs/examples.md index 7a16366..bc44491 100644 --- a/docs/examples.md +++ b/docs/examples.md @@ -19,85 +19,37 @@ python pymigbench.py **Result:** ```yaml -count: 1 -items: - library pair: 59 migration: 157 - code change: 436 ``` -## Get count of _code changes_ and _migrations_ +## Get count of _lib pairs_ and _migrations_ **Command:** ```bash -python pymigbench.py -dt cc mg +python pymigbench.py -dt lp mg ``` **Result:** ```yaml -count: 1 -items: -- code change: 436 +- library pair: 59 migration: 157 ``` -## List all _code changes_ +## List all _migrations_ **Command:** ```bash -python pymigbench.py list -dt cc -``` - -**Result:** -```yaml -count: 436 -items: -- '100_1' -- '101_1' -- '102_1' -# (400+ items hidden for brevity) -- '98_1' -- '99_1' -- '9_1' -``` -## List all _code changes_ having _function call_ replacement -**Command:** -```bash -python pymigbench.py list -dt cc -f program_element="function call" +python pymigbench.py list -dt mg ``` **Result:** ```yaml -count: 155 -items: -- '101_1' -- '102_1' -- '104_1' -# (100+ items hidden for brevity) -- '93_1' -- '96_1' -- '97_1' -``` -## List all _code changes_ having _one-to-many_ _function call_ replacement -**Command:** -```bash -python pymigbench.py list -dt cc -f program_element="function call" cardinality="1-n" +- 002f5bd_flask,quart +- 0171fb9_pil,pillow +- 02b064b_pycryptodome,pycryptodomex +# (151 items hidden for brevity) +- f970b54_pil,pillow +- fe6b437_pil,pillow +- fe8e65d_dotenv,python-dotenv ``` -**Result:** -```yaml -count: 13 -items: -- '109_1' -- '12_1' -- '12_2' -- '175_1' -- '175_2' -- '201_1' -- '203_1' -- '204_1' -- '207_1' -- '211_1' -- '214_1' -- '96_1' -- '97_1' -``` ## Find all _migrations_ to target library _aiohttp_ **Command:** ```bash @@ -106,8 +58,6 @@ python pymigbench.py list -dt mg -f target=aiohttp **Result:** ```yaml -count: 11 -items: - 1c574c1_requests,aiohttp - 1d8923a_requests,aiohttp - 45d94dd_gcloud-aio-core,aiohttp @@ -120,73 +70,3 @@ items: - d15540f_gcloud-aio-core,aiohttp - d3a9a16_requests,aiohttp ``` - -## Get details of _code changes_ from _requests_ to _aiohttp_ having an argument change (add, delete or transform) -**Command:** -```bash -python pymigbench.py detail -dt cc -f source=requests target=aiohttp program_element="function call" properties="arg*" -``` -In this query, we use the knowledge that attribute addition, attribute deletion and attribute transformation starts with -`arg` and no other properties start with `arg`. - -**Result:** -```yaml -count: 4 -items: -- id: '201_1' - repo: raptor123471/dingolingo - commit: 1d8923abae93915ad877774e0fdc812d6c53a70b - source: requests - target: aiohttp - pair_id: requests,aiohttp - filepath: musicbot/linkutils.py - program_element: function call - cardinality: 1-n - properties: - - argument addition - - making async - source_version_line: '35' - target_version_line: 36-37 -- id: '203_1' - repo: raptor123471/dingolingo - commit: 1d8923abae93915ad877774e0fdc812d6c53a70b - source: requests - target: aiohttp - pair_id: requests,aiohttp - filepath: musicbot/linkutils.py - program_element: function call - cardinality: 1-n - properties: - - argument transformation - - making async - source_version_line: '98' - target_version_line: 100-101 -- id: '216_1' - repo: ictu/quality-time - commit: d3a9a16a72348cece48c9788cf10db6cc043ec7c - source: requests - target: aiohttp - pair_id: requests,aiohttp - filepath: components/collector/src/base_collectors/source_collector.py - program_element: function call - cardinality: 1-1 - properties: - - argument deletion - - argument transformation - source_version_line: '106' - target_version_line: '101' -- id: '222_1' - repo: ictu/quality-time - commit: d3a9a16a72348cece48c9788cf10db6cc043ec7c - source: requests - target: aiohttp - pair_id: requests,aiohttp - filepath: components/collector/src/source_collectors/api_source_collectors/azure_devops.py - program_element: function call - cardinality: 1-1 - properties: - - argument deletion - - making await - source_version_line: '31' - target_version_line: '31' -``` diff --git a/docs/index.md b/docs/index.md index c5658cd..198f716 100644 --- a/docs/index.md +++ b/docs/index.md @@ -3,34 +3,21 @@ layout: home nav_order: 0 --- # Overview -Library migration is the process of replacing one library with another in a client project. -_PyMigBench_ is a benchmark of Python Library Migration that we have developed in the paper: -> Mohayeminul Islam, Ajay Kumar Jha, Sarah Nadi. -> PyMigBench and PyMigTax: A Benchmark and Taxonomy for Python Library Migration. -> _Empirical Software Engineering (Under Review)_. - -Other than the benchmark, we have also developed _PyMigTax_, -a taxonomy of the migration related code changes that we have included in PyMigBench. -An overview of the construction process of PyMigBench is shown in the figure below. -The white boxes indicate automatic steps while grey boxes indicate manual steps. -The output of steps 4 and 5 constitute PyMigBench and we use output of step 5 to build PyMigTax. -Please read the [preprint version of the paper](https://arxiv.org/abs/2207.01124){:target="_blank"} to learn more about PyMigBench and PyMigTax. - -![PyMigBench construction process](img/img-construction.svg "PyMigBench construction process") - -The [PyMigBench repository]({{site.vars.repo}}){:target="_blank"} contains the benchmark data and the tool to explore the data. +_PyMigBench_ is a benchmark of Python Library Migrations. +This website contains the information about the benchmark and the documentation of the tool that a user can use to explore the data. +The [PyMigBench repository]({{site.vars.repo}}){:target="_blank"} contains the data and the source code of the tool. ## Dataset -The PyMigBench dataset is in the [data]({{ site.vars.repo }}/tree/main/data){:target="_blank"} folder. There are three main types of data: -analogous library pairs, migrations and migration-related code changes. +The PyMigBench dataset is in the [data]({{ site.vars.repo }}/tree/msr-2023-datatrack/data){:target="_blank"} folder. There are two types of data: +analogous library pairs and migrations. Details about the dataset is in the [dataset](dataset) page. ## Tool We provide a command line tool to easily access the dataset. -The source code of the tool is in the [code]({{ site.vars.repo }}/tree/main/code){:target="_blank"} folder. +The source code of the tool is in the [code]({{ site.vars.repo }}/tree/msr-2023-datatrack/code){:target="_blank"} folder. The installation process and the syntax of the tool is in the [tool](tool) page. The [examples](examples) page contains some use cases of the tool. ## Contributing If you have some Python library migration data and would like to add them to PyMigBench, submit it to us and we will review and add it. -Please check the [contributor's guide]({{site.vars.repo}}//blob/main/CONTRIBUTING.md){:target="_blank"} for help. +Please check the [contributor's guide]({{site.vars.repo}}//blob/msr-2023-datatrack/CONTRIBUTING.md){:target="_blank"} for help. diff --git a/docs/tool.md b/docs/tool.md index f33ddab..a3adff0 100644 --- a/docs/tool.md +++ b/docs/tool.md @@ -3,12 +3,12 @@ nav_order: 2 --- # PyMigBench tool The repository contains a command line tool to easily query the benchmark. -The source code of the tool is in the [code]({{ site.vars.repo }}/tree/main/code){:target="_blank"} folder. +The source code of the tool is in the [code]({{ site.vars.repo }}/tree/msr-2023-datatrack/code){:target="_blank"} folder. ## Install 1. Install Python from [here](https://www.python.org/). We developed the tool in Python 3.10.0, but a later version should also work. -2. Clone the [repository]({{site.vars.repo}}){:target="_blank"}. Alternatively, -[download the zip](https://github.com/ualberta-smr/PyMigBench/archive/refs/heads/main.zip) +2. Clone the [repository]({{site.vars.repo}}){:target="_blank"} and checkout to `msr-2023-datatrack` branch. Alternatively, +[download the zip](https://github.com/ualberta-smr/PyMigBench/archive/refs/heads/msr-2023-datatrack.zip) and extract it. 1. Open a terminal and change the directory to the `code` folder. This is the folder where you will find a `requirements.txt` file. @@ -16,11 +16,8 @@ This is the folder where you will find a `requirements.txt` file. If there is no error, run `python pymigbench.py` to check if it is working. You should see the following output: ```yaml -count: 1 -items: - library pair: 59 migration: 157 - code change: 436 ``` ## Query PyMigBench @@ -35,7 +32,7 @@ python pymigbench.py -dt -f -o - `list` returns the list if IDs. - `detail` returns the a list of data items that include all of its properties. * `-d`, `-dt`, `--data-types`: Specifies the data types on which to query. - It has four options: `all`, `lp` or `library-pair`, `mg` or `migration`, `cc` or `code-change`. + It has three options: `all`, `lp` or `library-pair`, `mg` or `migration`. A `count` query allows multiple data types and `all` is default. The other queries accept just one mandatory data type, no defaults. * `-f`, `--filters`: You can pass zero or more filters to all queries. @@ -43,7 +40,7 @@ Each filter must be in the format `=`. Here, `property` is a property of a data type. Please check the [property values](#property) section below for a list of frequently used properties and their possible values. Check the [dataset](dataset) page for the full schema of the dataset. -The properties are of type string or array of string. +The properties are of type string, list of string, or list of objects. The `value` is therefore any string that will be matched against the property. The value accepts matching by `!`, `?` and `*` through [fnmatch.fnmatch](https://docs.python.org/3/library/fnmatch.html#fnmatch.fnmatch){:target="_blank"}. For array type properties, a data is returned if at least one of the list item satisfies the filter. @@ -55,31 +52,7 @@ Feel free to [ask for help](https://github.com/ualberta-smr/PyMigBench/issues/ne ## Property values -1. `program_element` - - attribute access - - decorator - - function call - - import -2. `cardinality` - - 1-1 - - 1-n - - n-1 - - n-n -3. `properties` (array type) - - *empty array*. Specify using an empty string (`properties=""`) in filter. - - argument addition - - argument deletion - - argument transformation - - attribute name change - - changing to method call - - decorator name change - - full statement replacement - - function name change - - making async - - making await - - module name change - - object name change -4. `repo` +1. `repo` - agdsn/sipa - alice-biometrics/petisco - apryor6/flaskerize @@ -137,7 +110,7 @@ Feel free to [ask for help](https://github.com/ualberta-smr/PyMigBench/issues/ne - weasyl/weasyl - ziirish/burp-ui - zulip/python-zulip-api -5. `source`/`target` +2. `source`/`target` - aiohttp - argparse - bcrypt