|
494 | 494 | '5.0.5': '5.0rc1',
|
495 | 495 | '5.0.6': '5.0.6',
|
496 | 496 | '5.2': '5.0.6',
|
497 |
| - '5.1.1': 'not-yet-loaded', |
498 |
| - '5.1.2': 'not-yet-loaded', |
499 |
| - '5.3.3': 'not-yet-loaded', |
| 497 | + '5.1.1': '5.1.1', |
| 498 | + '5.1.2': '5.1.1', |
| 499 | + '5.3.3': '5.1.1', |
500 | 500 | '5.9.1': '5.9.1',
|
501 | 501 | }
|
502 | 502 |
|
|
763 | 763 | 'dependencies': 'Which bugs <a href="#notes-dependencies">depend</a> on other bugs.',
|
764 | 764 | 'duplicates': 'Which bugs are duplicates of which other bugs.',
|
765 | 765 | 'email_bug_ignore': 'Stores lists of bugs users have opted not to receive notifications about.',
|
| 766 | + 'email_rates': 'Logs timestamps of messages sent to users so that they can be rate-limited.', |
766 | 767 | 'email_setting': 'Per-user settings controlling when email is sent to that user.',
|
767 | 768 | 'fielddefs': 'The properties of each bug field.',
|
768 | 769 | 'field_visibility': 'Tracks when custom fields are visible based on other fields on the bug.',
|
|
844 | 845 | 'dependencies': None,
|
845 | 846 | 'duplicates': None,
|
846 | 847 | 'email_bug_ignore': None,
|
| 848 | + 'email_rates': 'Bug 1062739', |
847 | 849 | 'email_setting': 'Replaces %(column-profiles-emailflags)s',
|
848 | 850 | 'field_visibility': 'Replaced %(column-fielddefs-visibility_field_id)s',
|
849 | 851 | 'fielddefs': None,
|
|
1170 | 1172 | 'user_id': 'The user ignoring the bug. (foreign key %(column-profiles-userid)s)',
|
1171 | 1173 | 'bug_id': 'The bug being ignored. (foreign key %(column-bugs-bug_id)s)',
|
1172 | 1174 | },
|
| 1175 | + 'email_rates': { |
| 1176 | + 'id': None, |
| 1177 | + 'recipient': 'The user for whom the message is intended. (foreign key %(column-profiles-userid)s)', |
| 1178 | + 'message_ts': 'The timestamp of when the message was sent.', |
| 1179 | + }, |
1173 | 1180 | 'email_setting': {
|
1174 | 1181 | 'user_id': 'The user to whom this setting applies (foreign key %(column-profiles-userid)s).',
|
1175 | 1182 | 'relationship': 'The relationship between the user and the bug. 0: Assignee; 1: QA contact; 2: Reporter; 3: CC; 4: Voter; 100: for global events, which do not depend on a relationship.',
|
|
1303 | 1310 | 'id': 'A unique number identifying this keyword.',
|
1304 | 1311 | 'name': 'The keyword itself.',
|
1305 | 1312 | 'description': 'The meaning of the keyword.',
|
| 1313 | + 'is_active': '1 if active, 0 if archived.', |
1306 | 1314 | },
|
1307 | 1315 | 'keywords': {
|
1308 | 1316 | 'bug_id': 'The bug (foreign key %(column-bugs-bug_id)s)',
|
|
1424 | 1432 | },
|
1425 | 1433 | 'profiles': {
|
1426 | 1434 | 'userid': 'A unique identifier for the user. Used in other tables to identify this user.',
|
1427 |
| - 'login_name': 'The user\'s email address. Used when logging in or providing mailto: links.', |
| 1435 | + 'login_name': [ |
| 1436 | + ( |
| 1437 | + None, |
| 1438 | + '5.2', |
| 1439 | + 'The user\'s email address. Used when logging in or providing mailto: links.' |
| 1440 | + ), |
| 1441 | + ( |
| 1442 | + '5.1.1', |
| 1443 | + None, |
| 1444 | + 'The user\'s username. Used when logging in and displayed to other users.' |
| 1445 | + ), |
| 1446 | + ], |
1428 | 1447 | 'password': 'The user\'s password, in plaintext.',
|
1429 | 1448 | 'cryptpassword': [
|
1430 | 1449 | 'The user\'s password.',
|
|
1452 | 1471 | 'disable_mail': '1 to disable all mail to this user; 0 for mail to depend on the per-user email settings in %(table-email_setting)s.',
|
1453 | 1472 | 'is_enabled': '1 if the account is enabled, 0 if it is disabled and prevented from logging in.',
|
1454 | 1473 | 'last_seen_date': 'Date the user last logged in.',
|
| 1474 | + 'email': "The user's email address.", |
1455 | 1475 | },
|
1456 | 1476 | 'profiles_activity': {
|
1457 | 1477 | 'userid': 'The profile which has changed (foreign key %(column-profiles-userid)s)',
|
|
1601 | 1621 | 'description': 'User-supplied description to identify the purpose of the key.',
|
1602 | 1622 | 'revoked': '1 if revoked, 0 if active.',
|
1603 | 1623 | 'last_used': 'Timestamp of the last time it was used.',
|
| 1624 | + 'app_id': 'Null if user-created API key. Contains a callback name if tied to a specific callback.', |
1604 | 1625 | },
|
1605 | 1626 | 'user_group_map': {
|
1606 | 1627 | 'user_id': 'The user. (foreign key %(column-profiles-userid)s)',
|
|
1791 | 1812 | 'last_changed': None,
|
1792 | 1813 | 'icon_url': None,
|
1793 | 1814 | },
|
| 1815 | + 'keyworddefs': { |
| 1816 | + 'is_active': 'Bug 69267', |
| 1817 | + }, |
1794 | 1818 | 'logincookies': {
|
1795 | 1819 | 'ipaddr': 'replacing hostname',
|
1796 | 1820 | },
|
|
1843 | 1867 | 'disable_mail': None,
|
1844 | 1868 | 'is_enabled': 'For query performance reasons it was better to check a boolean than try to check if %(column-profiles-disabledtext)s was zero length or not.',
|
1845 | 1869 | 'last_seen_date': None,
|
| 1870 | + 'email': 'Bug 218917', |
1846 | 1871 | },
|
1847 | 1872 | 'profiles_activity': {
|
1848 | 1873 | 'id': None,
|
|
1862 | 1887 | 'setting': {
|
1863 | 1888 | 'subclass': None,
|
1864 | 1889 | },
|
| 1890 | + 'user_api_keys': { |
| 1891 | + 'app_id': 'Bug 1170722', |
| 1892 | + }, |
1865 | 1893 | 'user_group_map': {
|
1866 | 1894 | 'grant_type': 'replacing "isderived"',
|
1867 | 1895 | },
|
|
2072 | 2100 | 'bugs_fulltext_comments_idx': None,
|
2073 | 2101 | 'bugs_fulltext_comments_noprivate_idx': None,
|
2074 | 2102 | },
|
2075 |
| - 'bz_schema': {}, |
| 2103 | + 'bz_schema': { |
| 2104 | + 'bz_schema_version_idx': None, |
| 2105 | + }, |
2076 | 2106 | 'category_group_map': {
|
2077 | 2107 | 'category_id': None,
|
2078 | 2108 | },
|
|
2105 | 2135 | 'email_bug_ignore': {
|
2106 | 2136 | 'email_bug_ignore_user_id_idx': None,
|
2107 | 2137 | },
|
| 2138 | + 'email_rates': { |
| 2139 | + 'PRIMARY': None, |
| 2140 | + 'email_rates_idx': None, |
| 2141 | + }, |
2108 | 2142 | 'email_setting': {
|
2109 | 2143 | 'email_setting_user_id_idx': None,
|
2110 | 2144 | },
|
|
2229 | 2263 | 'PRIMARY': None,
|
2230 | 2264 | 'login_name': None,
|
2231 | 2265 | 'profiles_extern_id_idx': None,
|
| 2266 | + 'profiles_email_idx': None, |
2232 | 2267 | },
|
2233 | 2268 | 'profiles_activity': {
|
2234 | 2269 | 'userid': None,
|
|
2321 | 2356 | 'PRIMARY': None,
|
2322 | 2357 | 'user_api_keys_api_key_idx': None,
|
2323 | 2358 | 'user_api_keys_user_id_idx': None,
|
| 2359 | + 'user_api_keys_user_id_app_id_idx': None, |
2324 | 2360 | },
|
2325 | 2361 | 'user_group_map': {
|
2326 | 2362 | 'user_id': None,
|
|
2568 | 2604 | 'PRIMARY': None,
|
2569 | 2605 | 'bugs_activity_removed_idx': None,
|
2570 | 2606 | },
|
| 2607 | + 'bz_schema': { |
| 2608 | + 'bz_schema_version_idx': None, |
| 2609 | + }, |
2571 | 2610 | 'cc': {
|
2572 | 2611 | 'bug_id': None,
|
2573 | 2612 | 'who': None,
|
|
2607 | 2646 | },
|
2608 | 2647 | 'profiles': {
|
2609 | 2648 | 'profiles_extern_id_idx': None,
|
| 2649 | + 'profiles_email_idx': None, |
2610 | 2650 | },
|
2611 | 2651 | 'profiles_activity': {
|
2612 | 2652 | 'PRIMARY': None,
|
|
2627 | 2667 | 'series': {
|
2628 | 2668 | 'series_category_idx': None,
|
2629 | 2669 | },
|
| 2670 | + 'user_api_keys': { |
| 2671 | + 'user_api_keys_user_id_app_id_idx': None, |
| 2672 | + }, |
2630 | 2673 | 'versions': {
|
2631 | 2674 | 'PRIMARY': None,
|
2632 | 2675 | 'versions_product_id_idx': None,
|
|
5957 | 6000 |
|
5958 | 6001 | <td><a href="https://github.com/justdave">justdave</a></td>
|
5959 | 6002 |
|
5960 |
| - <td>Add releases </td> 4.3.1, 4.3.2, 4.3.3, 4.4rc1, 4.4rc2, 4.4, 4.4.1, 4.4.2, 4.4.3, 4.4.4, 4.4.5, 4.4.6, 4.4.7, 4.4.8, 4.4.9, 4.4.10, 4.4.11, 4.4.12, 4.4.13, 4.4.14, 4.5.1, 4.5.2, 4.5.3, 4.5.4, 4.5.5, 4.5.6, 5.0rc1, 5.0rc2, 5.0rc3, 5.0, 5.0.1, 5.0.2, 5.0.3, 5.0.4, 5.0.4.1, 5.0.5, 5.0.6, and 5.2.</td> |
| 6003 | + <td>Add releases </td> 4.3.1, 4.3.2, 4.3.3, 4.4rc1, 4.4rc2, 4.4, 4.4.1, 4.4.2, 4.4.3, 4.4.4, 4.4.5, 4.4.6, 4.4.7, 4.4.8, 4.4.9, 4.4.10, 4.4.11, 4.4.12, 4.4.13, 4.4.14, 4.5.1, 4.5.2, 4.5.3, 4.5.4, 4.5.5, 4.5.6, 5.0rc1, 5.0rc2, 5.0rc3, 5.0, 5.0.1, 5.0.2, 5.0.3, 5.0.4, 5.0.4.1, 5.0.5, 5.0.6, 5.2, 5.1.1, 5.1.2, and 5.3.3</td> |
5961 | 6004 |
|
5962 | 6005 | </tr>
|
5963 | 6006 |
|
|
0 commit comments