Commit c126e35
authored
chore(rds): postgres add 17.6,16.10,15.14,14.19,13.22, oracle add 21.0.0.0.ru-2025-07.rur-2025-07.r1,19.0.0.0.ru-2025-07.rur-2025-07.r1, mariadb 11.8.3 (#35345)
### Issue # (if applicable)
None
### Reason for this change
https://aws.amazon.com/about-aws/whats-new/2025/08/amazon-rds-postgresql-supports-new-minor-versions/
https://aws.amazon.com/about-aws/whats-new/2025/08/amazon-rds-oracle-supports-july-2025-release-update-ru/
https://aws.amazon.com/about-aws/whats-new/2025/08/amazon-rds-mariadb-11-8-vector-support/
### Description of changes
Postgres add versions: 17.6, 16.10, 15.14, 14.19, 13.22
Oracle add versions: 21.0.0.0.ru-2025-07.rur-2025-07.r1, 19.0.0.0.ru-2025-07.rur-2025-07.r1
### Description of how you validated changes
```console
$ aws rds describe-db-engine-versions --engine postgres --output table --query 'DBEngineVersions[*].{Engine:Engine,EngineVersion:EngineVersion}'
------------------------------------
| DescribeDBEngineVersions |
+-----------+----------------------+
| Engine | EngineVersion |
+-----------+----------------------+
...
| postgres | 13.22 |
...
| postgres | 14.19 |
...
| postgres | 15.14 |
...
| postgres | 16.10 |
...
| postgres | 17.6 |
$ aws rds describe-db-engine-versions --engine oracle-ee-cdb --output table --query 'DBEngineVersions[*].{Engine:Engine,EngineVersion:EngineVersion}'
---------------------------------------------------------
| DescribeDBEngineVersions |
+----------------+--------------------------------------+
| Engine | EngineVersion |
+----------------+--------------------------------------+
...
| oracle-ee-cdb | 19.0.0.0.ru-2025-07.rur-2025-07.r1 |
...
| oracle-ee-cdb | 21.0.0.0.ru-2025-07.rur-2025-07.r1 |
```
### Checklist
- [x] My code adheres to the [CONTRIBUTING GUIDE](https://github.com/aws/aws-cdk/blob/main/CONTRIBUTING.md) and [DESIGN GUIDELINES](https://github.com/aws/aws-cdk/blob/main/docs/DESIGN_GUIDELINES.md)
----
*By submitting this pull request, I confirm that my contribution is made under the terms of the Apache-2.0 license*1 parent 3db140e commit c126e35
File tree
2 files changed
+20
-3
lines changed- packages/aws-cdk-lib/aws-rds
- lib
- test
2 files changed
+20
-3
lines changed| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
606 | 606 | | |
607 | 607 | | |
608 | 608 | | |
| 609 | + | |
| 610 | + | |
609 | 611 | | |
610 | 612 | | |
611 | 613 | | |
| |||
1739 | 1741 | | |
1740 | 1742 | | |
1741 | 1743 | | |
| 1744 | + | |
| 1745 | + | |
1742 | 1746 | | |
1743 | 1747 | | |
1744 | 1748 | | |
| |||
1817 | 1821 | | |
1818 | 1822 | | |
1819 | 1823 | | |
| 1824 | + | |
| 1825 | + | |
1820 | 1826 | | |
1821 | 1827 | | |
1822 | 1828 | | |
| |||
1865 | 1871 | | |
1866 | 1872 | | |
1867 | 1873 | | |
| 1874 | + | |
| 1875 | + | |
1868 | 1876 | | |
1869 | 1877 | | |
1870 | 1878 | | |
| |||
1898 | 1906 | | |
1899 | 1907 | | |
1900 | 1908 | | |
| 1909 | + | |
| 1910 | + | |
1901 | 1911 | | |
1902 | 1912 | | |
1903 | 1913 | | |
| |||
1917 | 1927 | | |
1918 | 1928 | | |
1919 | 1929 | | |
| 1930 | + | |
| 1931 | + | |
1920 | 1932 | | |
1921 | 1933 | | |
1922 | 1934 | | |
| |||
2394 | 2406 | | |
2395 | 2407 | | |
2396 | 2408 | | |
| 2409 | + | |
| 2410 | + | |
2397 | 2411 | | |
2398 | 2412 | | |
2399 | 2413 | | |
| |||
2425 | 2439 | | |
2426 | 2440 | | |
2427 | 2441 | | |
| 2442 | + | |
| 2443 | + | |
2428 | 2444 | | |
2429 | 2445 | | |
2430 | 2446 | | |
| |||
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
111 | 111 | | |
112 | 112 | | |
113 | 113 | | |
114 | | - | |
| 114 | + | |
115 | 115 | | |
116 | 116 | | |
117 | 117 | | |
| |||
120 | 120 | | |
121 | 121 | | |
122 | 122 | | |
123 | | - | |
| 123 | + | |
124 | 124 | | |
125 | 125 | | |
126 | 126 | | |
| |||
139 | 139 | | |
140 | 140 | | |
141 | 141 | | |
142 | | - | |
| 142 | + | |
143 | 143 | | |
144 | 144 | | |
145 | 145 | | |
| |||
308 | 308 | | |
309 | 309 | | |
310 | 310 | | |
| 311 | + | |
311 | 312 | | |
312 | 313 | | |
313 | 314 | | |
| |||
0 commit comments