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
1111 :class: twocols
1212
1313
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+
14421.10.0 Changelog
1543----------------
1644
Original file line number Diff line number Diff line change 66 },
77 "description" : " OpenAPI specification for MongoDB Relational Migrator tool" ,
88 "title" : " MongoDB Relational Migrator REST API" ,
9- "version" : " 1.10 .0"
9+ "version" : " 1.11 .0"
1010 },
1111 "servers" : [
1212 {
886886 "type" : " string"
887887 },
888888 "savePassword" : {
889- "type" : " boolean"
889+ "type" : " boolean" ,
890+ "default" : false
890891 },
891892 "existingConnectionId" : {
892893 "type" : " string"
894+ },
895+ "oraclePdbName" : {
896+ "type" : " string"
897+ },
898+ "isManualUri" : {
899+ "type" : " boolean" ,
900+ "default" : false
893901 }
894902 },
895903 "additionalProperties" : false ,
912920 "type" : " string"
913921 },
914922 "savePassword" : {
915- "type" : " boolean"
923+ "type" : " boolean" ,
924+ "default" : false
916925 },
917926 "projectName" : {
918927 "description" : " Atlas project name" ,
12861295 "items" : {
12871296 "type" : " string"
12881297 }
1298+ },
1299+ "attemptTypedEntities" : {
1300+ "type" : " boolean"
12891301 }
12901302 },
12911303 "additionalProperties" : false ,
13161328 "properties" : {
13171329 "language" : {
13181330 "$ref" : " #/components/schemas/convert-query-language-type"
1331+ },
1332+ "attemptTypedEntities" : {
1333+ "type" : " boolean" ,
1334+ "default" : false
13191335 }
13201336 },
13211337 "additionalProperties" : false ,
13961412 }
13971413 ]
13981414 },
1415+ "convert-query-language-type" : {
1416+ "type" : " string" ,
1417+ "enum" : [
1418+ " JAVA" ,
1419+ " CSHARP" ,
1420+ " JAVASCRIPT"
1421+ ]
1422+ },
13991423 "database-type" : {
14001424 "type" : " string"
14011425 },
16121636 " STORED_PROCEDURE" ,
16131637 " TRIGGER" ,
16141638 " VIEW" ,
1615- " USER_QUERY"
1639+ " USER_QUERY" ,
1640+ " PACKAGE"
16161641 ]
16171642 },
16181643 "query-output-status" : {
16251650 " PENDING"
16261651 ]
16271652 },
1628- "convert-query-language-type" : {
1629- "type" : " string" ,
1630- "enum" : [
1631- " JAVA" ,
1632- " CSHARP" ,
1633- " JAVASCRIPT"
1634- ]
1635- },
16361653 "query-input" : {
16371654 "type" : " object" ,
16381655 "properties" : {
16821699 "language" : {
16831700 "$ref" : " #/components/schemas/convert-query-language-type"
16841701 },
1702+ "attemptedTypedEntities" : {
1703+ "type" : " boolean"
1704+ },
1705+ "usedTypedEntities" : {
1706+ "type" : " boolean" ,
1707+ "default" : false
1708+ },
16851709 "errorMessage" : {
16861710 "type" : " string"
16871711 },
19361960 "name" : " Query"
19371961 }
19381962 ]
1939- }
1963+ }
You can’t perform that action at this time.
0 commit comments