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 1703 1704 1705 1706 1707 1708 1709 1710 1711 1712 1713 1714 1715 1716 1717 1718 1719 1720 1721 1722 1723 1724 1725 1726 1727 1728 1729 1730 1731 1732 1733 1734 1735 1736 1737 1738 1739 1740 1741 1742 1743 1744 1745 1746 1747 1748 1749 1750 1751 1752 1753 1754 1755 1756 1757 1758 1759 1760 1761 1762 1763 1764 1765 1766 1767 1768 1769 1770 1771 1772 1773 1774 1775 1776 1777 1778 1779 1780 1781 1782 1783 1784 1785 1786 1787 1788 1789 1790 1791 1792 1793 1794 1795 1796 1797 1798 1799 1800 1801 1802 1803 1804 1805 1806 1807 1808 1809 1810 1811 1812 1813 1814 1815 1816 1817 1818 1819 1820 1821 1822 1823 1824 1825 1826 1827 1828 1829 1830 1831 1832 1833 1834 1835 1836 1837 1838 1839 1840 1841 1842 1843 1844 1845 1846 1847 1848 1849 1850 1851 1852 1853 1854 1855 1856 1857 1858 1859 1860 1861 1862 1863 1864 1865 1866 1867 1868 1869 1870 1871 1872 1873 1874 1875 1876 1877 1878 1879 1880 1881 1882 1883 1884 1885 1886 1887 1888 1889 1890 1891 1892 1893 1894 1895 1896 1897 1898 1899 1900 1901 1902 1903 1904 1905 1906 1907 1908 1909 1910 1911 1912 1913 1914 1915 1916 1917 1918 1919 1920 1921 1922 1923 1924 1925 1926 1927 1928 1929 1930 1931 1932 1933 1934 1935 1936 1937 1938 1939 1940 1941 1942 1943 1944 1945 1946 1947 1948 1949 1950 1951 1952 1953 1954 1955 1956 1957 1958 1959 1960 1961 1962 1963 1964 1965 1966 1967 1968 1969 1970 1971 1972 1973 1974 1975 1976 1977 1978 1979 1980 1981 1982 1983 1984 1985 1986 1987 1988 1989 1990 1991 1992 1993 1994 1995 1996 1997 1998 1999 2000 2001 2002 2003 2004 2005 2006 2007 2008 2009 2010 2011 2012 2013 2014 2015 2016 2017 2018 2019 2020 2021 2022 2023 2024 2025 2026 2027 2028 2029 2030 2031 2032 2033 2034 2035 2036 2037 2038 2039 2040 2041 2042 2043 2044 2045 2046 2047 2048 2049 2050 2051 2052 2053 2054 2055 2056 2057 2058 2059 2060 2061 2062 2063 2064 2065 2066 2067 2068 2069 2070 2071 2072 2073 2074 2075 2076 2077 2078 2079 2080 2081 2082 2083 2084 2085 2086 2087 2088 2089 2090 2091 2092 2093 2094 2095 2096 2097 2098 2099 2100 2101 2102 2103 2104 2105 2106 2107 2108 2109 2110 2111 2112 2113 2114 2115 2116 2117 2118 2119 2120 2121 2122 2123 2124 2125 2126 2127 2128 2129 2130 2131 2132 2133 2134 2135 2136 2137 2138 2139 2140 2141 2142 2143 2144 2145 2146 2147 2148 2149 2150 2151 2152 2153 2154 2155 2156 2157 2158 2159 2160 2161 2162 2163 2164 2165 2166 2167 2168 2169 2170 2171 2172 2173 2174 2175 2176 2177 2178 2179 2180 2181 2182 2183 2184 2185 2186 2187 2188 2189 2190 2191 2192 2193 2194 2195 2196 2197 2198 2199 2200 2201 2202 2203 2204 2205 2206 2207 2208 2209 2210 2211 2212 2213 2214 2215 2216 2217 2218 2219 2220 2221 2222 2223 2224 2225 2226 2227 2228 2229 2230 2231 2232 2233 2234 2235 2236 2237 2238 2239 2240 2241 2242 2243 2244 2245 2246 2247 2248 2249 2250 2251 2252 2253 2254 2255 2256 2257 2258 2259 2260 2261 2262 2263 2264 2265 2266 2267 2268 2269 2270 2271 2272 2273 2274 2275 2276 2277 2278 2279 2280 2281 2282 2283 2284 2285 2286 2287 2288 2289 2290 2291 2292 2293 2294 2295 2296 2297 2298 2299 2300 2301 2302 2303 2304 2305 2306 2307 2308 2309 2310 2311 2312 2313 2314 2315 2316 2317 2318 2319 2320 2321 2322 2323 2324 2325 2326 2327 2328 2329 2330 2331 2332 2333 2334 2335 2336 2337 2338 2339 2340 2341 2342 2343 2344 2345 2346 2347 2348 2349 2350 2351 2352 2353 2354 2355 2356 2357 2358 2359 2360 2361 2362 2363 2364 2365 2366 2367 2368 2369 2370 2371 2372 2373 2374 2375 2376 2377 2378 2379 2380 2381 2382 2383 2384 2385 2386 2387 2388 2389 2390 2391 2392 2393 2394 2395 2396 2397 2398 2399 2400 2401 2402 2403 2404 2405 2406 2407 2408 2409 2410 2411 2412 2413 2414 2415 2416 2417 2418 2419 2420 2421 2422 2423 2424 2425 2426 2427 2428 2429 2430 2431 2432 2433 2434 2435 2436 2437 2438 2439 2440 2441 2442 2443 2444 2445 2446 2447 2448 2449 2450 2451 2452 2453 2454 2455 2456 2457 2458 2459 2460 2461 2462 2463 2464 2465 2466 2467 2468 2469 2470 2471 2472 2473 2474 2475 2476 2477 2478 2479
|
Unreleased Changes
------------------
3.242.0 (2026-02-02)
------------------
* Feature - Include HTTP status code and body in errors whehn retrieving ECS credentials and Instance Profile credentials.
3.241.4 (2026-01-16)
------------------
* Issue - Rewind IO during initialization for `AwsChunkedTrailerDigestIO`.
3.241.3 (2026-01-08)
------------------
* Issue - Disable request trailer checksums when using non-HTTPs endpoints.
3.241.2 (2026-01-07)
------------------
* Issue - Preserve existing Content-Encoding when applying request trailer checksum.
3.241.1 (2026-01-06)
------------------
* Issue - Fix memory leak in ClockSkew retry plugin by normalizing endpoints to prevent unlimited hash growth.
3.241.0 (2026-01-05)
------------------
* Feature - Improved memory efficiency when calculating request checksums.
3.240.0 (2025-12-16)
------------------
* Feature - Updated configuration values for `defaults_mode`.
* Issue - Prioritizes JSON over CBOR when both are supported for stubbed clients.
3.239.2 (2025-11-25)
------------------
* Issue - Fix `login_credentials` in credentials chain when config is enabled.
3.239.1 (2025-11-21)
------------------
* Issue - Fixed HTTP/2 connection issues when using custom ports.
3.239.0 (2025-11-20)
------------------
* Feature - Updated Aws::Signin::Client with the latest API changes.
* Issue - Fix region configuration for LoginCredential's Signin client.
3.238.0 (2025-11-19)
------------------
* Feature - Updated Aws::Signin::Client with the latest API changes.
* Feature - Updated Aws::STS::Client with the latest API changes.
* Feature - IAM now supports outbound identity federation via the STS GetWebIdentityToken API, enabling AWS workloads to securely authenticate with external services using short-lived JSON Web Tokens.
* Feature - Add `LoginCredentials` which retrieves credentials from AWS Sign-In. Support `aws-sdk-signin` alias gem.
3.237.0 (2025-11-10)
------------------
* Feature - Updated Aws::STS::Client with the latest API changes.
* Feature - Added GetDelegatedAccessToken API, which is not available for general use at this time.
3.236.0 (2025-10-30)
------------------
* Feature - Updated Aws::STS::Client with the latest API changes.
* Feature - Updated Aws::SSO::Client with the latest API changes.
* Feature - Update endpoint ruleset parameters casing
3.235.0 (2025-10-24)
------------------
* Feature - Updated Aws::SSOOIDC::Client with the latest API changes.
* Feature - Update endpoint ruleset parameters casing
3.234.0 (2025-10-21)
------------------
* Issue - Fix `request_checksum_calculation` `when_required` mode to only calculate checksums when explicitly provided by user.
* Feature - Add `CREDENTIALS_CODE` metric for `static_profile_` prefixed methods in default credential chain.
3.233.0 (2025-09-23)
------------------
* Feature - Updated Aws::SSOOIDC::Client with the latest API changes.
* Feature - This release includes exception definition and documentation updates.
3.232.0 (2025-08-28)
------------------
* Feature - Updated Aws::SSO::Client with the latest API changes.
* Feature - Remove incorrect endpoint tests
3.231.0 (2025-08-26)
------------------
* Feature - Remove incorrect endpoint tests
* Feature - Add support for ENV as credential source for `AssumeRoleCredentials`.
3.230.0 (2025-08-21)
------------------
* Feature - Remove incorrect endpoint tests
3.229.0 (2025-08-04)
------------------
* Feature - Updated Aws::STS::Client with the latest API changes.
* Feature - Updated Aws::SSOOIDC::Client with the latest API changes.
* Feature - Updated Aws::SSO::Client with the latest API changes.
3.228.0 (2025-07-31)
------------------
* Feature - Add `bigdecimal` as a dependency. For systems that are not able to build native extension gems, prefer the locally installed `bigdecimal` with `bundle install --prefer-local`.
3.227.0 (2025-07-21)
------------------
* Feature - Updated Aws::STS::Client with the latest API changes.
* Feature - Updated Aws::SSOOIDC::Client with the latest API changes.
* Feature - Updated Aws::SSO::Client with the latest API changes.
* Feature - Support an auth scheme signing preference list using `ENV['AWS_AUTH_SCHEME_PREFERENCE']` or `auth_scheme_preference` in shared configuration.
* Feature - Support metric tracking for Bedrock Bearer tokens.
3.226.3 (2025-07-17)
------------------
* Issue - Skip `Aws::InstanceProfileCredentials` instantiation when `ENV['AWS_EC2_METADATA_DISABLED']` is set to `true` in the credential resolution chain.
* Issue - Refactor `InstanceProfileCredentials` to improve code clarity and documentation.
3.226.2 (2025-07-01)
------------------
* Issue - Document incorrect behavior in protocol error parsing (specifically around query and query compatible services).
3.226.1 (2025-06-24)
------------------
* Issue - Fixed spelling in the `Aws::Errors::SignalEventError` error message.
3.226.0 (2025-06-17)
------------------
* Feature - Updated Aws::STS::Client with the latest API changes.
* Feature - The AWS Security Token Service APIs AssumeRoleWithSAML and AssumeRoleWithWebIdentity can now be invoked without pre-configured AWS credentials in the SDK configuration.
3.225.2 (2025-06-10)
------------------
* Issue - Only load required `cgi` modules for Ruby 3.5.
3.225.1 (2025-06-05)
------------------
* Issue - Fix RPCv2 parser to handle flattened list and flattened map members correctly for `AwsQueryCompatible` services.
3.225.0 (2025-06-02)
------------------
* Feature - AWS SDK for Ruby no longer supports Ruby runtime versions 2.5 and 2.6.
3.224.1 (2025-05-28)
------------------
* Issue - Signal data in http response listeners prior to writing, so that data can be inspected or verified before potential mutation.
3.224.0 (2025-05-12)
------------------
* Feature - Updated Aws::STS::Client with the latest API changes.
* Feature - Updated Aws::SSOOIDC::Client with the latest API changes.
* Feature - Updated Aws::SSO::Client with the latest API changes.
* Feature - Support `ENV['AWS_DISABLE_HOST_PREFIX_INJECTION']` and `disable_host_prefix_injection` shared config to disable host prefix injection for all services.
3.223.0 (2025-05-01)
------------------
* Feature - Updated Aws::STS::Client with the latest API changes.
3.222.3 (2025-04-28)
------------------
* Issue - Do not dynamically create operation methods from the API. (#3234)
3.222.2 (2025-04-16)
------------------
* Issue - Additional metrics collection for credentials in the User-Agent plugin.
3.222.1 (2025-03-28)
------------------
* Issue - Allow explicit modeled headers to override prefixed headers for `rest` protocols.
3.222.0 (2025-03-27)
------------------
* Feature - Updated Aws::SSOOIDC::Client with the latest API changes.
* Feature - This release adds AwsAdditionalDetails in the CreateTokenWithIAM API response.
3.221.0 (2025-03-24)
------------------
* Feature - Add `logger` as an explicit dependency for Ruby 3.5.
* Issue - Enable ALPN over TLS for H2 Connection by default.
* Issue - Fix HTTP-2 connections to properly use config values configured on the client.
3.220.2 (2025-03-20)
------------------
* Issue - Enable ALPN over TLS for H2 by default.
3.220.1 (2025-03-06)
------------------
* Issue - Convert stubs at request time.
3.220.0 (2025-03-04)
------------------
* Feature - Updated Aws::STS::Client with the latest API changes.
3.219.0 (2025-02-18)
------------------
* Feature - Updated Aws::STS::Client with the latest API changes.
* Feature - Updated Aws::SSOOIDC::Client with the latest API changes.
* Feature - Updated Aws::SSO::Client with the latest API changes.
3.218.1 (2025-02-07)
------------------
* Issue - Add handling of block in ExtendedSession delegation (#3178).
3.218.0 (2025-02-06)
------------------
* Feature - Updated Aws::STS::Client with the latest API changes.
* Feature - Updated Aws::SSOOIDC::Client with the latest API changes.
* Feature - Updated Aws::SSO::Client with the latest API changes.
3.217.1 (2025-01-30)
------------------
* Issue - Add `transfer-encoding` and `connection` to list of unsigned sigv4 headers.
3.217.0 (2025-01-24)
------------------
* Feature - Updated Aws::SSOOIDC::Client with the latest API changes.
* Feature - Fixed typos in the descriptions.
3.216.1 (2025-01-22)
------------------
* Issue - Use epoch seconds instead of milliseconds in cbor encode/decode.
* Issue - Add handling of block in response delegation (#3169).
3.216.0 (2025-01-15)
------------------
* Feature - Updated Aws::STS::Client with the latest API changes.
* Feature - Updated Aws::SSOOIDC::Client with the latest API changes.
* Feature - Updated Aws::SSO::Client with the latest API changes.
* Feature - Always calculate request checksums for operations that support or require it. Supported config options are `when_supported` and `when_required`. The default value is `when_supported`. This option is configured in code with `:request_checksum_calculation`, in the shared config file as `request_checksum_calculation`, and in the ENV as `ENV['AWS_REQUEST_CHECKSUM_CALCULATION']`.
* Feature - Always validate response checksums for operations that support or require it. Supported config options are `when_supported` and `when_required`. The default value is `when_supported`. This option is configured in code with `:response_checksum_validation`, in the shared config file as `response_checksum_validation`, and in the ENV as `ENV['AWS_RESPONSE_CHECKSUM_VALIDATION']`.
* Feature - Support CRC64NVME checksums through the `aws-crt` gem.
3.215.1 (2025-01-14)
------------------
* Issue - Fixed error when attempting to log an unlinked tempfile.
3.215.0 (2025-01-10)
------------------
* Feature - Updated Aws::STS::Client with the latest API changes.
* Feature - Fixed typos in the descriptions.
3.214.1 (2024-12-28)
------------------
* Issue - Fix documentation that references a non-existent method.
3.214.0 (2024-11-25)
------------------
* Feature - Updated configuration values for `defaults_mode`.
3.213.0 (2024-11-14)
------------------
* Feature - Updated Aws::STS::Client with the latest API changes.
* Feature - This release introduces the new API 'AssumeRoot', which returns short-term credentials that you can use to perform privileged tasks.
3.212.0 (2024-11-06)
------------------
* Feature - Updated Aws::STS::Client with the latest API changes.
3.211.0 (2024-10-21)
------------------
* Feature - Support functionality for services that migrate from AWS Query to AWS JSON or CBOR.
* Issue - Fix RPCv2 protocol to always send an Accept header for CBOR.
3.210.0 (2024-10-18)
------------------
* Feature - Updated Aws::STS::Client with the latest API changes.
* Feature - Updated Aws::SSOOIDC::Client with the latest API changes.
* Feature - Updated Aws::SSO::Client with the latest API changes.
* Feature - reduce memory usage by not using legacy endpoint data unless required.
3.209.1 (2024-09-25)
------------------
* Issue - Add all core plugins to autoloads.
3.209.0 (2024-09-24)
------------------
* Feature - Updated Aws::STS::Client with the latest API changes.
* Feature - Updated Aws::SSOOIDC::Client with the latest API changes.
* Feature - Updated Aws::SSO::Client with the latest API changes.
* Issue - Add service identifiers to GlobalConfig's list of identifiers outside of autoload (#3113).
* Issue - Ignore invalid ARNs when trying to parse accountId in assume role credentials.
3.208.0 (2024-09-23)
------------------
* Feature - Updated Aws::STS::Client with the latest API changes.
* Feature - Updated Aws::SSOOIDC::Client with the latest API changes.
* Feature - Updated Aws::SSO::Client with the latest API changes.
* Feature - Use autoloading at the service level to load service clients and resources.
3.207.0 (2024-09-20)
------------------
* Feature - Updated Aws::STS::Client with the latest API changes.
* Feature - Updated Aws::SSOOIDC::Client with the latest API changes.
* Feature - Updated Aws::SSO::Client with the latest API changes.
* Feature - Support Account ID credentials using `ENV['AWS_ACCOUNT_ID']`, `aws_account_id` shared config, or the `account_id` Client configuration option.
* Feature - Support Account ID endpoint mode using `ENV['AWS_ACCOUNT_ID_ENDPOINT_MODE']`, `aws_account_id_endpoint_mode` shared config, or the `account_id_endpoint_mode` Client configuration option. Defaults to `preferred`, which will use the account id endpoint if available. Set to `disabled` to disable account id endpoints. Set to `required` to require account id endpoint usage; an error is raised if credentials do not have an account id.
3.206.0 (2024-09-17)
------------------
* Feature - Support `sigv4a` endpoint auth without CRT.
3.205.0 (2024-09-11)
------------------
* Feature - Updated Aws::STS::Client with the latest API changes.
* Feature - Updated Aws::SSOOIDC::Client with the latest API changes.
* Feature - Updated Aws::SSO::Client with the latest API changes.
* Issue - Additional metrics collection in the User-Agent plugin.
3.204.0 (2024-09-10)
------------------
* Feature - Updated Aws::STS::Client with the latest API changes.
* Feature - Updated Aws::SSOOIDC::Client with the latest API changes.
* Feature - Updated Aws::SSO::Client with the latest API changes.
* Issue - Add support for `ssl_cert` and `ssl_key` configuration options to support mTLS.
3.203.0 (2024-09-03)
------------------
* Feature - Updated Aws::STS::Client with the latest API changes.
* Feature - Updated Aws::SSOOIDC::Client with the latest API changes.
* Feature - Updated Aws::SSO::Client with the latest API changes.
* Feature - Add support for Observability which includes a configuration, `telemetry_provider` and an OpenTelemetry-based telemetry provider.
3.202.2 (2024-08-30)
------------------
* Issue - revert auto-loading of bundled gems.
3.202.1 (2024-08-29)
------------------
* Issue - require default plugins when loading aws-sdk-core.
3.202.0 (2024-08-27)
------------------
* Feature - Updated Aws::STS::Client with the latest API changes.
* Feature - Updated Aws::SSOOIDC::Client with the latest API changes.
* Feature - Updated Aws::SSO::Client with the latest API changes.
* Issue - Reduce initial memory usage by auto-loading bundled gems (STS, SSO, SSOOIDC).
3.201.5 (2024-08-15)
------------------
* Issue - Allow legacy/undocumented `sigv4_signer` configuration to override resolved signer.
* Issue - Consider sigv4a supported without crt check.
3.201.4 (2024-08-08)
------------------
* Issue - Update waiters to handle expected boolean values when matching errors.
3.201.3 (2024-07-23)
------------------
* Issue - Add `disableNormalizePath` when resolving auth_scheme for S3.
3.201.2 (2024-07-18)
------------------
* Issue - Allow modeled types to be used for Union inputs.
* Issue - Ensure that nested sensitive members and sensitive members of lists and maps are filtered.
3.201.1 (2024-07-05)
------------------
* Issue - Fix `Aws::ProcessCredentials` warning in cases where shared config is used.
3.201.0 (2024-07-02)
------------------
* Feature - Updated Aws::STS::Client with the latest API changes.
* Feature - Updated Aws::SSOOIDC::Client with the latest API changes.
* Feature - Updated Aws::SSO::Client with the latest API changes.
* Feature - Support `auth` trait to enable SigV4a based services.
* Feature - Support configuration for sigv4a signing regions using `ENV['AWS_SIGV4A_SIGNING_REGION_SET']`, `sigv4a_signing_region_set` shared config, or the `sigv4a_signing_region_set` client option.
3.200.0 (2024-06-28)
------------------
* Feature - Updated Aws::STS::Client with the latest API changes.
* Feature - Updated Aws::SSOOIDC::Client with the latest API changes.
* Feature - Updated Aws::SSO::Client with the latest API changes.
3.199.0 (2024-06-25)
------------------
* Feature - Support RpcV2 protocol.
* Feature - Add CBOR encoder and decoder.
* Issue - Enhance, refactor, and rebase protocols to be consistent. Ensure protocol tests are run for each engine.
3.198.0 (2024-06-24)
------------------
* Feature - Updated Aws::STS::Client with the latest API changes.
* Feature - Updated Aws::SSOOIDC::Client with the latest API changes.
* Feature - Updated Aws::SSO::Client with the latest API changes.
* Feature - Support `:plugins` option on all Clients or using `Aws.config[:plugins]`.
3.197.2 (2024-06-20)
------------------
* Issue - fix issue in Endpoint `attr` matcher when path is only an array index.
* Issue - Fix trailing slash in endpoint URLs for rest-json and rest-xml services.
3.197.1 (2024-06-19)
------------------
* Issue - Support an array of string arguments for `Aws::ProcessCredentials` to be executed by `system`.
3.197.0 (2024-06-05)
------------------
* Issue - Ensure no UTC offset when deserializing `iso8601` timestamp format values.
* Feature - Bump User Agent to version 2.1 to track business metrics. This changes the User Agent plugin order to be just before sending.
3.196.1 (2024-05-14)
------------------
* Issue - Fix `ConnectionPool` for `.empty!` and `.clear!` since it prevented adding a new key from being added to the pool (#3020).
3.196.0 (2024-05-13)
------------------
* Feature - Updated Aws::STS::Client with the latest API changes.
* Feature - Updated Aws::SSOOIDC::Client with the latest API changes.
* Feature - Updated Aws::SSO::Client with the latest API changes.
3.195.0 (2024-05-10)
------------------
* Feature - Updated Aws::SSOOIDC::Client with the latest API changes.
* Feature - Updated request parameters for PKCE support.
3.194.2 (2024-05-07)
------------------
* Issue - Fix issue where `ConnectionPool` size iteration would prevent a new key from being added to the pool.
3.194.1 (2024-05-03)
------------------
* Issue - Update EC2 protocol to not serialize empty lists.
3.194.0 (2024-04-30)
------------------
* Feature - Add an API private cache for S3 Express and Access Grants.
3.193.0 (2024-04-25)
------------------
* Feature - Updated Aws::STS::Client with the latest API changes.
* Feature - Updated Aws::SSOOIDC::Client with the latest API changes.
* Feature - Updated Aws::SSO::Client with the latest API changes.
* Issue - Update event stream documentation.
* Issue - Move `InvocationId` plugin to all clients.
* Issue - Handle event streaming content-sha256 header in the signer plugin.
* Issue - Add the event stream content type to initial requests.
* Issue - Fix `standard` and `adaptive` retry mode for event streams.
* Issue - Add `authority` to http2 headers.
* Issue - Do not treat single members in event stream structures as implicit payloads.
* Issue - Do not wait for initial response headers to start sending input events.
3.192.1 (2024-04-18)
------------------
* Issue - Drop key/value pair if value is `nil` when deserializing json maps.
3.192.0 (2024-04-16)
------------------
* Feature - Updated Aws::STS::Client with the latest API changes.
* Feature - Update serializing/deserializing for all protocols to align with Smithy protocol-tests.
* Issue - Allow `nil` values in lists and maps.
* Issue - Populate headers for XML and JSON error responses.
* Issue - Support fractional seconds when parsing `DateTime` timestamps.
* Issue - Correctly serialize flattened lists for Query protocol.
* Issue - Correctly serialize payload name in Rest-XML requests.
* Issue - Fix an issue where Rest-XML requests do not have a default `Content-Type` header applied.
* Issue - Apply appropriate `Content-Type` header for payloads in Rest services.
* Issue - Correctly serialize URI label bindings in Rest requests.
* Issue - Correctly serialize and parse header bindings in Rest services.
* Issue - Ensure that null and empty headers are not sent in Rest requests.
* Issue - Ensure keys in query maps do not override modeled keys in Rest requests.
* Issue - Ensure empty blob payloads are omitted in Rest requests.
* Issue - Support parsing of `NaN`, `Infinity` and `-Infinity` float values.
* Issue - Apply appropriate `xmlName` for flattened lists and maps in Rest-XML services.
* Issue - Handle serializing of different formats of `xmlNamespace` on shapes.
* Issue - Fix deserializing of an empty blob to produce an empty string.
* Issue - Fix deserializing an empty self-closed blob to produce an empty string.
* Issue - Support parsing of different formats of error data in Rest-XML services.
3.191.6 (2024-04-02)
------------------
* Issue - Performance optimization: ensure presence and order of instance variables in `PluginOptions` (#3002).
3.191.5 (2024-03-26)
------------------
* Issue - Fix `EC2Metadata` and `InstanceProfileCredentials` to respect the port from a configured endpoint from code, ENV, or shared config.
3.191.4 (2024-03-15)
------------------
* Issue - Ensure output unions work correctly with stub_responses.
3.191.3 (2024-02-20)
------------------
* Issue - Remove base64 as dependency.
3.191.2 (2024-02-14)
------------------
* Issue - Add base64 as dependency to prepare for Ruby 3.4 release (#2984).
3.191.1 (2024-02-07)
------------------
* Issue - Warn on previously silent credential failures (#2981).
3.191.0 (2024-01-26)
------------------
* Feature - Updated Aws::STS::Client with the latest API changes.
* Feature - Updated Aws::SSOOIDC::Client with the latest API changes.
* Feature - Updated Aws::SSO::Client with the latest API changes.
* Feature - Add RBS signature files to support static type checking
3.190.3 (2024-01-16)
------------------
* Issue - Add mutex around accessing stub api_requests.
3.190.2 (2024-01-09)
------------------
* Issue - Minor performance optimization.
3.190.1 (2023-12-20)
------------------
* Issue - Add mutex around stub api_requests.
3.190.0 (2023-11-29)
------------------
* Feature - Updated Aws::STS::Client with the latest API changes.
3.189.0 (2023-11-28)
------------------
* Feature - Updated Aws::STS::Client with the latest API changes.
* Feature - Updated Aws::SSOOIDC::Client with the latest API changes.
* Feature - Updated Aws::SSO::Client with the latest API changes.
* Feature - Support S3 Express authentication.
3.188.0 (2023-11-22)
------------------
* Feature - AWS SDK for Ruby no longer supports Ruby runtime versions 2.3 and 2.4.
* Feature - Support `AWS_CONTAINER_AUTHORIZATION_TOKEN_FILE` in `ECSCredentials` and also allow for ECS and EKS link-local http addresses.
3.187.1 (2023-11-20)
------------------
* Issue - For `awsQueryCompatible` services, default an empty list or map for shapes that were previously flattened in the query protocol.
3.187.0 (2023-11-17)
------------------
* Feature - Updated Aws::STS::Client with the latest API changes.
* Feature - Updated Aws::SSOOIDC::Client with the latest API changes.
3.186.0 (2023-11-02)
------------------
* Feature - Support disabling IMDSv1 in `InstanceProfileCredentials` using `ENV['AWS_EC2_METADATA_V1_DISABLED']`, `ec2_metadata_v1_disabled` shared config, or the `disable_imds_v1` credentials option.
3.185.2 (2023-10-31)
------------------
* Issue - Fix query string support to lists of booleans, floats, integers and timestamps per rest-json protocol.
3.185.1 (2023-10-05)
------------------
* Issue - Ignore `__type` when deserializing Unions.
3.185.0 (2023-10-02)
------------------
* Feature - Updated Aws::STS::Client with the latest API changes.
* Feature - Updated Aws::SSO::Client with the latest API changes.
3.184.0 (2023-09-27)
------------------
* Feature - Change the `ServiceError` data member from read only to read/write.
3.183.1 (2023-09-25)
------------------
* Issue - Remove value inspection from param validation errors.
3.183.0 (2023-09-20)
------------------
* Feature - Updated Aws::SSOOIDC::Client with the latest API changes.
3.182.0 (2023-09-19)
------------------
* Feature - Updated Aws::SSOOIDC::Client with the latest API changes.
* Feature - Updated Aws::SSO::Client with the latest API changes.
3.181.1 (2023-09-14)
------------------
* Issue - Fix host label validation in endpoint matchers.
3.181.0 (2023-08-22)
------------------
* Feature - Add support for `on_chunk_received` callback.
3.180.3 (2023-08-09)
------------------
* Issue - Add support for sso-session names with whitespace configured by the CLI `aws sso configure` command (#2895).
3.180.2 (2023-08-07)
------------------
* Issue - Fix parsing of ini files with mixes of blank properties and nested configurations.
3.180.1 (2023-07-31)
------------------
* Issue - Remove checksums from default stubs (#2888).
3.180.0 (2023-07-25)
------------------
* Feature - Updated Aws::STS::Client with the latest API changes.
3.179.0 (2023-07-24)
------------------
* Feature - Add `checksum_validated` method to response.
3.178.0 (2023-07-11)
------------------
* Feature - Updated Aws::STS::Client with the latest API changes.
* Feature - Updated Aws::SSOOIDC::Client with the latest API changes.
* Feature - Updated Aws::SSO::Client with the latest API changes.
* Feature - Add support for configuring the endpoint URL in the shared configuration file or via an environment variable for a specific AWS service or all AWS services.
3.177.0 (2023-07-06)
------------------
* Feature - Updated Aws::STS::Client with the latest API changes.
* Feature - Updated Aws::SSOOIDC::Client with the latest API changes.
* Feature - Updated Aws::SSO::Client with the latest API changes.
* Feature - Add support for Request Compression.
3.176.1 (2023-06-29)
------------------
* Issue - Fix signing for S3/S3 Control and `aws-crt` gem for certain object keys (#2849).
* Issue - Ensure `SSOCredentials` `#expiration` is a `Time` (#2874)
3.176.0 (2023-06-28)
------------------
* Feature - Add :expiration accessor to `CredentialProvider` and do not refresh credentials when checking expiration (#2872).
3.175.0 (2023-06-15)
------------------
* Feature - Updated Aws::STS::Client with the latest API changes.
* Feature - Updated Aws::SSOOIDC::Client with the latest API changes.
* Feature - Updated Aws::SSO::Client with the latest API changes.
3.174.0 (2023-05-31)
------------------
* Feature - Updated Aws::STS::Client with the latest API changes.
* Feature - Updated Aws::SSOOIDC::Client with the latest API changes.
* Feature - Updated Aws::SSO::Client with the latest API changes.
* Feature - Improve User-Agent metrics tracking.
3.173.1 (2023-05-24)
------------------
* Issue - Updated `checksum_algorithm` plugin to use IO.copy_stream for JRuby.
3.173.0 (2023-05-18)
------------------
* Feature - Updated Aws::STS::Client with the latest API changes.
3.172.0 (2023-05-08)
------------------
* Feature - Updated Aws::STS::Client with the latest API changes.
* Feature - Add :region option to `Aws::Log::Formatter`.
3.171.1 (2023-05-04)
------------------
* Issue - Fix error code parsing in AWS query compatible JSON services.
3.171.0 (2023-03-22)
------------------
* Feature - Add support for `AWS_CONTAINER_CREDENTIALS_FULL_URI` and `AWS_CONTAINER_AUTHORIZATION_TOKEN` environment variables to `ECSCredentials`.
3.170.1 (2023-03-17)
------------------
* Issue - Reduce memory usage in H2::Connection when `http_wire_log` is not set.
3.170.0 (2023-01-25)
------------------
* Feature - Updated Aws::STS::Client with the latest API changes.
3.169.0 (2023-01-18)
------------------
* Feature - Updated Aws::STS::Client with the latest API changes.
* Feature - Updated Aws::SSOOIDC::Client with the latest API changes.
* Feature - Updated Aws::SSO::Client with the latest API changes.
* Issue - Replace runtime endpoint resolution approach with generated ruby code for STS, SSO, and SSOOIDC.
3.168.4 (2022-12-08)
------------------
* Issue - Fix Sign to not sign Sigv2 requests to S3.
3.168.3 (2022-12-02)
------------------
* Issue - Retry S3's `BadDigest` error
3.168.2 (2022-11-29)
------------------
* Issue - Allow region resolution in `AssumeRoleCredentials` from `CredentialProviderChain`.
3.168.1 (2022-11-18)
------------------
* Issue - Fix initialization of SSOTokenProvider when `AWS_PROFILE` is specified.
3.168.0 (2022-11-17)
------------------
* Feature - Updated Aws::STS::Client with the latest API changes.
3.167.0 (2022-11-09)
------------------
* Issue - Ensure the stream_thread is not killed before H2 connection status is updated (#2779).
* Feature - Add token refresh support to `SSOCredentialProvider`.
3.166.0 (2022-10-26)
------------------
* Feature - Updated Aws::STS::Client with the latest API changes.
* Feature - Updated Aws::SSOOIDC::Client with the latest API changes.
* Feature - Updated Aws::SSO::Client with the latest API changes.
3.165.1 (2022-10-25)
------------------
* Issue - Require the SignatureV4 plugin to fix compatability with older `aws-sdk-s3` versions (#2774).
3.165.0 (2022-10-25)
------------------
* Feature - Updated Aws::SSOOIDC::Client with the latest API changes.
* Feature - Updated Aws::SSO::Client with the latest API changes.
* Feature - Add support for service gems to dynamically determine their own endpoints via modeling. Service gems now generate a plugin called "Endpoints" that defines configuration for EndpointProvider, a new public type, and any client config related to endpoints. Endpoint providers will resolve values using another new public type, Endpoint Parameters, generated for each service. The plugin will use the endpoint provider to resolve an endpoint and then apply it to the request prior to serialization. Endpoint providers can be composed to change endpoint resolution logic, i.e. for testing. In addition to endpoints, the endpoint provider may also override the authentication scheme (auth scheme) which details how the request should be signed for the endpoint. A new "Sign" plugin in core replaces the SignatureV4 plugin that will generically sign any type of auth scheme that a service might have.
3.164.0 (2022-10-21)
------------------
* Feature - Updated Aws::SSOOIDC::Client with the latest API changes.
3.163.0 (2022-10-20)
------------------
* Feature - Updated Aws::SSOOIDC::Client with the latest API changes.
3.162.0 (2022-10-19)
------------------
* Feature - Updated Aws::SSOOIDC::Client with the latest API changes.
3.161.0 (2022-10-18)
------------------
* Feature - Support AwsQueryCompatible trait to read error code from x-amzn-query-error header.
3.160.0 (2022-10-13)
------------------
* Feature - Updated Aws::SSO::Client with the latest API changes.
3.159.0 (2022-10-07)
------------------
* Feature - Updated Aws::SSO::Client with the latest API changes.
3.158.1 (2022-10-06)
------------------
* Issue - Ensure that the ReadCallbackIO is always unwrapped (#2761).
3.158.0 (2022-09-30)
------------------
* Feature - Updated Aws::SSO::Client with the latest API changes.
3.157.0 (2022-09-29)
------------------
* Feature - Updated Aws::SSO::Client with the latest API changes.
3.156.0 (2022-09-27)
------------------
* Feature - Updated Aws::SSO::Client with the latest API changes.
3.155.0 (2022-09-26)
------------------
* Feature - Updated Aws::SSO::Client with the latest API changes.
3.154.0 (2022-09-23)
------------------
* Feature - Updated Aws::SSO::Client with the latest API changes.
3.153.0 (2022-09-22)
------------------
* Feature - Updated Aws::SSO::Client with the latest API changes.
3.152.0 (2022-09-21)
------------------
* Feature - Updated Aws::SSO::Client with the latest API changes.
3.151.0 (2022-09-20)
------------------
* Feature - Updated Aws::SSO::Client with the latest API changes.
3.150.0 (2022-09-19)
------------------
* Feature - Updated Aws::SSO::Client with the latest API changes.
3.149.0 (2022-09-16)
------------------
* Feature - Updated Aws::SSO::Client with the latest API changes.
3.148.0 (2022-09-15)
------------------
* Feature - Updated Aws::SSO::Client with the latest API changes.
3.147.0 (2022-09-14)
------------------
* Feature - Updated Aws::SSO::Client with the latest API changes.
3.146.0 (2022-09-13)
------------------
* Feature - Updated Aws::SSO::Client with the latest API changes.
3.145.0 (2022-09-12)
------------------
* Feature - Updated Aws::SSO::Client with the latest API changes.
3.144.0 (2022-09-09)
------------------
* Feature - Updated Aws::SSO::Client with the latest API changes.
3.143.0 (2022-09-08)
------------------
* Feature - Updated Aws::SSO::Client with the latest API changes.
3.142.0 (2022-09-07)
------------------
* Feature - Updated Aws::SSO::Client with the latest API changes.
3.141.0 (2022-09-06)
------------------
* Feature - Updated Aws::SSO::Client with the latest API changes.
3.140.0 (2022-09-02)
------------------
* Feature - Updated Aws::SSO::Client with the latest API changes.
3.139.0 (2022-09-01)
------------------
* Feature - Updated Aws::SSO::Client with the latest API changes.
3.138.0 (2022-08-31)
------------------
* Feature - Updated Aws::SSO::Client with the latest API changes.
3.137.0 (2022-08-30)
------------------
* Feature - Updated Aws::SSO::Client with the latest API changes.
* Issue - Fix errors in recursion detection when `_X_AMZN_TRACE_ID` is unset (#2748).
3.136.0 (2022-08-25)
------------------
* Feature - Updated Aws::SSO::Client with the latest API changes.
* Feature - Updated Aws::SSOOIDC::Client with the latest API changes.
3.135.0 (2022-08-24)
------------------
* Feature - Updated Aws::SSO::Client with the latest API changes.
3.134.0 (2022-08-23)
------------------
* Feature - Updated Aws::SSO::Client with the latest API changes.
* Feature - Add support for Bearer Token Authentication and TokenProviders.
* Issue - Validate that `_X_AMZN_TRACE_ID` ENV value contains only valid, non-control characters.
3.133.0 (2022-08-22)
------------------
* Feature - Moved functionality from `aws-sdk-ssooidc` into core.
3.132.0 (2022-08-08)
------------------
* Feature - Updated Aws::SSO::Client with the latest API changes.
3.131.6 (2022-08-03)
------------------
* Issue - Fix typo in `RecursionDetection`, change amz to amzn in header and env name.
3.131.5 (2022-07-28)
------------------
* Issue - Fix `to_json` usage in nested hashes by defining `as_json` (#2733).
3.131.4 (2022-07-27)
------------------
* Issue - Fix `to_json` usage on pageable responses when using Rails (#2733).
* Issue - Use `expand_path` on credential/config paths in SharedConfig (#2735).
3.131.3 (2022-07-18)
------------------
* Issue - Add support for serializing shapes on the body with `jsonvalue` members.
3.131.2 (2022-06-20)
------------------
* Issue - Populate context :request_id for XML error responses.
3.131.1 (2022-05-20)
------------------
* Issue - Bump the minimum version of `jmespath` dependency.
3.131.0 (2022-05-16)
------------------
* Feature - Updated Aws::STS::Client with the latest API changes.
3.130.2 (2022-04-22)
------------------
* Issue - Don't pass `:before_refresh` to Client constructors in RefreshingCredential implementations (#2690).
3.130.1 (2022-04-12)
------------------
* Issue - Don't call `refresh!` on non-refreshable `Credentials` when retrying errors (#2685).
3.130.0 (2022-03-11)
------------------
* Feature - Asynchronously refresh AWS credentials (#2641).
* Issue - Add x-amz-region-set to list of headers deleted for re-sign.
3.129.1 (2022-03-10)
------------------
* Issue - Make stubs thread safe by creating new responses for each operation call (#2675).
3.129.0 (2022-03-08)
------------------
* Feature - Add support for cases when `InstanceProfileCredentials` (IMDS) is unable to refresh credentials.
3.128.1 (2022-03-07)
------------------
* Issue - Fixed `Aws::PageableResponse` invalidating Ruby's global constant cache.
3.128.0 (2022-03-04)
------------------
* Feature - Updated Aws::STS::Client with the latest API changes.
3.127.0 (2022-02-24)
------------------
* Feature - Updated Aws::STS::Client with the latest API changes.
* Feature - Updated Aws::SSO::Client with the latest API changes.
* Feature - Support `HttpChecksum` trait for requests and responses.
3.126.2 (2022-02-16)
------------------
* Issue - Add a before_refresh callback to AssumeRoleCredentials (#2529).
* Issue - Raise a `NoSuchProfileError` when config and credentials files don't exist.
3.126.1 (2022-02-14)
------------------
* Issue - Set `create_time` on IMDS tokens before fetch to reduce chance of using expired tokens and retry failures due to using expired tokens.
3.126.0 (2022-02-03)
------------------
* Feature - Updated Aws::SSO::Client with the latest API changes.
* Feature - Add support for recursion detection.
3.125.6 (2022-02-02)
------------------
* Issue - Ensure default message for ServiceError is a string (#2643).
3.125.5 (2022-01-19)
------------------
* Issue - Correctly serialize empty header lists.
3.125.4 (2022-01-18)
------------------
* Issue - Add `InternalError` to `ErrorInspector` for S3 errors.
3.125.3 (2022-01-12)
------------------
* Issue - Add `ExpiredTokenException` to `ErrorInspector` for Kinesis errors.
3.125.2 (2022-01-10)
------------------
* Issue - Correctly serialize lists of strings in headers with quotes and commas.
3.125.1 (2022-01-04)
------------------
* Issue - Parse a response with consecutive spaces correctly when ox is used as the XML parser.
3.125.0 (2021-12-21)
------------------
* Feature - Updated Aws::SSO::Client with the latest API changes.
* Feature - Add `:defaults_mode` configuration - that determines how certain default configuration options are resolved in the SDK.
3.124.0 (2021-11-30)
------------------
* Feature - Updated Aws::STS::Client with the latest API changes.
* Feature - Updated Aws::SSO::Client with the latest API changes.
3.123.0 (2021-11-23)
------------------
* Feature - Updated Aws::STS::Client with the latest API changes.
3.122.1 (2021-11-09)
------------------
* Issue - Correctly serialize/deserialize header lists.
3.122.0 (2021-11-04)
------------------
* Feature - Updated Aws::STS::Client with the latest API changes.
* Feature - Updated Aws::SSO::Client with the latest API changes.
* Issue - Fix parsing of ISO8601 timestamps with millisecond precision in headers.
* Feature - Support modeled dualstack endpoints. It can be configured with shared configuration (`use_dualstack_endpoint`), an ENV variable (`AWS_USE_DUALSTACK_ENDPOINT`), and a constructor option (`:use_dualstack_endpoint`). Requests made to services without a dualstack endpoint will fail.
* Feature - Support modeled fips endpoints. It can be configured with shared configuration (`use_fips_endpoint`), an ENV variable (`AWS_USE_FIPS_ENDPOINT`), and a constructor option (`:use_fips_endpoint`). Requests made to services without a fips endpoint will fail.
3.121.6 (2021-11-02)
------------------
* Issue - Improve `SSOCredentials` error handling when profile file does not exist (#2605)
3.121.5 (2021-10-29)
------------------
* Issue - bump minimum version of `aws-partitions` (#2603).
3.121.4 (2021-10-28)
------------------
* Issue - This version has been yanked. (#2603).
* Issue - use the `EndpointProvider` to lookup signing region and name.
3.121.3 (2021-10-20)
------------------
* Issue - Use endpointPrefix when looking up the `signing_region` from the `EndpointProvider`.
3.121.2 (2021-10-18)
------------------
* Issue - Fix an issue where Rest JSON services do not have a `Content-Type` header.
* Issue - Remove blank `Content-Type` header from Net::HTTP handler, and prevent a default from being set.
* Issue - Set `Content-Length` only for HTTP methods that take a body.
3.121.1 (2021-09-24)
------------------
* Issue - Fix error in finding union member for boolean shapes with `false` values.
3.121.0 (2021-09-02)
------------------
* Feature - Add support for S3 Multi-region access point configuration.
3.120.0 (2021-09-01)
------------------
* Feature - AWS SDK for Ruby no longer supports Ruby runtime versions 1.9, 2.0, 2.1, and 2.2.
3.119.1 (2021-08-20)
------------------
* Issue - Refactored `Aws::Json::Engine` to remove dead code and replaced usage of `JSON.load` with `JSON.parse`.
3.119.0 (2021-07-30)
------------------
* Feature - Support Document Types. Document types are used to carry open content. A document type value is serialized using the same format as its surroundings and requires no additional encoding or escaping.(#2523)
3.118.0 (2021-07-28)
------------------
* Feature - Add support for Tagged Unions using a "sealed" classes like approach where each union member has a corresponding subclass.
3.117.0 (2021-07-12)
------------------
* Feature - Support IPv6 endpoints for `Aws::InstanceProfileCredentials`. It supports two shared configuration options (`ec2_metadata_service_endpoint` & `ec2_metadata_service_endpoint_mode`), two ENV variables (`AWS_EC2_METADATA_SERVICE_ENDPOINT` & `AWS_EC2_METADATA_SERVICE_ENDPOINT_MODE`), and two constructor options (`:endpoint` & `:endpoint_mode`).
* Feature - Support IPv6 endpoint for `Aws::EC2Metadata` client. It can be configured with `:endpoint` or `:endpoint_mode`.
3.116.0 (2021-07-07)
------------------
* Feature - Updated Aws::STS::Client with the latest API changes.
3.115.0 (2021-06-23)
------------------
* Feature - Add support for Assume Role Chaining in profiles. (#2531)
* Issue - Fixed an issue with `Seahorse::Client::H2::Connection` for non-https endpoints. (#2542)
3.114.3 (2021-06-15)
------------------
* Issue - Fixed an issue with `Aws::PageableResponse` where it was modifying original params hash, causing frozen hashes to fail.
3.114.2 (2021-06-09)
------------------
* Issue - Fixed an issue with `Aws::PageableResponse` where intentionally nil tokens were not merged into the params for the next call.
3.114.1 (2021-06-02)
------------------
* Issue - Change XML Builder to not indent by default
3.114.0 (2021-04-13)
------------------
* Feature - Updated Aws::STS::Client with the latest API changes.
3.113.1 (2021-03-29)
------------------
* Issue - Ensure end of line characters are correctly encoded in XML.
3.113.0 (2021-03-10)
------------------
* Feature - Updated Aws::STS::Client with the latest API changes.
* Feature - Updated Aws::SSO::Client with the latest API changes.
3.112.1 (2021-03-04)
------------------
* Issue - Include LICENSE, CHANGELOG, and VERSION files with this gem.
3.112.0 (2021-02-02)
------------------
* Feature - The `hostPrefix` trait will now be applied to any customer provided `:endpoint`. This bug fix is a minor behavioral change for clients using custom endpoints for `s3control`, `iotsitewise`, and `servicediscovery`. This behavior can be disabled by configuring `:disable_host_prefix_injection` to `true`.
3.111.2 (2021-01-19)
------------------
* Issue - Fix a loading issue with SSO and STS gem aliases using `require_relative` instead of `require`.
3.111.1 (2021-01-15)
------------------
* Issue - Fix an issue with `max_attempts` validation raising incorrectly.
3.111.0 (2021-01-11)
------------------
* Feature - Adds an IMDSv2 client as `Aws::EC2Metadata`.
3.110.0 (2020-12-03)
------------------
* Feature - Updated Aws::STS::Client with the latest API changes.
* Issue - Support `aws-sdk-sts` alias gem.
* Issue - Retry when `Net:HTTPFatalError` is thrown by the `Net::HTTP` library. This can occur when proxy connections are configured. (#2439)
3.109.3 (2020-11-17)
------------------
* Issue - Use full namespace for SSO Client when creating `SSOCredentials`
3.109.2 (2020-11-04)
------------------
* Issue - Check for flattened on ref for lists when serializing.
3.109.1 (2020-10-05)
------------------
* Issue - For errors without a message, default to the error class. (#2388)
3.109.0 (2020-09-30)
------------------
* Feature - Add `Seahorse::Util.host_label?` to check strings for valid RFC-3986 host labels.
* Feature - Add `Aws::ARN#to_h`.
3.108.0 (2020-09-25)
------------------
* Feature - Updated Aws::STS::Client with the latest API changes.
3.107.0 (2020-09-15)
------------------
* Feature - Updated Aws::STS::Client with the latest API changes.
* Issue - Fix circular dependency of `aws-sdk-sso` and `aws-sdk-core` (#2405).
3.106.0 (2020-09-14)
------------------
* Feature - Support `AWS_CA_BUNDLE` ENV variable and `ca_bundle` shared configuration options. The `:ssl_ca_bundle` client option will override either of these options. (#1907)
3.105.0 (2020-08-25)
------------------
* Feature - Updated Aws::STS::Client with the latest API changes.
* Feature - Updated Aws::SSO::Client with the latest API changes.
* Feature - Add `SSOCredentials`. Moved functionality from `aws-sdk-sso` into core.
3.104.4 (2020-08-19)
------------------
* Issue - Use Aws::Json for parsing instead of JSON
3.104.3 (2020-07-23)
------------------
* Issue - Revert duplication of params. Ensure code that relied on internal modification of parameters is not broken.
3.104.2 (2020-07-22)
------------------
* Issue - Validate IO like objects support read,rewind and size unless streaming. Fixes #2364
3.104.1 (2020-07-20)
------------------
* Issue - Duplicate params to ensure user provided params are not modified. Fixes #2366
3.104.0 (2020-07-15)
------------------
* Feature - Add headers to the `ResponseTarget` callback. A block passed as the response target on a streaming method will be called with the `chunk` and `headers`.
* Feature - Added the `RequestCallback` plugin which allows clients and methods to set `on_chunk_sent` to a `Proc` which will be called as each chunk of the request body is sent.
3.103.0 (2020-07-01)
------------------
* Feature - Updated the list of parameters to filter when logging.
3.102.1 (2020-06-25)
------------------
* Issue - Set the `response_target` on the context when deleting it from the parameters.
3.102.0 (2020-06-24)
------------------
* Feature - Updated the list of parameters to filter when logging.
3.101.0 (2020-06-23)
------------------
* Feature - Updated Aws::STS::Client with the latest API changes.
* Feature - Added sensitive params to request and response Types instead of just on a large list.
* Feature - Provide an option `:filter_sensitive_params` for `Aws::Log::Formatter` to allow disabling of the sensitive param filter (#2312, #2105, #2082).
3.100.0 (2020-06-15)
------------------
* Feature - Updated the list of parameters to filter when logging.
3.99.2 (2020-06-12)
------------------
* Issue - Don't retry streaming requests with blocks (#2311)
3.99.1 (2020-06-11)
------------------
* Issue - Republish after incorrect yank.
3.99.0 (2020-06-10)
------------------
* Issue - This version has been yanked. (#2327).
* Feature - Updated Aws::STS::Client with the latest API changes.
* Feature - Updated the list of parameters to filter when logging.
* Feature - Support `httpChecksumRequired` on operations that require Content MD5 validation.
* Issue - Validate `:region` as a valid DNS host label.
3.98.0 (2020-06-05)
------------------
* Feature - Updated the list of parameters to filter when logging.
3.97.1 (2020-06-01)
------------------
* Issue - Convert ENV['AWS_MAX_ATTEMPTS'] String value to Integer when set. (#2319)
* Issue - Handle unknown and unmodeled events from event streams by ignoring them and providing a new callback rather than raising an error.
3.97.0 (2020-05-28)
------------------
* Feature - Default endpoint_discovery to `true` for services with at least one operation that requires it.
* Feature - Updated Aws::STS::Client with the latest API changes.
3.96.1 (2020-05-18)
------------------
* Issue - Raise `ArgumentError` for XML services when required URI elements are not included.
3.96.0 (2020-05-15)
------------------
* Feature - Updated the list of parameters to filter when logging.
3.95.0 (2020-05-07)
------------------
* Feature - Updated Aws::STS::Client with the latest API changes.
3.94.1 (2020-05-04)
------------------
* Issue - When handling errors in XML responses, don't set a new error on the response if one is already set.
3.94.0 (2020-04-08)
------------------
* Feature - Updated the list of parameters to filter when logging.
* Issue - Update dependency on aws-eventstream
3.93.0 (2020-04-06)
------------------
* Feature - Updated the list of parameters to filter when logging.
3.92.0 (2020-03-20)
------------------
* Feature - Updated Aws::STS::Client with the latest API changes.
* Issue - Change the default of `sts_regional_endpoints` from 'legacy' to 'regional'.
3.91.1 (2020-03-10)
------------------
* Issue - Rescue from `JSON::ParserError` when using `Oj.mimic_JSON`. (#2247)
3.91.0 (2020-03-09)
------------------
* Feature - Updated Aws::STS::Client with the latest API changes.
* Feature - Add `standard` and `adaptive` retry modes.
3.90.1 (2020-02-14)
------------------
* Issue - Perform a case-insensitive comparison when filtering sensitive parameters from logs
* Issue - Add passthrough of region from client to STS when using `assume_role_web_identity_credentials`.
3.90.0 (2020-02-12)
------------------
* Issue - Updated the list of parameters to filter when logging.
* Issue - Parse all values from shared credentials file when using `Aws.shared_config`.
* Issue - Honor explicit profile in client config when credentials from AWS_ environment variables are present.
* Issue - Fixed a bug where `Transfer-Encoding` could never be set to `chunked` in streaming operations because all body objects (`String`, `StringIO`) would respond to `#size`.
3.89.1 (2020-01-14)
------------------
* Issue - Fix erroneously reaped sessions from `Seahorse::Client::NetHttp::ConnectionPool` due to bad `last_used` time calculation
* Issue - Use monotonic clocks when reaping sessions in `Seahorse::Client::NetHttp::ConnectionPool`
* Issue - Fix "Conn close because of keep_alive_timeout" when reusing `Seahorse::Client::NetHttp::ConnectionPool` sessions
3.89.0 (2020-01-13)
------------------
* Feature - Updated the list of parameters to filter when logging.
3.88.0 (2020-01-10)
------------------
* Feature - Updated the list of parameters to filter when logging.
3.87.0 (2020-01-09)
------------------
* Feature - Updated Aws::STS::Client with the latest API changes.
* Issue - Reuse connections even if `http_wire_trace` is true.
3.86.0 (2019-12-13)
------------------
* Feature - Updated the list of parameters to filter when logging.
3.85.1 (2019-12-11)
------------------
* Issue - Change default timeout to 1 and number of retries to 1 for `InstanceProfileCredentials`.
3.85.0 (2019-12-09)
------------------
* Feature - Add STS Presigner module with a method to generate a presigned EKS token.
* Issue - Fix issue for log formatters in clients where http_response_body does not respond to `rewind` when using a block.
3.84.0 (2019-12-04)
------------------
* Feature - Updated the list of parameters to filter when logging.
3.83.0 (2019-12-03)
------------------
* Feature - Updated the list of parameters to filter when logging.
3.82.0 (2019-11-25)
------------------
* Feature - Updated the list of parameters to filter when logging.
3.81.0 (2019-11-22)
------------------
* Feature - Updated Aws::STS::Client with the latest API changes.
3.80.0 (2019-11-20)
------------------
* Feature - Updated the list of parameters to filter when logging.
3.79.0 (2019-11-19)
------------------
* Feature - Support EC2 IMDS updates.
3.78.0 (2019-11-15)
------------------
* Feature - Updated the list of parameters to filter when logging.
3.77.0 (2019-11-13)
------------------
* Feature - Support `s3_us_east_1_regional_endpoint` from `SharedConfig`
3.76.0 (2019-11-07)
------------------
* Feature - Updated the list of parameters to filter when logging.
3.75.0 (2019-11-06)
------------------
* Feature - Remove deprecated `access_key_id`, `secret_access_key`, and `session_token` methods in credential providers.
3.74.0 (2019-11-05)
------------------
* Feature - Updated the list of parameters to filter when logging.
3.73.0 (2019-11-04)
------------------
* Feature - Updated the list of parameters to filter when logging.
3.72.1 (2019-10-31)
------------------
* Issue - Fix `EndpointCache#key?` to be thread safe.
3.72.0 (2019-10-24)
------------------
* Feature - Updated the list of parameters to filter when logging.
* Issue - Update minimum `aws-partition` gem dependency version
3.71.0 (2019-10-23)
------------------
* Feature - Updated Aws::STS::Client with the latest API changes.
* Feature - Support enable STS regional endpoints by `sts_regional_endpoints: 'regional'`
3.70.0 (2019-10-22)
------------------
* Feature - Updated the list of parameters to filter when logging.
3.69.1 (2019-10-18)
------------------
* Issue - Fix method redefinition warnings
3.69.0 (2019-10-17)
------------------
* Feature - Updated the list of parameters to filter when logging.
3.68.1 (2019-10-02)
------------------
* Issue - Add final deprecation warnings to `access_key_id`, `secret_access_key`, and `session_token` in credential providers.
* Issue - Remove misleading IO documentation from `BlobShape` error output.
3.68.0 (2019-09-16)
------------------
* Feature - Support assuming a role with `:source_profile` from a profile that can be resolved from a `ProcessCredentials` provider.
3.67.0 (2019-09-09)
------------------
* Feature - Updated the list of parameters to filter when logging.
3.66.0 (2019-09-04)
------------------
* Feature - Support CLI AWS_DEFAULT_PROFILE environment variable [Github Issue](https://github.com/aws/aws-sdk-ruby/issues/1452).
3.65.1 (2019-08-28)
------------------
* Issue - Auto refresh credentials for Route53 `ExpiredToken` errors.
3.65.0 (2019-08-27)
------------------
* Feature - Support assuming a role `:source_profile` profile with `AssumeRoleWebIdentityCredentials`.
3.64.0 (2019-08-20)
------------------
* Feature - Updated the list of parameters to filter when logging.
3.63.0 (2019-08-15)
------------------
* Feature - Support passing AssumeRole `duration_seconds` from shared credentials/config file.
3.62.0 (2019-08-02)
------------------
* Feature - Updated Aws::STS::Client with the latest API changes.
3.61.2 (2019-07-29)
------------------
* Issue - Add `Aws::STS::InvalidIdentityToken` and `Aws::Errors::NoSuchEndpointError` error for retry.
3.61.1 (2019-07-25)
------------------
* Issue - Fix default STS Client credential sourcing in `Aws::AssumeRoleWebIdentityCredentialsProvider`.
3.61.0 (2019-07-24)
------------------
* Feature - Updated Aws::STS::Client with the latest API changes.
3.60.0 (2019-07-23)
------------------
* Feature - Updated the list of parameters to filter when logging.
* Issue - Handle `EncodingError` when using Oj gem [Github Issue](https://github.com/aws/aws-sdk-ruby/issues/1831)
3.59.0 (2019-07-03)
------------------
* Feature - Updated the list of parameters to filter when logging.
3.58.0 (2019-07-01)
------------------
* Feature - Support `Aws::AssumeRoleWebIdentityCredentials` provider
3.57.0 (2019-06-28)
------------------
* Feature - Updated the list of parameters to filter when logging.
3.56.0 (2019-06-17)
------------------
* Feature - Updated Aws::STS::Client with the latest API changes.
* Feature - Support `:client_side_monitoring_host` configuration for CSM
3.55.0 (2019-06-14)
------------------
* Feature - Updated the list of parameters to filter when logging.
3.54.2 (2019-06-03)
------------------
* Issue - Mirgate Proc.new without a block usage #2058.
3.54.1 (2019-05-30)
------------------
* Issue - Improved exception messages in credential providers to exclude detailed parse errors that may contain sensitive information.
3.54.0 (2019-05-28)
------------------
* Feature - Updated Aws::STS::Client with the latest API changes.
* Feature - Updated the list of parameters to filter when logging.
3.53.1 (2019-05-22)
------------------
* Issue - Support #to_hash for Struct with `:members` member #2053
3.53.0 (2019-05-21)
------------------
* Feature - Updated Aws::STS::Client with the latest API changes.
* Feature - Updated the list of parameters to filter when logging.
* Feature - Adding support for modeled exceptions
3.52.1 (2019-05-15)
------------------
* Issue - Handle paginator stubs with expression #2040
3.52.0 (2019-05-14)
------------------
* Feature - Updated Aws::STS::Client with the latest API changes.
* Feature - Updated the list of parameters to filter when logging.
* Feature - Support transfer encoding and `requiresLength` trait
3.51.0 (2019-05-10)
------------------
* Feature - Updated Aws::STS::Client with the latest API changes.
3.50.0 (2019-05-06)
------------------
* Feature - Updated Aws::STS::Client with the latest API changes.
3.49.0 (2019-04-30)
------------------
* Feature - Updated the list of parameters to filter when logging.
3.48.6 (2019-04-26)
------------------
* Issue - Call RefreshingCredentials initialize method in ProcessCredentials to set mutex.
3.48.5 (2019-04-24)
------------------
* Issue - Add PriorRequestNotComplete to throttling errors.
3.48.4 (2019-04-18)
------------------
* Issue - Small memory retention reduction.
3.48.3 (2019-03-26)
------------------
* Issue - event header ":event-type" uses member name instead of shape name
3.48.2 (2019-03-20)
------------------
* Issue - Support signal events after request only [HTTP2]
3.48.1 (2019-03-19)
------------------
* Issue - Clean up unnecessary error output when 'http-2' gem is not present.
3.48.0 (2019-03-18)
------------------
* Feature - Updated the list of parameters to filter when logging.
* Feature - Fix http-2 Dependency for Old Ruby Versions (Github Issue #1994)
3.47.0 (2019-03-14)
------------------
* Feature - Support HTTP/2 based AWS event stream operations
3.46.2 (2019-02-19)
------------------
* Issue - Update NetHttp Patches per Ruby version (Github Issue: #1979)
3.46.1 (2019-02-12)
------------------
* Issue - Fix the issue that APIG SDK doesn't have regional endpoint related plugins.
3.46.0 (2019-01-16)
------------------
* Feature - Updated the list of parameters to filter when logging.
3.45.0 (2019-01-11)
------------------
* Feature - Improve Query protocol handling of empty responses, to ensure response is an instance of `Aws::EmptyStructure` rather than the class `Aws::EmptyStructure` itself.
* Issue - Plugin updates to support client-side monitoring.
3.44.2 (2019-01-04)
------------------
* Issue - Update to code paths and plugins for future SDK instrumentation and telemetry.
3.44.1 (2018-12-17)
------------------
* Issue - Update sensitive filtering logic to include `#to_s` calls of shapes.
3.44.0 (2018-12-07)
------------------
* Feature - Updated the list of parameters to filter when logging.
3.43.0 (2018-12-04)
------------------
* Feature - Update user agent structure.
3.42.0 (2018-11-29)
------------------
* Feature - Updated the list of parameters to filter when logging.
3.41.0 (2018-11-28)
------------------
* Feature - Updated the list of parameters to filter when logging.
3.40.0 (2018-11-27)
------------------
* Feature - Updated the list of parameters to filter when logging.
3.39.0 (2018-11-20)
------------------
* Feature - Updated Aws::STS::Client with the latest API changes.
* Feature - Updated the list of parameters to filter when logging.
* Feature - Adding support for endpoint trait (host prefix) per operation, to disable this feature, set `:disable_host_prefix_injection` to `false` for the client.
3.38.0 (2018-11-12)
------------------
* Feature - Updated the list of parameters to filter when logging.
* Feature - Adding `TransactionInProgressException` for throttling retry
3.37.0 (2018-11-08)
------------------
* Feature - Adding support for endpoint discovery per operation, to enable this feature, set `:endpoint_discovery` to `true` for the client. Note: only available for services with endpoint discovery support.
3.36.0 (2018-10-30)
------------------
* Feature - Updated the list of parameters to filter when logging.
3.35.0 (2018-10-24)
------------------
* Feature - Updated Aws::STS::Client with the latest API changes.
* Feature - Updated the list of parameters to filter when logging.
3.34.0 (2018-10-23)
------------------
* Feature - Updated Aws::STS::Client with the latest API changes.
* Feature - Allow 429 response code to trigger throttle detection
3.33.0 (2018-10-22)
------------------
* Feature - Update to code paths and plugins for future SDK instrumentation and telemetry.
3.32.0 (2018-10-18)
------------------
* Feature - Updated the list of parameters to filter when logging.
3.31.0 (2018-10-16)
------------------
* Feature - Updated the list of parameters to filter when logging.
3.30.0 (2018-10-04)
------------------
* Feature - Adds to code paths and plugins for future SDK instrumentation and telemetry.
3.29.0 (2018-09-28)
------------------
* Feature - Updated the list of parameters to filter when logging.
3.28.0 (2018-09-25)
------------------
* Feature - Updated the list of parameters to filter when logging.
3.27.1 (2018-09-21)
------------------
* Issue - Fixes a bug in the `:response_target` plugin error callback. Under certain circumstances a special body object can be removed before its error callback is triggered, breaking retry logic.
3.27.0 (2018-09-06)
------------------
* Feature - Adds code paths and plugins for future SDK instrumentation and telemetry to aws-sdk-sts.
3.26.0 (2018-09-05)
------------------
* Feature - Updated Aws::STS::Client with the latest API changes.
* Feature - Adds code paths and plugins for future SDK instrumentation and telemetry.
3.25.0 (2018-08-29)
------------------
* Feature - Updated the list of parameters to filter when logging.
* Issue - Add `:exclude_presign` option for #api_requests at client stubbing to allow excluding non-sent request from presigned url (Github Issue #1866)
3.24.1 (2018-08-13)
------------------
* Issue - Update `ca-bundle.crt` file with newer root certificate authorities.
3.24.0 (2018-08-03)
------------------
* Feature - Extensible Credential Providers, allows you to declare an executable to be run that outputs the credentials as a JSON payload allowing you to develop custom credential providers and easily add them to the credential resolution chain, [Docs](https://docs.aws.amazon.com/cli/latest/topic/config-vars.html#sourcing-credentials-from-external-processes)
3.23.0 (2018-07-31)
------------------
* Feature - Add Logged API Requests interface to stubbed clients
3.22.1 (2018-06-28)
------------------
* Issue - Performance enhancement to instance credential providers, to use a more precisely scoped Time parsing method for improved performance.
3.22.0 (2018-06-26)
------------------
* Feature - Updated Aws::STS::Client with the latest API changes.
* Feature - Allows you to set custom paths to shared config and shared credential files via the `AWS_CONFIG_FILE` and `AWS_SHARED_CREDENTIALS_FILE` environment variables.
* Feature - Flexible retry strategies. Provides the `:retry_max_delay`, `:retry_base_delay`, and `:retry_jitter` options, which modify the default backoff strategy without the need to define a full retry lambda from scratch.
3.21.3 (2018-06-20)
------------------
* Issue - Fix to support URI encoded characters in http_proxy
3.21.2 (2018-05-22)
------------------
* Issue - Update `EventEmitter` to `Aws::EventEmitter` [Github Issue](https://github.com/aws/aws-sdk-ruby/issues/1791)
3.21.1 (2018-05-18)
------------------
* Issue - Remove `raw_stream` tracking, [Github Issue](https://github.com/aws/aws-sdk-ruby/issues/1786)
3.21.0 (2018-05-17)
------------------
* Feature - Support `vnd.amazon.event-stream` binary stream protocol over HTTP1.1
3.20.2 (2018-04-26)
------------------
* Issue - Avoiding Net::HTTP patching for Ruby 2.5
3.20.1 (2018-04-24)
------------------
* Issue - Fix parsing flattened XML shape from shape reference for S3 https://github.com/aws/aws-sdk-ruby/issues/1764
3.20.0 (2018-04-23)
------------------
* Feature - Aws::InstanceProfileCredentials - Add sending a User-Agent other than the default User-Agent in Ruby. Adding the User-Agent `aws-sdk-ruby3/<version>` to allow protection against Server Side Request Forgery (SSRF) credential theft vectors by use of a metadata proxy.
3.19.0 (2018-04-04)
------------------
* Feature - Updated the list of parameters to filter when logging.
3.18.1 (2018-03-29)
------------------
* Issue - Fix undefined method `each`/`next` for `Enumerable::Enumerator` when this class exists in the environment
3.18.0 (2018-03-28)
------------------
* Feature - Updated Aws::STS::Client with the latest API changes.
3.17.1 (2018-03-20)
------------------
* Issue - Support timestamp shape in querystring
3.17.0 (2018-02-27)
------------------
* Feature - Updated Aws::STS::Client with the latest API changes.
* Issue - Fix Ruby warnings: Shadowed local variables "parts" and "headers"
3.16.0 (2018-02-20)
------------------
* Feature - Aws::InstanceProfileCredentials - When the `AWS_EC2_METADATA_DISABLED` environment variable is present with the value `true` (not case sensitive), the `Aws::InstanceProfileCredentials` credential provider will not be used.
3.15.0 (2018-02-06)
------------------
* Feature - Updated the list of parameters to filter when logging.
3.14.0 (2018-01-15)
------------------
* Feature - Updated Aws::STS::Client with the latest API changes.
3.13.1 (2018-01-12)
------------------
* Issue - Fix Ruby 2.5 warnings.
3.13.0 (2017-12-21)
------------------
* Feature - Updated Aws::STS::Client with the latest API changes.
3.12.0 (2017-12-20)
------------------
* Feature - Adds support for credential_source when assuming a role via shared configuration.
* Issue - Update APIGateway SDK user agent pattern
3.11.0 (2017-11-29)
------------------
* Feature - Updated the list of parameters to filter when logging.
3.10.0 (2017-11-29)
------------------
* Feature - Updated the list of parameters to filter when logging.
3.9.0 (2017-11-20)
------------------
* Feature - Updated Aws::STS::Client with the latest API changes.
* Feature - Updated the list of parameters to filter when logging.
3.8.0 (2017-11-19)
------------------
* Feature - Add support for APIGateway protocol and custom service build.
3.7.0 (2017-11-07)
------------------
* Feature - Updated Aws::STS::Client with the latest API changes.
* Feature - Updated the list of parameters to filter when logging.
3.6.1 (2017-11-07)
------------------
* Issue - Update empty struct stubbing shape
3.6.0 (2017-09-20)
------------------
* Feature - Updated the list of parameters to filter when logging.
3.5.0 (2017-09-13)
------------------
* Feature - Updated Aws::STS::Client with the latest API changes.
3.4.0 (2017-09-12)
------------------
* Feature - Updated Aws::STS::Client with the latest API changes.
3.3.1 (2017-09-11)
------------------
* Issue - Fix core util deep copy issue #1603
3.3.0 (2017-09-07)
------------------
* Feature - Updated Aws::STS::Client with the latest API changes.
3.2.1 (2017-09-06)
------------------
* Issue - Remove redundant version file.
3.2.0 (2017-08-31)
------------------
* Feature - Updated the list of parameters to filter when logging.
* Issue - Update `aws-sdk-core` gemspec metadata.
* Issue - Update `aws-sdk-core` gemspec metadata
3.1.0 (2017-08-30)
------------------
* Feature - Updated Aws::STS::Client with the latest API changes.
3.0.0 (2017-08-29)
------------------
3.0.0.rc20 (2017-08-14)
------------------
* Feature - Updated the list of parameters to filter when logging.
3.0.0.rc19 (2017-07-31)
------------------
* Feature - Updated the list of parameters to filter when logging.
3.0.0.rc18 (2017-07-24)
------------------
* Feature - Updated the list of parameters to filter when logging.
3.0.0.rc17 (2017-07-12)
------------------
* Feature - Updated Aws::STS::Client with the latest API changes.
3.0.0.rc16 (2017-07-06)
------------------
* Feature - Updated Aws::STS::Client with the latest API changes.
3.0.0.rc15 (2017-07-06)
------------------
* Feature - Updated Aws::STS::Client with the latest API changes.
3.0.0.rc14 (2017-06-29)
------------------
* Feature - Updated Aws::STS::Client with the latest API changes.
3.0.0.rc13 (2017-06-26)
------------------
* Feature - Updated Aws::STS::Client with the latest API changes.
* Feature - Updated the list of parameters to filter when logging.
* Issue - Aws::CredentialProviderChain - Fetching `AWS_PROFILE` environment variable before using `default` profile.
3.0.0.rc12 (2017-05-23)
------------------
* Feature - Updated Aws::STS::Client with the latest API changes.
* Feature - Update throttling error pool of retry
* Feature - Update `User-Agent` format
3.0.0.rc11 (2017-05-09)
------------------
* Feature - Updated Aws::STS::Client with the latest API changes.
* Feature - Updated Aws::STS::Client with the latest API changes.
3.0.0.rc10 (2017-05-09)
------------------
* Feature - Updated Aws::STS::Client with the latest API changes.
* Feature - Updated Aws::STS::Client with the latest API changes.
3.0.0.rc9 (2017-05-05)
------------------
* Feature - Updated Aws::STS::Client with the latest API changes.
* Feature - Updated Aws::STS::Client with the latest API changes.
* Feature - Added support for Ruby 2.4
* Issue - Revert 'cgi/util' change that breaks Ruby 2.4
3.0.0.rc8 (2017-04-21)
------------------
* Feature - Updated Aws::STS::Client with the latest API changes.
* Feature - Updated Aws::STS::Client with the latest API changes.
* Feature - Updated the list of parameters to filter when logging.
3.0.0.rc7 (2017-03-09)
------------------
* Feature - Updated Aws::STS::Client with the latest API changes.
* Feature - Updated Aws::STS::Client with the latest API changes.
* Feature - Updated the list of parameters to filter when logging.
3.0.0.rc6 (2017-03-08)
------------------
* Feature - Updated Aws::STS::Client with the latest API changes.
* Feature - Updated Aws::STS::Client with the latest API changes.
3.0.0.rc5 (2017-03-07)
------------------
* Feature - Updated Aws::STS::Client with the latest API changes.
* Feature - Updated Aws::STS::Client with the latest API changes.
3.0.0.rc4 (2017-03-07)
------------------
* Feature - Updated the list of parameters to filter when logging.
3.0.0.rc3 (2017-01-24)
------------------
* Feature - Updated Aws::STS::Client with the latest API changes.
* Feature - Updated Aws::STS::Client with the latest API changes.
* Feature - Updated the list of parameters to filter when logging.
3.0.0.rc2 (2016-12-09)
------------------
* Feature - Updated Aws::STS::Client with the latest API changes.
* Feature - Updated the list of parameters to filter when logging.
3.0.0.rc1 (2016-12-05)
------------------
* Feature - Initial preview release of the `aws-sdk-core` gem.
|