1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 786 787 788 789 790 791 792 793 794 795 796 797 798 799 800 801 802 803 804 805 806 807 808 809 810 811 812 813 814 815 816 817 818 819 820 821 822 823 824 825 826 827 828 829 830 831 832 833 834 835 836 837 838 839 840 841 842 843 844 845 846 847 848 849 850 851 852 853 854 855 856 857 858 859 860 861 862 863 864 865 866 867 868 869 870 871 872 873 874 875 876 877 878 879 880 881 882 883 884 885 886 887 888 889 890 891 892 893 894 895 896 897 898 899 900 901 902 903 904 905 906 907 908 909 910 911 912 913 914 915 916 917 918 919 920 921 922 923 924 925 926 927 928 929 930 931 932 933 934 935 936 937 938 939 940 941 942 943 944 945 946 947 948 949 950 951 952 953 954 955 956 957 958 959 960 961 962 963 964 965 966 967 968 969 970 971 972 973 974 975 976 977 978 979 980 981 982 983 984 985 986 987 988 989 990 991 992 993 994 995 996 997 998 999 1000 1001 1002 1003 1004 1005 1006 1007 1008 1009 1010 1011 1012 1013 1014 1015 1016 1017 1018 1019 1020 1021 1022 1023 1024 1025 1026 1027 1028 1029 1030 1031 1032 1033 1034 1035 1036 1037 1038 1039 1040 1041 1042 1043 1044 1045 1046 1047 1048 1049 1050 1051 1052 1053 1054 1055 1056 1057 1058 1059 1060 1061 1062 1063 1064 1065 1066 1067 1068 1069 1070 1071 1072 1073 1074 1075 1076 1077 1078 1079 1080 1081 1082 1083 1084 1085 1086 1087 1088 1089 1090 1091 1092 1093 1094 1095 1096 1097 1098 1099 1100 1101 1102 1103 1104 1105 1106 1107 1108 1109 1110 1111 1112 1113 1114 1115 1116 1117 1118 1119 1120 1121 1122 1123 1124 1125 1126 1127 1128 1129 1130 1131 1132 1133 1134 1135 1136 1137 1138 1139 1140 1141 1142 1143 1144 1145 1146 1147 1148 1149 1150 1151 1152 1153 1154 1155 1156 1157 1158 1159 1160 1161 1162 1163 1164 1165 1166 1167 1168 1169 1170 1171 1172 1173 1174 1175 1176 1177 1178 1179 1180 1181 1182 1183 1184 1185 1186 1187 1188 1189 1190 1191 1192 1193 1194 1195 1196 1197 1198 1199 1200 1201 1202 1203 1204 1205 1206 1207 1208 1209 1210 1211 1212 1213 1214 1215 1216 1217 1218 1219 1220 1221 1222 1223 1224 1225 1226 1227 1228 1229 1230 1231 1232 1233 1234 1235 1236 1237 1238 1239 1240 1241 1242 1243 1244 1245 1246 1247 1248 1249 1250 1251 1252 1253 1254 1255 1256 1257 1258 1259 1260 1261 1262 1263 1264 1265 1266 1267 1268 1269 1270 1271 1272 1273 1274 1275 1276 1277 1278 1279 1280 1281 1282 1283 1284 1285 1286 1287 1288 1289 1290 1291 1292 1293 1294 1295 1296 1297 1298 1299 1300 1301 1302 1303 1304 1305 1306 1307 1308 1309 1310 1311 1312 1313 1314 1315 1316 1317 1318 1319 1320 1321 1322 1323 1324 1325 1326 1327 1328 1329 1330 1331 1332 1333 1334 1335 1336 1337 1338 1339 1340 1341 1342 1343 1344 1345 1346 1347 1348 1349 1350 1351 1352 1353 1354 1355 1356 1357 1358 1359 1360 1361 1362 1363 1364 1365 1366 1367 1368 1369 1370 1371 1372 1373 1374 1375 1376 1377 1378 1379 1380 1381 1382 1383 1384 1385 1386 1387 1388 1389 1390 1391 1392 1393 1394 1395 1396 1397 1398 1399 1400 1401 1402 1403 1404 1405 1406 1407 1408 1409 1410 1411 1412 1413 1414 1415 1416 1417 1418 1419 1420 1421 1422 1423 1424 1425 1426 1427 1428 1429 1430 1431 1432 1433 1434 1435 1436 1437 1438 1439 1440 1441 1442 1443 1444 1445 1446 1447 1448 1449 1450 1451 1452 1453 1454 1455 1456 1457 1458 1459 1460 1461 1462 1463 1464 1465 1466 1467 1468 1469 1470 1471 1472 1473 1474 1475 1476 1477 1478 1479 1480 1481 1482 1483 1484 1485 1486 1487 1488 1489 1490 1491 1492 1493 1494 1495 1496 1497 1498 1499 1500 1501 1502 1503 1504 1505 1506 1507 1508 1509 1510 1511 1512 1513 1514 1515 1516 1517 1518 1519 1520 1521 1522 1523 1524 1525 1526 1527 1528 1529 1530 1531 1532 1533 1534 1535 1536 1537 1538 1539 1540 1541 1542 1543 1544 1545 1546 1547 1548 1549 1550 1551 1552 1553 1554 1555 1556 1557 1558 1559 1560 1561 1562 1563 1564 1565 1566 1567 1568 1569 1570 1571 1572 1573 1574 1575 1576 1577 1578 1579 1580 1581 1582 1583 1584 1585 1586 1587 1588 1589 1590 1591 1592 1593 1594 1595 1596 1597 1598 1599 1600 1601 1602 1603 1604 1605 1606 1607 1608 1609 1610 1611 1612 1613 1614 1615 1616 1617 1618 1619 1620 1621 1622 1623 1624 1625 1626 1627 1628 1629 1630 1631 1632 1633 1634 1635 1636 1637 1638 1639 1640 1641 1642 1643 1644 1645 1646 1647 1648 1649 1650 1651 1652 1653 1654 1655 1656 1657 1658 1659 1660 1661 1662 1663 1664 1665 1666 1667 1668 1669 1670 1671 1672 1673 1674 1675 1676 1677 1678 1679 1680 1681 1682 1683 1684 1685 1686 1687 1688 1689 1690 1691 1692 1693 1694 1695 1696 1697 1698 1699 1700 1701 1702
|
# Changelog
## [v0.69.4](https://github.com/materialsproject/maggma/tree/v0.69.4) (2024-09-29)
[Full Changelog](https://github.com/materialsproject/maggma/compare/v0.69.3...v0.69.4)
**Closed issues:**
- \[Feature Request\]: Support numpy 2.0 [\#990](https://github.com/materialsproject/maggma/issues/990)
**Merged pull requests:**
- clarify state of open data stores [\#997](https://github.com/materialsproject/maggma/pull/997) ([kbuma](https://github.com/kbuma))
- add python 3.12 to CI tests [\#992](https://github.com/materialsproject/maggma/pull/992) ([rkingsbury](https://github.com/rkingsbury))
## [v0.69.3](https://github.com/materialsproject/maggma/tree/v0.69.3) (2024-08-23)
[Full Changelog](https://github.com/materialsproject/maggma/compare/v0.69.2...v0.69.3)
## [v0.69.2](https://github.com/materialsproject/maggma/tree/v0.69.2) (2024-08-16)
[Full Changelog](https://github.com/materialsproject/maggma/compare/v0.69.1...v0.69.2)
**Merged pull requests:**
- capability to configure query on request [\#985](https://github.com/materialsproject/maggma/pull/985) ([yang-ruoxi](https://github.com/yang-ruoxi))
- Automated dependency upgrades [\#983](https://github.com/materialsproject/maggma/pull/983) ([github-actions[bot]](https://github.com/apps/github-actions))
## [v0.69.1](https://github.com/materialsproject/maggma/tree/v0.69.1) (2024-07-24)
[Full Changelog](https://github.com/materialsproject/maggma/compare/v0.69.0...v0.69.1)
## [v0.69.0](https://github.com/materialsproject/maggma/tree/v0.69.0) (2024-07-01)
[Full Changelog](https://github.com/materialsproject/maggma/compare/v0.68.6...v0.69.0)
**Closed issues:**
- \[Feature Request\]: Leverage optional dependency groups to reduce dependency count [\#928](https://github.com/materialsproject/maggma/issues/928)
- Update README/docs to better reflect the purpose of Maggma [\#886](https://github.com/materialsproject/maggma/issues/886)
**Merged pull requests:**
- Store Documentation update [\#976](https://github.com/materialsproject/maggma/pull/976) ([rkingsbury](https://github.com/rkingsbury))
- Add content to README; documentation fixups [\#969](https://github.com/materialsproject/maggma/pull/969) ([rkingsbury](https://github.com/rkingsbury))
- Automated dependency upgrades [\#965](https://github.com/materialsproject/maggma/pull/965) ([github-actions[bot]](https://github.com/apps/github-actions))
## [v0.68.6](https://github.com/materialsproject/maggma/tree/v0.68.6) (2024-06-20)
[Full Changelog](https://github.com/materialsproject/maggma/compare/v0.68.5...v0.68.6)
**Merged pull requests:**
- move API to optional dependency group; move OpenData to default installation [\#970](https://github.com/materialsproject/maggma/pull/970) ([rkingsbury](https://github.com/rkingsbury))
## [v0.68.5](https://github.com/materialsproject/maggma/tree/v0.68.5) (2024-06-20)
[Full Changelog](https://github.com/materialsproject/maggma/compare/v0.68.4...v0.68.5)
**Merged pull requests:**
- mv mongogrant to optional dependency group [\#968](https://github.com/materialsproject/maggma/pull/968) ([rkingsbury](https://github.com/rkingsbury))
## [v0.68.4](https://github.com/materialsproject/maggma/tree/v0.68.4) (2024-06-11)
[Full Changelog](https://github.com/materialsproject/maggma/compare/v0.68.3...v0.68.4)
## [v0.68.3](https://github.com/materialsproject/maggma/tree/v0.68.3) (2024-06-11)
[Full Changelog](https://github.com/materialsproject/maggma/compare/v0.68.2...v0.68.3)
**Merged pull requests:**
- Bugfix in sorting query operator [\#964](https://github.com/materialsproject/maggma/pull/964) ([munrojm](https://github.com/munrojm))
## [v0.68.2](https://github.com/materialsproject/maggma/tree/v0.68.2) (2024-06-05)
[Full Changelog](https://github.com/materialsproject/maggma/compare/v0.68.1...v0.68.2)
## [v0.68.1](https://github.com/materialsproject/maggma/tree/v0.68.1) (2024-05-30)
[Full Changelog](https://github.com/materialsproject/maggma/compare/v0.68.0...v0.68.1)
**Merged pull requests:**
- Handle store error during finalize [\#958](https://github.com/materialsproject/maggma/pull/958) ([jmmshn](https://github.com/jmmshn))
## [v0.68.0](https://github.com/materialsproject/maggma/tree/v0.68.0) (2024-05-27)
[Full Changelog](https://github.com/materialsproject/maggma/compare/v0.67.0...v0.68.0)
**Breaking changes:**
- drop python 3.8 support [\#951](https://github.com/materialsproject/maggma/pull/951) ([rkingsbury](https://github.com/rkingsbury))
**Implemented enhancements:**
- \[Feature Request\]: pass keyword arguments to zopen to accommodate non english platforms [\#932](https://github.com/materialsproject/maggma/issues/932)
**Merged pull requests:**
- Add support for python 3.12 to CI [\#954](https://github.com/materialsproject/maggma/pull/954) ([rkingsbury](https://github.com/rkingsbury))
- merge setup.py into pyproject.toml [\#952](https://github.com/materialsproject/maggma/pull/952) ([rkingsbury](https://github.com/rkingsbury))
## [v0.67.0](https://github.com/materialsproject/maggma/tree/v0.67.0) (2024-05-13)
[Full Changelog](https://github.com/materialsproject/maggma/compare/v0.66.0...v0.67.0)
**Implemented enhancements:**
- Add character encoding kwarg to JSONStore and FileStore [\#949](https://github.com/materialsproject/maggma/pull/949) ([rkingsbury](https://github.com/rkingsbury))
## [v0.66.0](https://github.com/materialsproject/maggma/tree/v0.66.0) (2024-04-30)
[Full Changelog](https://github.com/materialsproject/maggma/compare/v0.65.0...v0.66.0)
**Merged pull requests:**
- Add config option to sort query op [\#944](https://github.com/materialsproject/maggma/pull/944) ([munrojm](https://github.com/munrojm))
## [v0.65.0](https://github.com/materialsproject/maggma/tree/v0.65.0) (2024-04-18)
[Full Changelog](https://github.com/materialsproject/maggma/compare/v0.64.1...v0.65.0)
**Closed issues:**
- \[Feature Request\]: support ruamel.yaml 0.18+ [\#938](https://github.com/materialsproject/maggma/issues/938)
**Merged pull requests:**
- Adding store support for tasks stored in open data [\#943](https://github.com/materialsproject/maggma/pull/943) ([kbuma](https://github.com/kbuma))
- allow HEAD method for `/heartbeat` [\#874](https://github.com/materialsproject/maggma/pull/874) ([tschaume](https://github.com/tschaume))
## [v0.64.1](https://github.com/materialsproject/maggma/tree/v0.64.1) (2024-04-16)
[Full Changelog](https://github.com/materialsproject/maggma/compare/v0.64.0...v0.64.1)
## [v0.64.0](https://github.com/materialsproject/maggma/tree/v0.64.0) (2024-03-17)
[Full Changelog](https://github.com/materialsproject/maggma/compare/v0.63.4...v0.64.0)
**Implemented enhancements:**
- Enable `recursive_msonable` in `jsanitize` calls [\#930](https://github.com/materialsproject/maggma/pull/930) ([Andrew-S-Rosen](https://github.com/Andrew-S-Rosen))
## [v0.63.4](https://github.com/materialsproject/maggma/tree/v0.63.4) (2024-02-29)
[Full Changelog](https://github.com/materialsproject/maggma/compare/v0.63.3...v0.63.4)
**Merged pull requests:**
- write all NaN and NaT Dataframe created values as null [\#929](https://github.com/materialsproject/maggma/pull/929) ([kbuma](https://github.com/kbuma))
## [v0.63.3](https://github.com/materialsproject/maggma/tree/v0.63.3) (2024-02-21)
[Full Changelog](https://github.com/materialsproject/maggma/compare/v0.63.2...v0.63.3)
**Implemented enhancements:**
- Tweak docstrings to fix rendered docs [\#923](https://github.com/materialsproject/maggma/pull/923) ([ml-evs](https://github.com/ml-evs))
## [v0.63.2](https://github.com/materialsproject/maggma/tree/v0.63.2) (2024-02-16)
[Full Changelog](https://github.com/materialsproject/maggma/compare/v0.63.1...v0.63.2)
**Merged pull requests:**
- enables using more efficient queries for count, distinct and newer\_in [\#921](https://github.com/materialsproject/maggma/pull/921) ([kbuma](https://github.com/kbuma))
## [v0.63.1](https://github.com/materialsproject/maggma/tree/v0.63.1) (2024-02-14)
[Full Changelog](https://github.com/materialsproject/maggma/compare/v0.63.0...v0.63.1)
**Merged pull requests:**
- fix open data store connect and close and address future warnings for pandas [\#920](https://github.com/materialsproject/maggma/pull/920) ([kbuma](https://github.com/kbuma))
## [v0.63.0](https://github.com/materialsproject/maggma/tree/v0.63.0) (2024-02-13)
[Full Changelog](https://github.com/materialsproject/maggma/compare/v0.62.1...v0.63.0)
**Merged pull requests:**
- open data refactor for integration with builders [\#919](https://github.com/materialsproject/maggma/pull/919) ([kbuma](https://github.com/kbuma))
## [v0.62.1](https://github.com/materialsproject/maggma/tree/v0.62.1) (2024-02-05)
[Full Changelog](https://github.com/materialsproject/maggma/compare/v0.62.0...v0.62.1)
**Merged pull requests:**
- chunking for json normalization [\#914](https://github.com/materialsproject/maggma/pull/914) ([kbuma](https://github.com/kbuma))
## [v0.62.0](https://github.com/materialsproject/maggma/tree/v0.62.0) (2024-02-02)
[Full Changelog](https://github.com/materialsproject/maggma/compare/v0.61.1...v0.62.0)
**Merged pull requests:**
- updating for open data format change [\#911](https://github.com/materialsproject/maggma/pull/911) ([kbuma](https://github.com/kbuma))
## [v0.61.1](https://github.com/materialsproject/maggma/tree/v0.61.1) (2024-01-30)
[Full Changelog](https://github.com/materialsproject/maggma/compare/v0.61.0...v0.61.1)
**Merged pull requests:**
- Make get by key default false [\#910](https://github.com/materialsproject/maggma/pull/910) ([munrojm](https://github.com/munrojm))
## [v0.61.0](https://github.com/materialsproject/maggma/tree/v0.61.0) (2024-01-19)
[Full Changelog](https://github.com/materialsproject/maggma/compare/v0.60.2...v0.61.0)
**Closed issues:**
- `DeprecationWarning` associated with `pkg_resources` [\#903](https://github.com/materialsproject/maggma/issues/903)
**Merged pull requests:**
- creating PandasMemoryStore for use by OpenDataStore [\#908](https://github.com/materialsproject/maggma/pull/908) ([kbuma](https://github.com/kbuma))
## [v0.60.2](https://github.com/materialsproject/maggma/tree/v0.60.2) (2024-01-05)
[Full Changelog](https://github.com/materialsproject/maggma/compare/v0.60.1...v0.60.2)
**Merged pull requests:**
- rm deprecated pkg\_resources [\#905](https://github.com/materialsproject/maggma/pull/905) ([rkingsbury](https://github.com/rkingsbury))
## [v0.60.1](https://github.com/materialsproject/maggma/tree/v0.60.1) (2024-01-05)
[Full Changelog](https://github.com/materialsproject/maggma/compare/v0.60.0...v0.60.1)
**Implemented enhancements:**
- Patch s3 kwarg [\#900](https://github.com/materialsproject/maggma/pull/900) ([jmmshn](https://github.com/jmmshn))
**Merged pull requests:**
- special casing for thermo, xas and synth\_descriptions collections in OpenData [\#904](https://github.com/materialsproject/maggma/pull/904) ([kbuma](https://github.com/kbuma))
- linting fixes [\#901](https://github.com/materialsproject/maggma/pull/901) ([jmmshn](https://github.com/jmmshn))
## [v0.60.0](https://github.com/materialsproject/maggma/tree/v0.60.0) (2023-12-15)
[Full Changelog](https://github.com/materialsproject/maggma/compare/v0.59.0...v0.60.0)
**Merged pull requests:**
- fixing OpenDataStore to pickle correctly [\#897](https://github.com/materialsproject/maggma/pull/897) ([kbuma](https://github.com/kbuma))
## [v0.59.0](https://github.com/materialsproject/maggma/tree/v0.59.0) (2023-12-11)
[Full Changelog](https://github.com/materialsproject/maggma/compare/v0.58.0...v0.59.0)
**Merged pull requests:**
- Enhancement/open data store [\#893](https://github.com/materialsproject/maggma/pull/893) ([kbuma](https://github.com/kbuma))
## [v0.58.0](https://github.com/materialsproject/maggma/tree/v0.58.0) (2023-11-21)
[Full Changelog](https://github.com/materialsproject/maggma/compare/v0.57.10...v0.58.0)
**Implemented enhancements:**
- SSH tunnel support for S3Store [\#882](https://github.com/materialsproject/maggma/pull/882) ([mjwen](https://github.com/mjwen))
**Merged pull requests:**
- update package metadata in pyproject.toml [\#892](https://github.com/materialsproject/maggma/pull/892) ([rkingsbury](https://github.com/rkingsbury))
## [v0.57.10](https://github.com/materialsproject/maggma/tree/v0.57.10) (2023-11-17)
[Full Changelog](https://github.com/materialsproject/maggma/compare/v0.57.9...v0.57.10)
**Merged pull requests:**
- Remove key from sorting by default [\#890](https://github.com/materialsproject/maggma/pull/890) ([munrojm](https://github.com/munrojm))
## [v0.57.9](https://github.com/materialsproject/maggma/tree/v0.57.9) (2023-11-16)
[Full Changelog](https://github.com/materialsproject/maggma/compare/v0.57.8...v0.57.9)
**Merged pull requests:**
- Remove hint in count for S3Store [\#888](https://github.com/materialsproject/maggma/pull/888) ([munrojm](https://github.com/munrojm))
- Add missing `MontyStore` to list of stores [\#887](https://github.com/materialsproject/maggma/pull/887) ([Andrew-S-Rosen](https://github.com/Andrew-S-Rosen))
## [v0.57.8](https://github.com/materialsproject/maggma/tree/v0.57.8) (2023-11-09)
[Full Changelog](https://github.com/materialsproject/maggma/compare/v0.57.7...v0.57.8)
**Merged pull requests:**
- Fix aggregation pipeline kwargs [\#884](https://github.com/materialsproject/maggma/pull/884) ([munrojm](https://github.com/munrojm))
## [v0.57.7](https://github.com/materialsproject/maggma/tree/v0.57.7) (2023-11-07)
[Full Changelog](https://github.com/materialsproject/maggma/compare/v0.57.6...v0.57.7)
**Merged pull requests:**
- Update hint\_scheme [\#883](https://github.com/materialsproject/maggma/pull/883) ([munrojm](https://github.com/munrojm))
## [v0.57.6](https://github.com/materialsproject/maggma/tree/v0.57.6) (2023-11-07)
[Full Changelog](https://github.com/materialsproject/maggma/compare/v0.57.5...v0.57.6)
**Merged pull requests:**
- Ensure sort stage is after match in agg pipeline [\#881](https://github.com/materialsproject/maggma/pull/881) ([munrojm](https://github.com/munrojm))
## [v0.57.5](https://github.com/materialsproject/maggma/tree/v0.57.5) (2023-11-04)
[Full Changelog](https://github.com/materialsproject/maggma/compare/v0.57.4...v0.57.5)
**Implemented enhancements:**
- Store.connect: fix force\_reset kwarg implementations [\#879](https://github.com/materialsproject/maggma/pull/879) ([rkingsbury](https://github.com/rkingsbury))
**Merged pull requests:**
- chore: fix typos [\#877](https://github.com/materialsproject/maggma/pull/877) ([e-kwsm](https://github.com/e-kwsm))
- Automated dependency upgrades [\#875](https://github.com/materialsproject/maggma/pull/875) ([github-actions[bot]](https://github.com/apps/github-actions))
## [v0.57.4](https://github.com/materialsproject/maggma/tree/v0.57.4) (2023-10-13)
[Full Changelog](https://github.com/materialsproject/maggma/compare/v0.57.3...v0.57.4)
**Merged pull requests:**
- Fix header processing with enabled validation [\#871](https://github.com/materialsproject/maggma/pull/871) ([munrojm](https://github.com/munrojm))
## [v0.57.3](https://github.com/materialsproject/maggma/tree/v0.57.3) (2023-10-12)
[Full Changelog](https://github.com/materialsproject/maggma/compare/v0.57.2...v0.57.3)
**Merged pull requests:**
- Ensure header processor alters the correct object [\#870](https://github.com/materialsproject/maggma/pull/870) ([munrojm](https://github.com/munrojm))
## [v0.57.2](https://github.com/materialsproject/maggma/tree/v0.57.2) (2023-10-09)
[Full Changelog](https://github.com/materialsproject/maggma/compare/v0.57.1...v0.57.2)
**Closed issues:**
- \[Feature Request\]: Is there a specific reason why pyzmq is fixed to 24.0.1 rather than supporting more recent versions ? [\#867](https://github.com/materialsproject/maggma/issues/867)
**Merged pull requests:**
- Remove generic model reference [\#869](https://github.com/materialsproject/maggma/pull/869) ([munrojm](https://github.com/munrojm))
- Automated dependency upgrades [\#868](https://github.com/materialsproject/maggma/pull/868) ([github-actions[bot]](https://github.com/apps/github-actions))
## [v0.57.1](https://github.com/materialsproject/maggma/tree/v0.57.1) (2023-10-05)
[Full Changelog](https://github.com/materialsproject/maggma/compare/v0.57.0...v0.57.1)
**Closed issues:**
- Support for Pydantic 2 [\#858](https://github.com/materialsproject/maggma/issues/858)
## [v0.57.0](https://github.com/materialsproject/maggma/tree/v0.57.0) (2023-09-26)
[Full Changelog](https://github.com/materialsproject/maggma/compare/v0.56.0...v0.57.0)
**Merged pull requests:**
- Pydantic 2.0 [\#865](https://github.com/materialsproject/maggma/pull/865) ([munrojm](https://github.com/munrojm))
- Revert "Automated dependency upgrades" [\#862](https://github.com/materialsproject/maggma/pull/862) ([rkingsbury](https://github.com/rkingsbury))
- CI: add changelog template and prevent duplicate GH Action releases [\#861](https://github.com/materialsproject/maggma/pull/861) ([rkingsbury](https://github.com/rkingsbury))
- Automated dependency upgrades [\#860](https://github.com/materialsproject/maggma/pull/860) ([github-actions[bot]](https://github.com/apps/github-actions))
- Update @arosen93 to @Andrew-S-Rosen [\#859](https://github.com/materialsproject/maggma/pull/859) ([Andrew-S-Rosen](https://github.com/Andrew-S-Rosen))
## [v0.56.0](https://github.com/materialsproject/maggma/tree/v0.56.0) (2023-09-06)
[Full Changelog](https://github.com/materialsproject/maggma/compare/v0.55.0...v0.56.0)
## [v0.55.0](https://github.com/materialsproject/maggma/tree/v0.55.0) (2023-09-06)
[Full Changelog](https://github.com/materialsproject/maggma/compare/v0.54.0...v0.55.0)
**Closed issues:**
- Would the maggma docs be a good place to host MongoDB setup instructions? [\#845](https://github.com/materialsproject/maggma/issues/845)
**Merged pull requests:**
- Automated dependency upgrades [\#856](https://github.com/materialsproject/maggma/pull/856) ([github-actions[bot]](https://github.com/apps/github-actions))
- migrate dependencies to setup.py and update CI config [\#855](https://github.com/materialsproject/maggma/pull/855) ([rkingsbury](https://github.com/rkingsbury))
- Automated dependency upgrades [\#854](https://github.com/materialsproject/maggma/pull/854) ([github-actions[bot]](https://github.com/apps/github-actions))
- Fix broken link in README.md [\#853](https://github.com/materialsproject/maggma/pull/853) ([Andrew-S-Rosen](https://github.com/Andrew-S-Rosen))
- Create dependabot.yml to update GitHub actions packages [\#852](https://github.com/materialsproject/maggma/pull/852) ([Andrew-S-Rosen](https://github.com/Andrew-S-Rosen))
- Remove tests for Python 3.7 since it reached its end-of-life [\#851](https://github.com/materialsproject/maggma/pull/851) ([Andrew-S-Rosen](https://github.com/Andrew-S-Rosen))
- Update CI pipeline so repeated commits don't cause concurrent tests [\#850](https://github.com/materialsproject/maggma/pull/850) ([Andrew-S-Rosen](https://github.com/Andrew-S-Rosen))
- Add a "Setting up MongoDB" guide to the docs and update README [\#849](https://github.com/materialsproject/maggma/pull/849) ([Andrew-S-Rosen](https://github.com/Andrew-S-Rosen))
- CI: use OS-specific requirements in testing [\#841](https://github.com/materialsproject/maggma/pull/841) ([rkingsbury](https://github.com/rkingsbury))
## [v0.54.0](https://github.com/materialsproject/maggma/tree/v0.54.0) (2023-08-29)
[Full Changelog](https://github.com/materialsproject/maggma/compare/v0.53.1...v0.54.0)
**Merged pull requests:**
- Automated dependency upgrades [\#848](https://github.com/materialsproject/maggma/pull/848) ([github-actions[bot]](https://github.com/apps/github-actions))
- JSONStore: enabled reading of MongoDB extended JSON files [\#847](https://github.com/materialsproject/maggma/pull/847) ([rkingsbury](https://github.com/rkingsbury))
- Automated dependency upgrades [\#844](https://github.com/materialsproject/maggma/pull/844) ([github-actions[bot]](https://github.com/apps/github-actions))
## [v0.53.1](https://github.com/materialsproject/maggma/tree/v0.53.1) (2023-08-15)
[Full Changelog](https://github.com/materialsproject/maggma/compare/v0.53.0...v0.53.1)
**Merged pull requests:**
- Aws store botocore fix [\#843](https://github.com/materialsproject/maggma/pull/843) ([tsmathis](https://github.com/tsmathis))
- Automated dependency upgrades [\#842](https://github.com/materialsproject/maggma/pull/842) ([github-actions[bot]](https://github.com/apps/github-actions))
- CI: small update to auto dependency workflow [\#840](https://github.com/materialsproject/maggma/pull/840) ([rkingsbury](https://github.com/rkingsbury))
- Automated dependency upgrades [\#839](https://github.com/materialsproject/maggma/pull/839) ([github-actions[bot]](https://github.com/apps/github-actions))
## [v0.53.0](https://github.com/materialsproject/maggma/tree/v0.53.0) (2023-08-02)
[Full Changelog](https://github.com/materialsproject/maggma/compare/v0.52.1...v0.53.0)
**Merged pull requests:**
- allow \>5GB and turn on multi-part uploads for AWS [\#829](https://github.com/materialsproject/maggma/pull/829) ([kbuma](https://github.com/kbuma))
## [v0.52.1](https://github.com/materialsproject/maggma/tree/v0.52.1) (2023-08-02)
[Full Changelog](https://github.com/materialsproject/maggma/compare/v0.52.2...v0.52.1)
## [v0.52.2](https://github.com/materialsproject/maggma/tree/v0.52.2) (2023-08-02)
[Full Changelog](https://github.com/materialsproject/maggma/compare/v0.52.0...v0.52.2)
**Merged pull requests:**
- Allow maggma to be used without Azure [\#837](https://github.com/materialsproject/maggma/pull/837) ([jmmshn](https://github.com/jmmshn))
- rm merge-me action [\#836](https://github.com/materialsproject/maggma/pull/836) ([rkingsbury](https://github.com/rkingsbury))
- Automated dependency upgrades [\#835](https://github.com/materialsproject/maggma/pull/835) ([rkingsbury](https://github.com/rkingsbury))
## [v0.52.0](https://github.com/materialsproject/maggma/tree/v0.52.0) (2023-07-31)
[Full Changelog](https://github.com/materialsproject/maggma/compare/v0.51.25...v0.52.0)
## [v0.51.25](https://github.com/materialsproject/maggma/tree/v0.51.25) (2023-07-27)
[Full Changelog](https://github.com/materialsproject/maggma/compare/v0.51.24...v0.51.25)
**Merged pull requests:**
- Some cleanup: `isort`, updated classifiers, remove unused kwarg [\#833](https://github.com/materialsproject/maggma/pull/833) ([Andrew-S-Rosen](https://github.com/Andrew-S-Rosen))
## [v0.51.24](https://github.com/materialsproject/maggma/tree/v0.51.24) (2023-07-21)
[Full Changelog](https://github.com/materialsproject/maggma/compare/v0.51.23...v0.51.24)
## [v0.51.23](https://github.com/materialsproject/maggma/tree/v0.51.23) (2023-07-21)
[Full Changelog](https://github.com/materialsproject/maggma/compare/v0.51.22...v0.51.23)
**Closed issues:**
- `database_name` of `MontyStore` doesn't seem to update the name [\#820](https://github.com/materialsproject/maggma/issues/820)
**Merged pull requests:**
- FileStore performance enhancements [\#824](https://github.com/materialsproject/maggma/pull/824) ([rkingsbury](https://github.com/rkingsbury))
## [v0.51.22](https://github.com/materialsproject/maggma/tree/v0.51.22) (2023-07-21)
[Full Changelog](https://github.com/materialsproject/maggma/compare/v0.51.21...v0.51.22)
**Closed issues:**
- Instantiating a `Store` from a dictionary representation [\#825](https://github.com/materialsproject/maggma/issues/825)
**Merged pull requests:**
- misc. MontyStore improvements [\#827](https://github.com/materialsproject/maggma/pull/827) ([rkingsbury](https://github.com/rkingsbury))
## [v0.51.21](https://github.com/materialsproject/maggma/tree/v0.51.21) (2023-07-11)
[Full Changelog](https://github.com/materialsproject/maggma/compare/v0.51.20...v0.51.21)
## [v0.51.20](https://github.com/materialsproject/maggma/tree/v0.51.20) (2023-07-11)
[Full Changelog](https://github.com/materialsproject/maggma/compare/v0.51.19...v0.51.20)
**Merged pull requests:**
- Fixe ruamel.yaml dependency [\#823](https://github.com/materialsproject/maggma/pull/823) ([jmmshn](https://github.com/jmmshn))
## [v0.51.19](https://github.com/materialsproject/maggma/tree/v0.51.19) (2023-07-11)
[Full Changelog](https://github.com/materialsproject/maggma/compare/v0.51.18...v0.51.19)
**Merged pull requests:**
- Update setup.py [\#822](https://github.com/materialsproject/maggma/pull/822) ([jmmshn](https://github.com/jmmshn))
## [v0.51.18](https://github.com/materialsproject/maggma/tree/v0.51.18) (2023-07-10)
[Full Changelog](https://github.com/materialsproject/maggma/compare/v0.51.17...v0.51.18)
**Merged pull requests:**
- Add `MontyStore` to `maggma.stores.__init__` [\#819](https://github.com/materialsproject/maggma/pull/819) ([Andrew-S-Rosen](https://github.com/Andrew-S-Rosen))
## [v0.51.17](https://github.com/materialsproject/maggma/tree/v0.51.17) (2023-07-07)
[Full Changelog](https://github.com/materialsproject/maggma/compare/v0.51.16...v0.51.17)
**Merged pull requests:**
- Revert store close apart from S3 [\#818](https://github.com/materialsproject/maggma/pull/818) ([munrojm](https://github.com/munrojm))
## [v0.51.16](https://github.com/materialsproject/maggma/tree/v0.51.16) (2023-07-07)
[Full Changelog](https://github.com/materialsproject/maggma/compare/v0.51.15...v0.51.16)
**Merged pull requests:**
- Fix s3 store collection close handling in resource classes [\#817](https://github.com/materialsproject/maggma/pull/817) ([munrojm](https://github.com/munrojm))
## [v0.51.15](https://github.com/materialsproject/maggma/tree/v0.51.15) (2023-07-06)
[Full Changelog](https://github.com/materialsproject/maggma/compare/v0.51.14...v0.51.15)
**Merged pull requests:**
- Fix collection check [\#816](https://github.com/materialsproject/maggma/pull/816) ([munrojm](https://github.com/munrojm))
## [v0.51.14](https://github.com/materialsproject/maggma/tree/v0.51.14) (2023-07-06)
[Full Changelog](https://github.com/materialsproject/maggma/compare/v0.51.13...v0.51.14)
**Merged pull requests:**
- Check for collection before closing in resources [\#815](https://github.com/materialsproject/maggma/pull/815) ([munrojm](https://github.com/munrojm))
## [v0.51.13](https://github.com/materialsproject/maggma/tree/v0.51.13) (2023-07-06)
[Full Changelog](https://github.com/materialsproject/maggma/compare/v0.51.10...v0.51.13)
**Merged pull requests:**
- Add explicit store close to resources [\#814](https://github.com/materialsproject/maggma/pull/814) ([munrojm](https://github.com/munrojm))
## [v0.51.10](https://github.com/materialsproject/maggma/tree/v0.51.10) (2023-06-27)
[Full Changelog](https://github.com/materialsproject/maggma/compare/v0.51.11...v0.51.10)
## [v0.51.11](https://github.com/materialsproject/maggma/tree/v0.51.11) (2023-06-27)
[Full Changelog](https://github.com/materialsproject/maggma/compare/v0.51.12...v0.51.11)
## [v0.51.12](https://github.com/materialsproject/maggma/tree/v0.51.12) (2023-06-27)
[Full Changelog](https://github.com/materialsproject/maggma/compare/v0.51.9...v0.51.12)
**Merged pull requests:**
- fix the response field [\#811](https://github.com/materialsproject/maggma/pull/811) ([yang-ruoxi](https://github.com/yang-ruoxi))
## [v0.51.9](https://github.com/materialsproject/maggma/tree/v0.51.9) (2023-06-22)
[Full Changelog](https://github.com/materialsproject/maggma/compare/v0.51.8...v0.51.9)
**Fixed bugs:**
- python 3.11 CI test failure with AzureBlobStore [\#807](https://github.com/materialsproject/maggma/issues/807)
**Merged pull requests:**
- add patch method for submission resource [\#809](https://github.com/materialsproject/maggma/pull/809) ([yang-ruoxi](https://github.com/yang-ruoxi))
## [v0.51.8](https://github.com/materialsproject/maggma/tree/v0.51.8) (2023-06-14)
[Full Changelog](https://github.com/materialsproject/maggma/compare/v0.51.7...v0.51.8)
**Implemented enhancements:**
- Memray memory profiler support for mrun command line tool [\#794](https://github.com/materialsproject/maggma/pull/794) ([tsmathis](https://github.com/tsmathis))
**Closed issues:**
- `MontyStore` cannot be used with a pre-existing local DB [\#796](https://github.com/materialsproject/maggma/issues/796)
**Merged pull requests:**
- Fixing bug in azure multi worker test [\#808](https://github.com/materialsproject/maggma/pull/808) ([gpetretto](https://github.com/gpetretto))
- Clarify docstring for `MontyDB` and add missing `self.database` property [\#806](https://github.com/materialsproject/maggma/pull/806) ([Andrew-S-Rosen](https://github.com/Andrew-S-Rosen))
- Add CodeQL workflow for GitHub code scanning [\#743](https://github.com/materialsproject/maggma/pull/743) ([lgtm-com[bot]](https://github.com/apps/lgtm-com))
## [v0.51.7](https://github.com/materialsproject/maggma/tree/v0.51.7) (2023-06-12)
[Full Changelog](https://github.com/materialsproject/maggma/compare/v0.51.6...v0.51.7)
**Merged pull requests:**
- Explicitly close s3 client connections in `S3Store` [\#805](https://github.com/materialsproject/maggma/pull/805) ([munrojm](https://github.com/munrojm))
## [v0.51.6](https://github.com/materialsproject/maggma/tree/v0.51.6) (2023-06-08)
[Full Changelog](https://github.com/materialsproject/maggma/compare/v0.51.5...v0.51.6)
**Merged pull requests:**
- Use tqdm.auto [\#795](https://github.com/materialsproject/maggma/pull/795) ([utf](https://github.com/utf))
## [v0.51.5](https://github.com/materialsproject/maggma/tree/v0.51.5) (2023-06-06)
[Full Changelog](https://github.com/materialsproject/maggma/compare/v0.51.4...v0.51.5)
**Merged pull requests:**
- Disable worker timeouts by default [\#793](https://github.com/materialsproject/maggma/pull/793) ([munrojm](https://github.com/munrojm))
## [v0.51.4](https://github.com/materialsproject/maggma/tree/v0.51.4) (2023-06-02)
[Full Changelog](https://github.com/materialsproject/maggma/compare/v0.51.3...v0.51.4)
**Merged pull requests:**
- modify JSONStore file creation [\#792](https://github.com/materialsproject/maggma/pull/792) ([gpetretto](https://github.com/gpetretto))
## [v0.51.3](https://github.com/materialsproject/maggma/tree/v0.51.3) (2023-05-29)
[Full Changelog](https://github.com/materialsproject/maggma/compare/v0.51.2...v0.51.3)
## [v0.51.2](https://github.com/materialsproject/maggma/tree/v0.51.2) (2023-05-29)
[Full Changelog](https://github.com/materialsproject/maggma/compare/v0.51.1...v0.51.2)
**Merged pull requests:**
- Add orjson options in JSONStore [\#791](https://github.com/materialsproject/maggma/pull/791) ([gpetretto](https://github.com/gpetretto))
- Implementation of an AzureBlobStore for Azure blobs [\#790](https://github.com/materialsproject/maggma/pull/790) ([gpetretto](https://github.com/gpetretto))
## [v0.51.1](https://github.com/materialsproject/maggma/tree/v0.51.1) (2023-05-22)
[Full Changelog](https://github.com/materialsproject/maggma/compare/v0.51.0...v0.51.1)
**Merged pull requests:**
- Add ruamel-yaml as a dependency [\#789](https://github.com/materialsproject/maggma/pull/789) ([sivonxay](https://github.com/sivonxay))
## [v0.51.0](https://github.com/materialsproject/maggma/tree/v0.51.0) (2023-05-22)
[Full Changelog](https://github.com/materialsproject/maggma/compare/v0.50.4...v0.51.0)
**Merged pull requests:**
- Create a MultiStore object and a Store-like object to access it [\#787](https://github.com/materialsproject/maggma/pull/787) ([sivonxay](https://github.com/sivonxay))
## [v0.50.4](https://github.com/materialsproject/maggma/tree/v0.50.4) (2023-04-28)
[Full Changelog](https://github.com/materialsproject/maggma/compare/v0.50.3...v0.50.4)
**Merged pull requests:**
- Update MongoStore `count` method [\#785](https://github.com/materialsproject/maggma/pull/785) ([munrojm](https://github.com/munrojm))
## [v0.50.3](https://github.com/materialsproject/maggma/tree/v0.50.3) (2023-02-17)
[Full Changelog](https://github.com/materialsproject/maggma/compare/v0.50.2...v0.50.3)
**Merged pull requests:**
- Remove extra heartbeats from workers [\#779](https://github.com/materialsproject/maggma/pull/779) ([munrojm](https://github.com/munrojm))
## [v0.50.2](https://github.com/materialsproject/maggma/tree/v0.50.2) (2023-02-17)
[Full Changelog](https://github.com/materialsproject/maggma/compare/v0.50.1...v0.50.2)
**Merged pull requests:**
- Pydantic CLI settings [\#778](https://github.com/materialsproject/maggma/pull/778) ([munrojm](https://github.com/munrojm))
## [v0.50.1](https://github.com/materialsproject/maggma/tree/v0.50.1) (2023-02-16)
[Full Changelog](https://github.com/materialsproject/maggma/compare/v0.50.0...v0.50.1)
**Merged pull requests:**
- Remove stray print in worker debug [\#777](https://github.com/materialsproject/maggma/pull/777) ([munrojm](https://github.com/munrojm))
## [v0.50.0](https://github.com/materialsproject/maggma/tree/v0.50.0) (2023-02-16)
[Full Changelog](https://github.com/materialsproject/maggma/compare/v0.49.18...v0.50.0)
**Merged pull requests:**
- Overhaul distributed framework and add RabbitMQ support [\#776](https://github.com/materialsproject/maggma/pull/776) ([munrojm](https://github.com/munrojm))
## [v0.49.18](https://github.com/materialsproject/maggma/tree/v0.49.18) (2023-02-13)
[Full Changelog](https://github.com/materialsproject/maggma/compare/v0.49.17...v0.49.18)
**Merged pull requests:**
- Add more heartbeat pings from worker [\#775](https://github.com/materialsproject/maggma/pull/775) ([munrojm](https://github.com/munrojm))
## [v0.49.17](https://github.com/materialsproject/maggma/tree/v0.49.17) (2023-01-30)
[Full Changelog](https://github.com/materialsproject/maggma/compare/v0.49.16...v0.49.17)
**Merged pull requests:**
- Remove default sorting from API [\#770](https://github.com/materialsproject/maggma/pull/770) ([munrojm](https://github.com/munrojm))
## [v0.49.16](https://github.com/materialsproject/maggma/tree/v0.49.16) (2023-01-23)
[Full Changelog](https://github.com/materialsproject/maggma/compare/v0.49.15...v0.49.16)
**Merged pull requests:**
- Query pipeline out of memory fix [\#767](https://github.com/materialsproject/maggma/pull/767) ([munrojm](https://github.com/munrojm))
## [v0.49.15](https://github.com/materialsproject/maggma/tree/v0.49.15) (2023-01-23)
[Full Changelog](https://github.com/materialsproject/maggma/compare/v0.49.14...v0.49.15)
**Merged pull requests:**
- Fix server-side API sorting [\#766](https://github.com/materialsproject/maggma/pull/766) ([munrojm](https://github.com/munrojm))
## [v0.49.14](https://github.com/materialsproject/maggma/tree/v0.49.14) (2023-01-18)
[Full Changelog](https://github.com/materialsproject/maggma/compare/v0.49.13...v0.49.14)
**Merged pull requests:**
- Fix S3 store queries in API [\#761](https://github.com/materialsproject/maggma/pull/761) ([munrojm](https://github.com/munrojm))
## [v0.49.13](https://github.com/materialsproject/maggma/tree/v0.49.13) (2023-01-10)
[Full Changelog](https://github.com/materialsproject/maggma/compare/v0.49.12...v0.49.13)
**Merged pull requests:**
- Aggregation pipelines in resource classes [\#759](https://github.com/materialsproject/maggma/pull/759) ([munrojm](https://github.com/munrojm))
## [v0.49.12](https://github.com/materialsproject/maggma/tree/v0.49.12) (2023-01-09)
[Full Changelog](https://github.com/materialsproject/maggma/compare/v0.49.11...v0.49.12)
**Merged pull requests:**
- Add default sort parameter to `MongoStore` [\#758](https://github.com/materialsproject/maggma/pull/758) ([munrojm](https://github.com/munrojm))
## [v0.49.11](https://github.com/materialsproject/maggma/tree/v0.49.11) (2022-12-15)
[Full Changelog](https://github.com/materialsproject/maggma/compare/v0.49.10...v0.49.11)
**Merged pull requests:**
- Async to sync for fastapi funcs [\#750](https://github.com/materialsproject/maggma/pull/750) ([munrojm](https://github.com/munrojm))
## [v0.49.10](https://github.com/materialsproject/maggma/tree/v0.49.10) (2022-12-07)
[Full Changelog](https://github.com/materialsproject/maggma/compare/v0.49.9...v0.49.10)
**Merged pull requests:**
- Enable disk use in mongo find [\#749](https://github.com/materialsproject/maggma/pull/749) ([munrojm](https://github.com/munrojm))
## [v0.49.9](https://github.com/materialsproject/maggma/tree/v0.49.9) (2022-11-01)
[Full Changelog](https://github.com/materialsproject/maggma/compare/v0.49.8...v0.49.9)
**Merged pull requests:**
- Parse datetime with dateutil [\#741](https://github.com/materialsproject/maggma/pull/741) ([munrojm](https://github.com/munrojm))
## [v0.49.8](https://github.com/materialsproject/maggma/tree/v0.49.8) (2022-10-25)
[Full Changelog](https://github.com/materialsproject/maggma/compare/v0.49.7...v0.49.8)
## [v0.49.7](https://github.com/materialsproject/maggma/tree/v0.49.7) (2022-10-25)
[Full Changelog](https://github.com/materialsproject/maggma/compare/v0.49.6...v0.49.7)
**Merged pull requests:**
- FileStore: fix metadata overwriting path [\#736](https://github.com/materialsproject/maggma/pull/736) ([rkingsbury](https://github.com/rkingsbury))
- JSONStore: fix last\_updated serialization problem [\#735](https://github.com/materialsproject/maggma/pull/735) ([rkingsbury](https://github.com/rkingsbury))
## [v0.49.6](https://github.com/materialsproject/maggma/tree/v0.49.6) (2022-10-21)
[Full Changelog](https://github.com/materialsproject/maggma/compare/v0.49.5...v0.49.6)
**Merged pull requests:**
- Default sort on \_id for determinacy [\#732](https://github.com/materialsproject/maggma/pull/732) ([munrojm](https://github.com/munrojm))
## [v0.49.5](https://github.com/materialsproject/maggma/tree/v0.49.5) (2022-09-30)
[Full Changelog](https://github.com/materialsproject/maggma/compare/v0.49.4...v0.49.5)
**Merged pull requests:**
- Up manager timeout [\#718](https://github.com/materialsproject/maggma/pull/718) ([munrojm](https://github.com/munrojm))
## [v0.49.4](https://github.com/materialsproject/maggma/tree/v0.49.4) (2022-09-28)
[Full Changelog](https://github.com/materialsproject/maggma/compare/v0.49.3...v0.49.4)
**Merged pull requests:**
- Up worker timeout [\#717](https://github.com/materialsproject/maggma/pull/717) ([munrojm](https://github.com/munrojm))
## [v0.49.3](https://github.com/materialsproject/maggma/tree/v0.49.3) (2022-09-27)
[Full Changelog](https://github.com/materialsproject/maggma/compare/v0.49.2...v0.49.3)
**Merged pull requests:**
- Update high water mark [\#716](https://github.com/materialsproject/maggma/pull/716) ([munrojm](https://github.com/munrojm))
## [v0.49.2](https://github.com/materialsproject/maggma/tree/v0.49.2) (2022-09-27)
[Full Changelog](https://github.com/materialsproject/maggma/compare/v0.49.1...v0.49.2)
**Merged pull requests:**
- Fix stalling in distributed code [\#715](https://github.com/materialsproject/maggma/pull/715) ([munrojm](https://github.com/munrojm))
## [v0.49.1](https://github.com/materialsproject/maggma/tree/v0.49.1) (2022-09-26)
[Full Changelog](https://github.com/materialsproject/maggma/compare/v0.49.0...v0.49.1)
**Merged pull requests:**
- Send proper exit message to workers [\#714](https://github.com/materialsproject/maggma/pull/714) ([munrojm](https://github.com/munrojm))
## [v0.49.0](https://github.com/materialsproject/maggma/tree/v0.49.0) (2022-09-23)
[Full Changelog](https://github.com/materialsproject/maggma/compare/v0.48.1...v0.49.0)
**Merged pull requests:**
- Enhance distributed builder code [\#711](https://github.com/materialsproject/maggma/pull/711) ([munrojm](https://github.com/munrojm))
## [v0.48.1](https://github.com/materialsproject/maggma/tree/v0.48.1) (2022-09-02)
[Full Changelog](https://github.com/materialsproject/maggma/compare/v0.48.0...v0.48.1)
**Merged pull requests:**
- Add ssh\_tunnel option to GridFSStore [\#707](https://github.com/materialsproject/maggma/pull/707) ([utf](https://github.com/utf))
## [v0.48.0](https://github.com/materialsproject/maggma/tree/v0.48.0) (2022-08-04)
[Full Changelog](https://github.com/materialsproject/maggma/compare/v0.47.6...v0.48.0)
**Merged pull requests:**
- Proposal: remove Drone class [\#669](https://github.com/materialsproject/maggma/pull/669) ([rkingsbury](https://github.com/rkingsbury))
## [v0.47.6](https://github.com/materialsproject/maggma/tree/v0.47.6) (2022-08-04)
[Full Changelog](https://github.com/materialsproject/maggma/compare/v0.47.5...v0.47.6)
**Merged pull requests:**
- Docs: add mermaid diagram support [\#677](https://github.com/materialsproject/maggma/pull/677) ([rkingsbury](https://github.com/rkingsbury))
## [v0.47.5](https://github.com/materialsproject/maggma/tree/v0.47.5) (2022-07-26)
[Full Changelog](https://github.com/materialsproject/maggma/compare/v0.47.4...v0.47.5)
**Merged pull requests:**
- Add pymongo timeout context to queries [\#691](https://github.com/materialsproject/maggma/pull/691) ([munrojm](https://github.com/munrojm))
## [v0.47.4](https://github.com/materialsproject/maggma/tree/v0.47.4) (2022-07-25)
[Full Changelog](https://github.com/materialsproject/maggma/compare/v0.47.3...v0.47.4)
**Merged pull requests:**
- Ensure all fields are properly sanitized [\#690](https://github.com/materialsproject/maggma/pull/690) ([munrojm](https://github.com/munrojm))
## [v0.47.3](https://github.com/materialsproject/maggma/tree/v0.47.3) (2022-06-07)
[Full Changelog](https://github.com/materialsproject/maggma/compare/v0.47.2...v0.47.3)
**Merged pull requests:**
- Fix header processing [\#679](https://github.com/materialsproject/maggma/pull/679) ([munrojm](https://github.com/munrojm))
## [v0.47.2](https://github.com/materialsproject/maggma/tree/v0.47.2) (2022-05-27)
[Full Changelog](https://github.com/materialsproject/maggma/compare/v0.47.1...v0.47.2)
**Merged pull requests:**
- Docs updates: add FileStore and misc edits [\#668](https://github.com/materialsproject/maggma/pull/668) ([rkingsbury](https://github.com/rkingsbury))
## [v0.47.1](https://github.com/materialsproject/maggma/tree/v0.47.1) (2022-05-24)
[Full Changelog](https://github.com/materialsproject/maggma/compare/v0.47.0...v0.47.1)
**Merged pull requests:**
- Fix gridfs URI store [\#667](https://github.com/materialsproject/maggma/pull/667) ([utf](https://github.com/utf))
## [v0.47.0](https://github.com/materialsproject/maggma/tree/v0.47.0) (2022-05-23)
[Full Changelog](https://github.com/materialsproject/maggma/compare/v0.46.2...v0.47.0)
**Merged pull requests:**
- FileStore: a Store for files on disk [\#619](https://github.com/materialsproject/maggma/pull/619) ([rkingsbury](https://github.com/rkingsbury))
## [v0.46.2](https://github.com/materialsproject/maggma/tree/v0.46.2) (2022-05-23)
[Full Changelog](https://github.com/materialsproject/maggma/compare/v0.46.1...v0.46.2)
**Merged pull requests:**
- allow s3 resource kwargs [\#665](https://github.com/materialsproject/maggma/pull/665) ([jmmshn](https://github.com/jmmshn))
## [v0.46.1](https://github.com/materialsproject/maggma/tree/v0.46.1) (2022-04-21)
[Full Changelog](https://github.com/materialsproject/maggma/compare/v0.46.0...v0.46.1)
**Merged pull requests:**
- Prefix `fields` input for read resource key endpoint [\#636](https://github.com/materialsproject/maggma/pull/636) ([munrojm](https://github.com/munrojm))
## [v0.46.0](https://github.com/materialsproject/maggma/tree/v0.46.0) (2022-04-19)
[Full Changelog](https://github.com/materialsproject/maggma/compare/v0.45.1...v0.46.0)
**Merged pull requests:**
- S3 store and resource additions [\#635](https://github.com/materialsproject/maggma/pull/635) ([munrojm](https://github.com/munrojm))
## [v0.45.1](https://github.com/materialsproject/maggma/tree/v0.45.1) (2022-04-18)
[Full Changelog](https://github.com/materialsproject/maggma/compare/v0.45.0...v0.45.1)
**Merged pull requests:**
- minor bug fix in remove\_docs [\#626](https://github.com/materialsproject/maggma/pull/626) ([jmmshn](https://github.com/jmmshn))
## [v0.45.0](https://github.com/materialsproject/maggma/tree/v0.45.0) (2022-04-14)
[Full Changelog](https://github.com/materialsproject/maggma/compare/v0.44.5...v0.45.0)
**Merged pull requests:**
- Changes to core query operators and API [\#620](https://github.com/materialsproject/maggma/pull/620) ([munrojm](https://github.com/munrojm))
## [v0.44.5](https://github.com/materialsproject/maggma/tree/v0.44.5) (2022-04-12)
[Full Changelog](https://github.com/materialsproject/maggma/compare/v0.44.4...v0.44.5)
**Merged pull requests:**
- JSONStore: file\_writable -\> read\_only [\#625](https://github.com/materialsproject/maggma/pull/625) ([rkingsbury](https://github.com/rkingsbury))
## [v0.44.4](https://github.com/materialsproject/maggma/tree/v0.44.4) (2022-04-12)
[Full Changelog](https://github.com/materialsproject/maggma/compare/v0.44.3...v0.44.4)
**Merged pull requests:**
- JSONStore: write file on init, add descriptive KeyError, add tests [\#624](https://github.com/materialsproject/maggma/pull/624) ([rkingsbury](https://github.com/rkingsbury))
## [v0.44.3](https://github.com/materialsproject/maggma/tree/v0.44.3) (2022-04-11)
[Full Changelog](https://github.com/materialsproject/maggma/compare/v0.44.2...v0.44.3)
**Merged pull requests:**
- MemoryStore: fix groupby ignoring properties [\#621](https://github.com/materialsproject/maggma/pull/621) ([rkingsbury](https://github.com/rkingsbury))
## [v0.44.2](https://github.com/materialsproject/maggma/tree/v0.44.2) (2022-04-05)
[Full Changelog](https://github.com/materialsproject/maggma/compare/v0.44.1...v0.44.2)
**Merged pull requests:**
- Force post-process method to take in query params [\#618](https://github.com/materialsproject/maggma/pull/618) ([munrojm](https://github.com/munrojm))
## [v0.44.1](https://github.com/materialsproject/maggma/tree/v0.44.1) (2022-03-08)
[Full Changelog](https://github.com/materialsproject/maggma/compare/v0.44.0...v0.44.1)
**Merged pull requests:**
- added localhost test for MongoURIStore [\#595](https://github.com/materialsproject/maggma/pull/595) ([jmmshn](https://github.com/jmmshn))
## [v0.44.0](https://github.com/materialsproject/maggma/tree/v0.44.0) (2022-03-07)
[Full Changelog](https://github.com/materialsproject/maggma/compare/v0.43.0...v0.44.0)
## [v0.43.0](https://github.com/materialsproject/maggma/tree/v0.43.0) (2022-03-07)
[Full Changelog](https://github.com/materialsproject/maggma/compare/v0.42.0...v0.43.0)
## [v0.42.0](https://github.com/materialsproject/maggma/tree/v0.42.0) (2022-03-07)
[Full Changelog](https://github.com/materialsproject/maggma/compare/v0.41.1...v0.42.0)
**Merged pull requests:**
- Remove python3.6 support and fix tests [\#579](https://github.com/materialsproject/maggma/pull/579) ([munrojm](https://github.com/munrojm))
- typo [\#576](https://github.com/materialsproject/maggma/pull/576) ([jmmshn](https://github.com/jmmshn))
## [v0.41.1](https://github.com/materialsproject/maggma/tree/v0.41.1) (2022-03-05)
[Full Changelog](https://github.com/materialsproject/maggma/compare/v0.41.0...v0.41.1)
**Merged pull requests:**
- mongoclient\_kwargs [\#575](https://github.com/materialsproject/maggma/pull/575) ([jmmshn](https://github.com/jmmshn))
- change cleint -\> resource in aws tests [\#574](https://github.com/materialsproject/maggma/pull/574) ([jmmshn](https://github.com/jmmshn))
## [v0.41.0](https://github.com/materialsproject/maggma/tree/v0.41.0) (2022-02-15)
[Full Changelog](https://github.com/materialsproject/maggma/compare/v0.40.0...v0.41.0)
**Merged pull requests:**
- Add header processing abilities to certain `Resource` classes [\#569](https://github.com/materialsproject/maggma/pull/569) ([munrojm](https://github.com/munrojm))
## [v0.40.0](https://github.com/materialsproject/maggma/tree/v0.40.0) (2022-02-10)
[Full Changelog](https://github.com/materialsproject/maggma/compare/v0.39.1...v0.40.0)
**Merged pull requests:**
- Add authsource option for mongo and gridfs stores [\#567](https://github.com/materialsproject/maggma/pull/567) ([utf](https://github.com/utf))
## [v0.39.1](https://github.com/materialsproject/maggma/tree/v0.39.1) (2022-01-27)
[Full Changelog](https://github.com/materialsproject/maggma/compare/v0.39.0...v0.39.1)
**Fixed bugs:**
- Single import-dependence on pynng causes M1 Mac install error [\#528](https://github.com/materialsproject/maggma/issues/528)
**Merged pull requests:**
- Add boto3 to required packages [\#544](https://github.com/materialsproject/maggma/pull/544) ([munrojm](https://github.com/munrojm))
## [v0.39.0](https://github.com/materialsproject/maggma/tree/v0.39.0) (2022-01-26)
[Full Changelog](https://github.com/materialsproject/maggma/compare/v0.38.1...v0.39.0)
**Merged pull requests:**
- Replace `pynng` functionality with `pyzmq` [\#543](https://github.com/materialsproject/maggma/pull/543) ([munrojm](https://github.com/munrojm))
- Encode `_` as `--` in metadata when using `S3Store.write_doc_to_s3` [\#532](https://github.com/materialsproject/maggma/pull/532) ([mkhorton](https://github.com/mkhorton))
## [v0.38.1](https://github.com/materialsproject/maggma/tree/v0.38.1) (2021-12-10)
[Full Changelog](https://github.com/materialsproject/maggma/compare/v0.38.0...v0.38.1)
**Merged pull requests:**
- Add ability to input index hints to count method [\#524](https://github.com/materialsproject/maggma/pull/524) ([munrojm](https://github.com/munrojm))
## [v0.38.0](https://github.com/materialsproject/maggma/tree/v0.38.0) (2021-12-09)
[Full Changelog](https://github.com/materialsproject/maggma/compare/v0.37.0...v0.38.0)
**Merged pull requests:**
- Fix issue with `close` and `MongoStore` and update `_collection` attribute [\#523](https://github.com/materialsproject/maggma/pull/523) ([munrojm](https://github.com/munrojm))
## [v0.37.0](https://github.com/materialsproject/maggma/tree/v0.37.0) (2021-12-07)
[Full Changelog](https://github.com/materialsproject/maggma/compare/v0.36.0...v0.37.0)
**Merged pull requests:**
- Revert broken MongoStore auth testing [\#522](https://github.com/materialsproject/maggma/pull/522) ([munrojm](https://github.com/munrojm))
- Fix authentication for `MongoStore` to work with `pymongo==4.0` [\#521](https://github.com/materialsproject/maggma/pull/521) ([munrojm](https://github.com/munrojm))
## [v0.36.0](https://github.com/materialsproject/maggma/tree/v0.36.0) (2021-12-06)
[Full Changelog](https://github.com/materialsproject/maggma/compare/v0.35.0...v0.36.0)
**Merged pull requests:**
- Added on-disk MongoDB compatible MontyStore [\#514](https://github.com/materialsproject/maggma/pull/514) ([utf](https://github.com/utf))
## [v0.35.0](https://github.com/materialsproject/maggma/tree/v0.35.0) (2021-12-01)
[Full Changelog](https://github.com/materialsproject/maggma/compare/v0.34.0...v0.35.0)
## [v0.34.0](https://github.com/materialsproject/maggma/tree/v0.34.0) (2021-12-01)
[Full Changelog](https://github.com/materialsproject/maggma/compare/v0.33.2...v0.34.0)
**Merged pull requests:**
- Changes to accommodate new pymongo [\#517](https://github.com/materialsproject/maggma/pull/517) ([munrojm](https://github.com/munrojm))
## [v0.33.2](https://github.com/materialsproject/maggma/tree/v0.33.2) (2021-12-01)
[Full Changelog](https://github.com/materialsproject/maggma/compare/v0.33.1...v0.33.2)
**Merged pull requests:**
- Patch mongo store connect methods [\#516](https://github.com/materialsproject/maggma/pull/516) ([munrojm](https://github.com/munrojm))
## [v0.33.1](https://github.com/materialsproject/maggma/tree/v0.33.1) (2021-12-01)
[Full Changelog](https://github.com/materialsproject/maggma/compare/v0.33.0...v0.33.1)
**Merged pull requests:**
- Patch memory store connect method [\#515](https://github.com/materialsproject/maggma/pull/515) ([munrojm](https://github.com/munrojm))
## [v0.33.0](https://github.com/materialsproject/maggma/tree/v0.33.0) (2021-11-30)
[Full Changelog](https://github.com/materialsproject/maggma/compare/v0.32.3...v0.33.0)
**Merged pull requests:**
- MongoDB hint support [\#513](https://github.com/materialsproject/maggma/pull/513) ([munrojm](https://github.com/munrojm))
## [v0.32.3](https://github.com/materialsproject/maggma/tree/v0.32.3) (2021-11-25)
[Full Changelog](https://github.com/materialsproject/maggma/compare/v0.32.2...v0.32.3)
**Merged pull requests:**
- Added option for writable JSONStores \(for single JSON files only\). [\#507](https://github.com/materialsproject/maggma/pull/507) ([davidwaroquiers](https://github.com/davidwaroquiers))
## [v0.32.2](https://github.com/materialsproject/maggma/tree/v0.32.2) (2021-11-23)
[Full Changelog](https://github.com/materialsproject/maggma/compare/v0.32.1...v0.32.2)
**Merged pull requests:**
- Alter sorting query operator to take comma delimited string [\#510](https://github.com/materialsproject/maggma/pull/510) ([munrojm](https://github.com/munrojm))
## [v0.32.1](https://github.com/materialsproject/maggma/tree/v0.32.1) (2021-11-10)
[Full Changelog](https://github.com/materialsproject/maggma/compare/v0.32.0...v0.32.1)
**Merged pull requests:**
- Default to yaml full loader to fix tests [\#505](https://github.com/materialsproject/maggma/pull/505) ([munrojm](https://github.com/munrojm))
- Add GridFSURIStore with support for URI connections [\#504](https://github.com/materialsproject/maggma/pull/504) ([utf](https://github.com/utf))
## [v0.32.0](https://github.com/materialsproject/maggma/tree/v0.32.0) (2021-10-11)
[Full Changelog](https://github.com/materialsproject/maggma/compare/v0.31.0...v0.32.0)
**Merged pull requests:**
- Update sorting query operator to take multiple fields [\#500](https://github.com/materialsproject/maggma/pull/500) ([munrojm](https://github.com/munrojm))
- Change to S3Store serialization behavior in update\(\) and other Mongolike Store changes [\#493](https://github.com/materialsproject/maggma/pull/493) ([sivonxay](https://github.com/sivonxay))
## [v0.31.0](https://github.com/materialsproject/maggma/tree/v0.31.0) (2021-08-14)
[Full Changelog](https://github.com/materialsproject/maggma/compare/v0.30.4...v0.31.0)
**Merged pull requests:**
- Add from\_launchpad\_file classmethod to MongoStore [\#476](https://github.com/materialsproject/maggma/pull/476) ([sivonxay](https://github.com/sivonxay))
## [v0.30.4](https://github.com/materialsproject/maggma/tree/v0.30.4) (2021-08-04)
[Full Changelog](https://github.com/materialsproject/maggma/compare/v0.30.3...v0.30.4)
**Merged pull requests:**
- Fix documentation in aggregation and sparse fields [\#469](https://github.com/materialsproject/maggma/pull/469) ([munrojm](https://github.com/munrojm))
## [v0.30.3](https://github.com/materialsproject/maggma/tree/v0.30.3) (2021-08-04)
[Full Changelog](https://github.com/materialsproject/maggma/compare/v0.30.2...v0.30.3)
**Merged pull requests:**
- Enable enhanced documentation [\#468](https://github.com/materialsproject/maggma/pull/468) ([munrojm](https://github.com/munrojm))
## [v0.30.2](https://github.com/materialsproject/maggma/tree/v0.30.2) (2021-07-09)
[Full Changelog](https://github.com/materialsproject/maggma/compare/v0.30.1...v0.30.2)
**Merged pull requests:**
- orjson added to setup.py [\#465](https://github.com/materialsproject/maggma/pull/465) ([munrojm](https://github.com/munrojm))
## [v0.30.1](https://github.com/materialsproject/maggma/tree/v0.30.1) (2021-07-09)
[Full Changelog](https://github.com/materialsproject/maggma/compare/v0.30.0...v0.30.1)
**Merged pull requests:**
- Switch from monty to orjson for serialization [\#464](https://github.com/materialsproject/maggma/pull/464) ([munrojm](https://github.com/munrojm))
## [v0.30.0](https://github.com/materialsproject/maggma/tree/v0.30.0) (2021-07-06)
[Full Changelog](https://github.com/materialsproject/maggma/compare/v0.29.4...v0.30.0)
**Merged pull requests:**
- Enable monty encoded direct responses [\#463](https://github.com/materialsproject/maggma/pull/463) ([munrojm](https://github.com/munrojm))
## [v0.29.4](https://github.com/materialsproject/maggma/tree/v0.29.4) (2021-06-23)
[Full Changelog](https://github.com/materialsproject/maggma/compare/v0.29.3...v0.29.4)
**Merged pull requests:**
- BugFix: Manual distinct in MongoStore not using Criteria [\#461](https://github.com/materialsproject/maggma/pull/461) ([shyamd](https://github.com/shyamd))
## [v0.29.3](https://github.com/materialsproject/maggma/tree/v0.29.3) (2021-06-21)
[Full Changelog](https://github.com/materialsproject/maggma/compare/v0.29.2...v0.29.3)
**Merged pull requests:**
- Sort query and query operator meta bug fixes [\#453](https://github.com/materialsproject/maggma/pull/453) ([munrojm](https://github.com/munrojm))
## [v0.29.2](https://github.com/materialsproject/maggma/tree/v0.29.2) (2021-06-18)
[Full Changelog](https://github.com/materialsproject/maggma/compare/v0.29.1...v0.29.2)
**Merged pull requests:**
- Fix API Sanitizing MSONable types in combined types [\#454](https://github.com/materialsproject/maggma/pull/454) ([shyamd](https://github.com/shyamd))
## [v0.29.1](https://github.com/materialsproject/maggma/tree/v0.29.1) (2021-06-15)
[Full Changelog](https://github.com/materialsproject/maggma/compare/v0.29.0...v0.29.1)
**Merged pull requests:**
- Switch from classic bson to pymongo bson [\#452](https://github.com/materialsproject/maggma/pull/452) ([shyamd](https://github.com/shyamd))
## [v0.29.0](https://github.com/materialsproject/maggma/tree/v0.29.0) (2021-06-08)
[Full Changelog](https://github.com/materialsproject/maggma/compare/v0.28.1...v0.29.0)
**Merged pull requests:**
- Maggma API additions [\#448](https://github.com/materialsproject/maggma/pull/448) ([munrojm](https://github.com/munrojm))
## [v0.28.1](https://github.com/materialsproject/maggma/tree/v0.28.1) (2021-06-08)
[Full Changelog](https://github.com/materialsproject/maggma/compare/v0.28.0...v0.28.1)
**Closed issues:**
- Indescriptive error when not specifying any builders in CLI [\#446](https://github.com/materialsproject/maggma/issues/446)
- Add port auto-negotiation [\#445](https://github.com/materialsproject/maggma/issues/445)
**Merged pull requests:**
- New release wflow [\#450](https://github.com/materialsproject/maggma/pull/450) ([shyamd](https://github.com/shyamd))
- Ensure Store.name is a property [\#449](https://github.com/materialsproject/maggma/pull/449) ([utf](https://github.com/utf))
## [v0.28.0](https://github.com/materialsproject/maggma/tree/v0.28.0) (2021-05-26)
[Full Changelog](https://github.com/materialsproject/maggma/compare/v0.27.0...v0.28.0)
**Merged pull requests:**
- Updates the CLI Runner [\#447](https://github.com/materialsproject/maggma/pull/447) ([shyamd](https://github.com/shyamd))
## [v0.27.0](https://github.com/materialsproject/maggma/tree/v0.27.0) (2021-05-12)
[Full Changelog](https://github.com/materialsproject/maggma/compare/v0.26.0...v0.27.0)
**Closed issues:**
- Python 3.6 compatability [\#336](https://github.com/materialsproject/maggma/issues/336)
**Merged pull requests:**
- Fix aws module import [\#435](https://github.com/materialsproject/maggma/pull/435) ([utf](https://github.com/utf))
- coverage [\#430](https://github.com/materialsproject/maggma/pull/430) ([jmmshn](https://github.com/jmmshn))
- Update AWS Bucket Detection [\#429](https://github.com/materialsproject/maggma/pull/429) ([jmmshn](https://github.com/jmmshn))
- Add Object Hash to S3Store [\#427](https://github.com/materialsproject/maggma/pull/427) ([jmmshn](https://github.com/jmmshn))
- Rebuild API module [\#423](https://github.com/materialsproject/maggma/pull/423) ([shyamd](https://github.com/shyamd))
- updated documentaion. [\#419](https://github.com/materialsproject/maggma/pull/419) ([jmmshn](https://github.com/jmmshn))
- Revert "Bump ipython from 7.16.1 to 7.21.0" [\#406](https://github.com/materialsproject/maggma/pull/406) ([shyamd](https://github.com/shyamd))
- update gridfs store [\#381](https://github.com/materialsproject/maggma/pull/381) ([gpetretto](https://github.com/gpetretto))
## [v0.26.0](https://github.com/materialsproject/maggma/tree/v0.26.0) (2021-01-16)
[Full Changelog](https://github.com/materialsproject/maggma/compare/v0.25.0...v0.26.0)
**Merged pull requests:**
- No Progress bars [\#382](https://github.com/materialsproject/maggma/pull/382) ([shyamd](https://github.com/shyamd))
## [v0.25.0](https://github.com/materialsproject/maggma/tree/v0.25.0) (2020-12-04)
[Full Changelog](https://github.com/materialsproject/maggma/compare/v0.24.2...v0.25.0)
**Closed issues:**
- FEATURE: Jupyter Commands [\#276](https://github.com/materialsproject/maggma/issues/276)
**Merged pull requests:**
- Python 3.6 Compatibility [\#352](https://github.com/materialsproject/maggma/pull/352) ([shyamd](https://github.com/shyamd))
- Automatically parse the dbname from the URI [\#350](https://github.com/materialsproject/maggma/pull/350) ([jmmshn](https://github.com/jmmshn))
- Setup: msgpack-python was renamed to msgpack [\#344](https://github.com/materialsproject/maggma/pull/344) ([jan-janssen](https://github.com/jan-janssen))
- Ensure MongoStore can safely continue updating when documents are too large [\#338](https://github.com/materialsproject/maggma/pull/338) ([shyamd](https://github.com/shyamd))
## [v0.24.2](https://github.com/materialsproject/maggma/tree/v0.24.2) (2020-11-17)
[Full Changelog](https://github.com/materialsproject/maggma/compare/v0.24.1...v0.24.2)
**Merged pull requests:**
- Fix array unwrapping in distinct [\#335](https://github.com/materialsproject/maggma/pull/335) ([shyamd](https://github.com/shyamd))
## [v0.24.1](https://github.com/materialsproject/maggma/tree/v0.24.1) (2020-11-17)
[Full Changelog](https://github.com/materialsproject/maggma/compare/v0.24.0...v0.24.1)
**Closed issues:**
- mrun failure with 'dict' object has no attribute 'connect' [\#316](https://github.com/materialsproject/maggma/issues/316)
- FEATURE: Serialized SSH Tunnel [\#290](https://github.com/materialsproject/maggma/issues/290)
**Merged pull requests:**
- Fix Distinct in MongoStore [\#332](https://github.com/materialsproject/maggma/pull/332) ([shyamd](https://github.com/shyamd))
- Direct passing of AWS login to S3Store [\#326](https://github.com/materialsproject/maggma/pull/326) ([jmmshn](https://github.com/jmmshn))
- Wrap SSHTunnelForward and make it MSONable [\#320](https://github.com/materialsproject/maggma/pull/320) ([shyamd](https://github.com/shyamd))
## [v0.24.0](https://github.com/materialsproject/maggma/tree/v0.24.0) (2020-11-02)
[Full Changelog](https://github.com/materialsproject/maggma/compare/v0.23.3...v0.24.0)
**Merged pull requests:**
- Small fix to make sure searchable\_fields are updated [\#303](https://github.com/materialsproject/maggma/pull/303) ([jmmshn](https://github.com/jmmshn))
## [v0.23.3](https://github.com/materialsproject/maggma/tree/v0.23.3) (2020-09-23)
[Full Changelog](https://github.com/materialsproject/maggma/compare/v0.23.2...v0.23.3)
## [v0.23.2](https://github.com/materialsproject/maggma/tree/v0.23.2) (2020-09-23)
[Full Changelog](https://github.com/materialsproject/maggma/compare/v0.23.1...v0.23.2)
## [v0.23.1](https://github.com/materialsproject/maggma/tree/v0.23.1) (2020-09-21)
[Full Changelog](https://github.com/materialsproject/maggma/compare/v0.23.0...v0.23.1)
**Closed issues:**
- FEATURE: Python file runner [\#277](https://github.com/materialsproject/maggma/issues/277)
## [v0.23.0](https://github.com/materialsproject/maggma/tree/v0.23.0) (2020-09-14)
[Full Changelog](https://github.com/materialsproject/maggma/compare/v0.22.3...v0.23.0)
**Closed issues:**
- Separate out S3 Object reference keys from search keys [\#206](https://github.com/materialsproject/maggma/issues/206)
**Merged pull requests:**
- Add custom source loading [\#278](https://github.com/materialsproject/maggma/pull/278) ([shyamd](https://github.com/shyamd))
- Inject metadata via fields rather than by indicies [\#265](https://github.com/materialsproject/maggma/pull/265) ([shyamd](https://github.com/shyamd))
## [v0.22.3](https://github.com/materialsproject/maggma/tree/v0.22.3) (2020-08-26)
[Full Changelog](https://github.com/materialsproject/maggma/compare/v0.22.2...v0.22.3)
**Merged pull requests:**
- added context manager for stores [\#258](https://github.com/materialsproject/maggma/pull/258) ([jmmshn](https://github.com/jmmshn))
## [v0.22.2](https://github.com/materialsproject/maggma/tree/v0.22.2) (2020-08-21)
[Full Changelog](https://github.com/materialsproject/maggma/compare/v0.22.1...v0.22.2)
**Merged pull requests:**
- Minor bug fixes to S3Store [\#253](https://github.com/materialsproject/maggma/pull/253) ([jmmshn](https://github.com/jmmshn))
## [v0.22.1](https://github.com/materialsproject/maggma/tree/v0.22.1) (2020-08-11)
[Full Changelog](https://github.com/materialsproject/maggma/compare/v0.22.0...v0.22.1)
**Merged pull requests:**
- accept int as sort keys instead of Sort\(\) in .query\(\) and .groupby\(\) [\#241](https://github.com/materialsproject/maggma/pull/241) ([rkingsbury](https://github.com/rkingsbury))
- Update setup.py [\#225](https://github.com/materialsproject/maggma/pull/225) ([jmmshn](https://github.com/jmmshn))
## [v0.22.0](https://github.com/materialsproject/maggma/tree/v0.22.0) (2020-07-16)
[Full Changelog](https://github.com/materialsproject/maggma/compare/v0.21.0...v0.22.0)
**Merged pull requests:**
- Ensure Metadata in Documents from GridFS [\#222](https://github.com/materialsproject/maggma/pull/222) ([shyamd](https://github.com/shyamd))
- Projection\_Builder tests [\#213](https://github.com/materialsproject/maggma/pull/213) ([acrutt](https://github.com/acrutt))
- \[WIP\] Proper multithreading and msgpack fix [\#205](https://github.com/materialsproject/maggma/pull/205) ([jmmshn](https://github.com/jmmshn))
- Fix projection\_builder.update\_targets\(\) [\#179](https://github.com/materialsproject/maggma/pull/179) ([acrutt](https://github.com/acrutt))
## [v0.21.0](https://github.com/materialsproject/maggma/tree/v0.21.0) (2020-06-22)
[Full Changelog](https://github.com/materialsproject/maggma/compare/v0.20.0...v0.21.0)
**Merged pull requests:**
- Reconstruct metadata from index in S3 Store [\#182](https://github.com/materialsproject/maggma/pull/182) ([jmmshn](https://github.com/jmmshn))
- MapBuilder retry\_failed Fix [\#180](https://github.com/materialsproject/maggma/pull/180) ([acrutt](https://github.com/acrutt))
- MapBuilder retry\_failed bug [\#111](https://github.com/materialsproject/maggma/pull/111) ([acrutt](https://github.com/acrutt))
## [v0.20.0](https://github.com/materialsproject/maggma/tree/v0.20.0) (2020-05-02)
[Full Changelog](https://github.com/materialsproject/maggma/compare/v0.19.1...v0.20.0)
**Merged pull requests:**
- Initial Drone Implementation [\#145](https://github.com/materialsproject/maggma/pull/145) ([wuxiaohua1011](https://github.com/wuxiaohua1011))
- parallel s3 store wrting [\#130](https://github.com/materialsproject/maggma/pull/130) ([jmmshn](https://github.com/jmmshn))
- Make GridFSStore query check files store first. [\#128](https://github.com/materialsproject/maggma/pull/128) ([munrojm](https://github.com/munrojm))
## [v0.19.1](https://github.com/materialsproject/maggma/tree/v0.19.1) (2020-04-06)
[Full Changelog](https://github.com/materialsproject/maggma/compare/v0.19.0...v0.19.1)
## [v0.19.0](https://github.com/materialsproject/maggma/tree/v0.19.0) (2020-04-06)
[Full Changelog](https://github.com/materialsproject/maggma/compare/v0.18.0...v0.19.0)
**Closed issues:**
- ISSUE: newer\_in method incompatible with GridFSStore [\#113](https://github.com/materialsproject/maggma/issues/113)
**Merged pull requests:**
- Fix async [\#129](https://github.com/materialsproject/maggma/pull/129) ([shyamd](https://github.com/shyamd))
- small fixes [\#115](https://github.com/materialsproject/maggma/pull/115) ([jmmshn](https://github.com/jmmshn))
- Store updates [\#114](https://github.com/materialsproject/maggma/pull/114) ([jmmshn](https://github.com/jmmshn))
- \[WIP\] Add EndpointCluster and ClusterManager to maggma [\#66](https://github.com/materialsproject/maggma/pull/66) ([wuxiaohua1011](https://github.com/wuxiaohua1011))
## [v0.18.0](https://github.com/materialsproject/maggma/tree/v0.18.0) (2020-03-23)
[Full Changelog](https://github.com/materialsproject/maggma/compare/v0.17.3...v0.18.0)
**Merged pull requests:**
- Amazon S3 store update [\#110](https://github.com/materialsproject/maggma/pull/110) ([munrojm](https://github.com/munrojm))
## [v0.17.3](https://github.com/materialsproject/maggma/tree/v0.17.3) (2020-03-18)
[Full Changelog](https://github.com/materialsproject/maggma/compare/v0.17.2...v0.17.3)
## [v0.17.2](https://github.com/materialsproject/maggma/tree/v0.17.2) (2020-03-13)
[Full Changelog](https://github.com/materialsproject/maggma/compare/v0.17.1...v0.17.2)
## [v0.17.1](https://github.com/materialsproject/maggma/tree/v0.17.1) (2020-03-12)
[Full Changelog](https://github.com/materialsproject/maggma/compare/v0.16.1...v0.17.1)
**Merged pull requests:**
- Various Bug Fixes [\#109](https://github.com/materialsproject/maggma/pull/109) ([shyamd](https://github.com/shyamd))
- Addition of Projection Builder [\#99](https://github.com/materialsproject/maggma/pull/99) ([acrutt](https://github.com/acrutt))
- Fix issues with last\_updated in MapBuilder [\#98](https://github.com/materialsproject/maggma/pull/98) ([shyamd](https://github.com/shyamd))
- autonotebook for tqdm [\#97](https://github.com/materialsproject/maggma/pull/97) ([shyamd](https://github.com/shyamd))
## [v0.16.1](https://github.com/materialsproject/maggma/tree/v0.16.1) (2020-01-28)
[Full Changelog](https://github.com/materialsproject/maggma/compare/v0.16.0...v0.16.1)
## [v0.16.0](https://github.com/materialsproject/maggma/tree/v0.16.0) (2020-01-28)
[Full Changelog](https://github.com/materialsproject/maggma/compare/v0.15.0...v0.16.0)
**Closed issues:**
- Onotology generation from builder [\#59](https://github.com/materialsproject/maggma/issues/59)
**Merged pull requests:**
- Add MongoURIStore [\#93](https://github.com/materialsproject/maggma/pull/93) ([shyamd](https://github.com/shyamd))
- Update distinct to be more like mongo distinct [\#92](https://github.com/materialsproject/maggma/pull/92) ([shyamd](https://github.com/shyamd))
- Add count to maggma store [\#86](https://github.com/materialsproject/maggma/pull/86) ([shyamd](https://github.com/shyamd))
## [v0.15.0](https://github.com/materialsproject/maggma/tree/v0.15.0) (2020-01-23)
[Full Changelog](https://github.com/materialsproject/maggma/compare/v0.14.1...v0.15.0)
**Closed issues:**
- Builder Reporting [\#78](https://github.com/materialsproject/maggma/issues/78)
- ZeroMQ based multi-node processing [\#76](https://github.com/materialsproject/maggma/issues/76)
- Add time limits to process\_item? \(Possibly just in MapBuilder?\) [\#45](https://github.com/materialsproject/maggma/issues/45)
**Merged pull requests:**
- \[WIP\] Builder Reporting [\#80](https://github.com/materialsproject/maggma/pull/80) ([shyamd](https://github.com/shyamd))
- Updated GroupBuilder [\#79](https://github.com/materialsproject/maggma/pull/79) ([shyamd](https://github.com/shyamd))
- New Distributed Processor [\#77](https://github.com/materialsproject/maggma/pull/77) ([shyamd](https://github.com/shyamd))
## [v0.14.1](https://github.com/materialsproject/maggma/tree/v0.14.1) (2020-01-10)
[Full Changelog](https://github.com/materialsproject/maggma/compare/v0.14.0...v0.14.1)
## [v0.14.0](https://github.com/materialsproject/maggma/tree/v0.14.0) (2020-01-10)
[Full Changelog](https://github.com/materialsproject/maggma/compare/v0.13.0...v0.14.0)
**Closed issues:**
- Preserve last\_updated for MapBuilder [\#58](https://github.com/materialsproject/maggma/issues/58)
- Move away from mpi4py [\#51](https://github.com/materialsproject/maggma/issues/51)
- Run serial processor directly from builder [\#48](https://github.com/materialsproject/maggma/issues/48)
- Update while processing [\#42](https://github.com/materialsproject/maggma/issues/42)
- Running JSONStore.connect\(\) multiple times leads to undefined behavior [\#40](https://github.com/materialsproject/maggma/issues/40)
- get\_criteria directly invokes mongo commands [\#38](https://github.com/materialsproject/maggma/issues/38)
- Cursor timeouts common [\#35](https://github.com/materialsproject/maggma/issues/35)
- Possible solution to "stalled" Runner.run ? [\#29](https://github.com/materialsproject/maggma/issues/29)
**Merged pull requests:**
- Release Workflow for Github [\#75](https://github.com/materialsproject/maggma/pull/75) ([shyamd](https://github.com/shyamd))
- Documentation [\#74](https://github.com/materialsproject/maggma/pull/74) ([shyamd](https://github.com/shyamd))
- Reorg code [\#69](https://github.com/materialsproject/maggma/pull/69) ([shyamd](https://github.com/shyamd))
- Updates for new monitoring services [\#67](https://github.com/materialsproject/maggma/pull/67) ([shyamd](https://github.com/shyamd))
- fix GridFSStore [\#64](https://github.com/materialsproject/maggma/pull/64) ([gpetretto](https://github.com/gpetretto))
- Massive refactoring to get ready for v1.0 [\#62](https://github.com/materialsproject/maggma/pull/62) ([shyamd](https://github.com/shyamd))
- Bug Fixes [\#61](https://github.com/materialsproject/maggma/pull/61) ([shyamd](https://github.com/shyamd))
- GridFSStore bug fix [\#60](https://github.com/materialsproject/maggma/pull/60) ([munrojm](https://github.com/munrojm))
- Fix Store serialization with @version [\#57](https://github.com/materialsproject/maggma/pull/57) ([mkhorton](https://github.com/mkhorton))
- Update builder to work with new monty [\#56](https://github.com/materialsproject/maggma/pull/56) ([mkhorton](https://github.com/mkhorton))
## [v0.13.0](https://github.com/materialsproject/maggma/tree/v0.13.0) (2019-03-29)
[Full Changelog](https://github.com/materialsproject/maggma/compare/v0.12.0...v0.13.0)
**Merged pull requests:**
- Add timeout to MapBuilder, store process time [\#54](https://github.com/materialsproject/maggma/pull/54) ([mkhorton](https://github.com/mkhorton))
- Can update pyyaml req? [\#50](https://github.com/materialsproject/maggma/pull/50) ([dwinston](https://github.com/dwinston))
- Concat store [\#47](https://github.com/materialsproject/maggma/pull/47) ([shyamd](https://github.com/shyamd))
## [v0.12.0](https://github.com/materialsproject/maggma/tree/v0.12.0) (2018-11-19)
[Full Changelog](https://github.com/materialsproject/maggma/compare/v0.11.0...v0.12.0)
## [v0.11.0](https://github.com/materialsproject/maggma/tree/v0.11.0) (2018-11-01)
[Full Changelog](https://github.com/materialsproject/maggma/compare/v0.9.0...v0.11.0)
**Merged pull requests:**
- Better printing of validation erorrs [\#46](https://github.com/materialsproject/maggma/pull/46) ([mkhorton](https://github.com/mkhorton))
- Updates to JointStore and MapBuilder [\#44](https://github.com/materialsproject/maggma/pull/44) ([shyamd](https://github.com/shyamd))
## [v0.9.0](https://github.com/materialsproject/maggma/tree/v0.9.0) (2018-10-01)
[Full Changelog](https://github.com/materialsproject/maggma/compare/v0.8.0...v0.9.0)
**Closed issues:**
- Non-obvious error message when trying to query a Store that hasn't been connected [\#41](https://github.com/materialsproject/maggma/issues/41)
- Criteria/properties order of MongoStore.query [\#37](https://github.com/materialsproject/maggma/issues/37)
- tqdm in Jupyter [\#33](https://github.com/materialsproject/maggma/issues/33)
- query args order [\#31](https://github.com/materialsproject/maggma/issues/31)
**Merged pull requests:**
- Simplification of Validator class + tests [\#39](https://github.com/materialsproject/maggma/pull/39) ([mkhorton](https://github.com/mkhorton))
- Fix for Jupyter detection for tqdm [\#36](https://github.com/materialsproject/maggma/pull/36) ([mkhorton](https://github.com/mkhorton))
- Add tqdm widget inside Jupyter [\#34](https://github.com/materialsproject/maggma/pull/34) ([mkhorton](https://github.com/mkhorton))
- Change update\_targets log level from debug to exception [\#32](https://github.com/materialsproject/maggma/pull/32) ([mkhorton](https://github.com/mkhorton))
- Jointstore [\#23](https://github.com/materialsproject/maggma/pull/23) ([montoyjh](https://github.com/montoyjh))
## [v0.8.0](https://github.com/materialsproject/maggma/tree/v0.8.0) (2018-08-22)
[Full Changelog](https://github.com/materialsproject/maggma/compare/v0.6.5...v0.8.0)
**Merged pull requests:**
- \[WIP\] Improve/refactor examples and move inside maggma namespace [\#30](https://github.com/materialsproject/maggma/pull/30) ([dwinston](https://github.com/dwinston))
- Fix mrun with default num\_workers. Add test. [\#28](https://github.com/materialsproject/maggma/pull/28) ([dwinston](https://github.com/dwinston))
## [v0.6.5](https://github.com/materialsproject/maggma/tree/v0.6.5) (2018-06-07)
[Full Changelog](https://github.com/materialsproject/maggma/compare/v0.6.4...v0.6.5)
## [v0.6.4](https://github.com/materialsproject/maggma/tree/v0.6.4) (2018-06-07)
[Full Changelog](https://github.com/materialsproject/maggma/compare/v0.6.3...v0.6.4)
## [v0.6.3](https://github.com/materialsproject/maggma/tree/v0.6.3) (2018-06-07)
[Full Changelog](https://github.com/materialsproject/maggma/compare/v0.6.2...v0.6.3)
**Merged pull requests:**
- Add MongograntStore [\#27](https://github.com/materialsproject/maggma/pull/27) ([dwinston](https://github.com/dwinston))
## [v0.6.2](https://github.com/materialsproject/maggma/tree/v0.6.2) (2018-06-01)
[Full Changelog](https://github.com/materialsproject/maggma/compare/v0.6.1...v0.6.2)
## [v0.6.1](https://github.com/materialsproject/maggma/tree/v0.6.1) (2018-06-01)
[Full Changelog](https://github.com/materialsproject/maggma/compare/v0.6.0...v0.6.1)
**Merged pull requests:**
- Help user if e.g. target store built without lu\_field [\#26](https://github.com/materialsproject/maggma/pull/26) ([dwinston](https://github.com/dwinston))
## [v0.6.0](https://github.com/materialsproject/maggma/tree/v0.6.0) (2018-05-01)
[Full Changelog](https://github.com/materialsproject/maggma/compare/v0.5.0...v0.6.0)
**Implemented enhancements:**
- Progress Bar [\#21](https://github.com/materialsproject/maggma/issues/21)
- Query Engine equivalent [\#9](https://github.com/materialsproject/maggma/issues/9)
**Merged pull requests:**
- Progress Bars for Multiprocess Runner [\#24](https://github.com/materialsproject/maggma/pull/24) ([shyamd](https://github.com/shyamd))
- GridFS Store update: use metadata field, update removes old file\(s\) [\#20](https://github.com/materialsproject/maggma/pull/20) ([dwinston](https://github.com/dwinston))
## [v0.5.0](https://github.com/materialsproject/maggma/tree/v0.5.0) (2018-03-31)
[Full Changelog](https://github.com/materialsproject/maggma/compare/0.4.0...v0.5.0)
**Closed issues:**
- Need from pymongo collection [\#18](https://github.com/materialsproject/maggma/issues/18)
**Merged pull requests:**
- Useability updates [\#19](https://github.com/materialsproject/maggma/pull/19) ([shyamd](https://github.com/shyamd))
## [0.4.0](https://github.com/materialsproject/maggma/tree/0.4.0) (2018-02-28)
[Full Changelog](https://github.com/materialsproject/maggma/compare/0.3.0...0.4.0)
**Merged pull requests:**
- New Multiprocessor and MPI Processor [\#17](https://github.com/materialsproject/maggma/pull/17) ([shyamd](https://github.com/shyamd))
- groupby change for memory/jsonstore [\#16](https://github.com/materialsproject/maggma/pull/16) ([montoyjh](https://github.com/montoyjh))
- Rename Schema to Validator [\#15](https://github.com/materialsproject/maggma/pull/15) ([mkhorton](https://github.com/mkhorton))
## [0.3.0](https://github.com/materialsproject/maggma/tree/0.3.0) (2018-02-01)
[Full Changelog](https://github.com/materialsproject/maggma/compare/v0.2.0...0.3.0)
**Implemented enhancements:**
- Vault enabled Store [\#8](https://github.com/materialsproject/maggma/issues/8)
**Merged pull requests:**
- PR for generic Schema class [\#14](https://github.com/materialsproject/maggma/pull/14) ([mkhorton](https://github.com/mkhorton))
- Issue 8 vault store [\#13](https://github.com/materialsproject/maggma/pull/13) ([shreddd](https://github.com/shreddd))
- adds grouping function and test to make aggregation-based builds [\#12](https://github.com/materialsproject/maggma/pull/12) ([montoyjh](https://github.com/montoyjh))
## [v0.2.0](https://github.com/materialsproject/maggma/tree/v0.2.0) (2018-01-01)
[Full Changelog](https://github.com/materialsproject/maggma/compare/v0.1.0...v0.2.0)
**Closed issues:**
- LU translation functions don't serialize [\#11](https://github.com/materialsproject/maggma/issues/11)
**Merged pull requests:**
- Mongolike mixin [\#10](https://github.com/materialsproject/maggma/pull/10) ([montoyjh](https://github.com/montoyjh))
## [v0.1.0](https://github.com/materialsproject/maggma/tree/v0.1.0) (2017-11-08)
[Full Changelog](https://github.com/materialsproject/maggma/compare/78ef2e8eacc051207350dc6abe886a403982aef8...v0.1.0)
**Closed issues:**
- ditch python 2 and support only 3? [\#3](https://github.com/materialsproject/maggma/issues/3)
- Seeking clarifications [\#1](https://github.com/materialsproject/maggma/issues/1)
**Merged pull requests:**
- Do not wait until all items are processed to update targets [\#7](https://github.com/materialsproject/maggma/pull/7) ([dwinston](https://github.com/dwinston))
- Run builder with either MPI or multiprocessing [\#6](https://github.com/materialsproject/maggma/pull/6) ([matk86](https://github.com/matk86))
- add lava code and tool execution script [\#5](https://github.com/materialsproject/maggma/pull/5) ([gilbertozp](https://github.com/gilbertozp))
- Add eclipse project files to .gitignore [\#2](https://github.com/materialsproject/maggma/pull/2) ([gilbertozp](https://github.com/gilbertozp))
\* *This Changelog was automatically generated by [github_changelog_generator](https://github.com/github-changelog-generator/github-changelog-generator)*
|