File tree Expand file tree Collapse file tree 2 files changed +65
-13
lines changed Expand file tree Collapse file tree 2 files changed +65
-13
lines changed Original file line number Diff line number Diff line change @@ -11,6 +11,34 @@ Release Notes
11
11
:class: twocols
12
12
13
13
14
+ 1.11.0 Changelog
15
+ ----------------
16
+
17
+ *Released November 25, 2024*
18
+
19
+ New features:
20
+
21
+ - New database connection management feature makes it easier to save
22
+ and manage a large number of database connections, and switch between
23
+ database environments such as QA, dev or production.
24
+ - Improved query conversion by adding the option to use strongly-typed
25
+ Java entities in the signatures of converted queries.
26
+ - Added support for converting Oracle packages and SQL Server functions
27
+ in query converter.
28
+ - Added support for the latest Postgres 17 and MySQL 8.4/9.0 database
29
+ versions.
30
+ - Improved support for connecting to Oracle pluggable databases (PDBs).
31
+ - Added support to "Bring Your Own LLM" using a customer-managed LLM
32
+ service for AI code generation instead of the default MongoDB-hosted
33
+ service.
34
+ - Temporarily disabled the ability to select Atlas clusters from a list
35
+ when signed in with an Atlas account
36
+
37
+ Bug Fixes:
38
+
39
+ - Fixed an issue where a "No foreign key found" error could occur in some
40
+ cases with multiple foreign key embeddings.
41
+
14
42
1.10.0 Changelog
15
43
----------------
16
44
Original file line number Diff line number Diff line change 6
6
},
7
7
"description" : " OpenAPI specification for MongoDB Relational Migrator tool" ,
8
8
"title" : " MongoDB Relational Migrator REST API" ,
9
- "version" : " 1.10 .0"
9
+ "version" : " 1.11 .0"
10
10
},
11
11
"servers" : [
12
12
{
886
886
"type" : " string"
887
887
},
888
888
"savePassword" : {
889
- "type" : " boolean"
889
+ "type" : " boolean" ,
890
+ "default" : false
890
891
},
891
892
"existingConnectionId" : {
892
893
"type" : " string"
894
+ },
895
+ "oraclePdbName" : {
896
+ "type" : " string"
897
+ },
898
+ "isManualUri" : {
899
+ "type" : " boolean" ,
900
+ "default" : false
893
901
}
894
902
},
895
903
"additionalProperties" : false ,
912
920
"type" : " string"
913
921
},
914
922
"savePassword" : {
915
- "type" : " boolean"
923
+ "type" : " boolean" ,
924
+ "default" : false
916
925
},
917
926
"projectName" : {
918
927
"description" : " Atlas project name" ,
1286
1295
"items" : {
1287
1296
"type" : " string"
1288
1297
}
1298
+ },
1299
+ "attemptTypedEntities" : {
1300
+ "type" : " boolean"
1289
1301
}
1290
1302
},
1291
1303
"additionalProperties" : false ,
1316
1328
"properties" : {
1317
1329
"language" : {
1318
1330
"$ref" : " #/components/schemas/convert-query-language-type"
1331
+ },
1332
+ "attemptTypedEntities" : {
1333
+ "type" : " boolean" ,
1334
+ "default" : false
1319
1335
}
1320
1336
},
1321
1337
"additionalProperties" : false ,
1396
1412
}
1397
1413
]
1398
1414
},
1415
+ "convert-query-language-type" : {
1416
+ "type" : " string" ,
1417
+ "enum" : [
1418
+ " JAVA" ,
1419
+ " CSHARP" ,
1420
+ " JAVASCRIPT"
1421
+ ]
1422
+ },
1399
1423
"database-type" : {
1400
1424
"type" : " string"
1401
1425
},
1612
1636
" STORED_PROCEDURE" ,
1613
1637
" TRIGGER" ,
1614
1638
" VIEW" ,
1615
- " USER_QUERY"
1639
+ " USER_QUERY" ,
1640
+ " PACKAGE"
1616
1641
]
1617
1642
},
1618
1643
"query-output-status" : {
1625
1650
" PENDING"
1626
1651
]
1627
1652
},
1628
- "convert-query-language-type" : {
1629
- "type" : " string" ,
1630
- "enum" : [
1631
- " JAVA" ,
1632
- " CSHARP" ,
1633
- " JAVASCRIPT"
1634
- ]
1635
- },
1636
1653
"query-input" : {
1637
1654
"type" : " object" ,
1638
1655
"properties" : {
1682
1699
"language" : {
1683
1700
"$ref" : " #/components/schemas/convert-query-language-type"
1684
1701
},
1702
+ "attemptedTypedEntities" : {
1703
+ "type" : " boolean"
1704
+ },
1705
+ "usedTypedEntities" : {
1706
+ "type" : " boolean" ,
1707
+ "default" : false
1708
+ },
1685
1709
"errorMessage" : {
1686
1710
"type" : " string"
1687
1711
},
1936
1960
"name" : " Query"
1937
1961
}
1938
1962
]
1939
- }
1963
+ }
You can’t perform that action at this time.
0 commit comments