Skip to content

Commit 371dc13

Browse files
authored
DOCSP-45453 1.11 release notes (#182)
* DOCSP-45453 1.11 release notes * Testing fix for staging error * Revert "Testing fix for staging error" This reverts commit 0a1f3e5edfae9389903a494326f2c8e6df9dd787. * Adds no foreign key found bug fix * Updates features section to include most recent edits * Fix release date in release notes
1 parent 51ac518 commit 371dc13

File tree

2 files changed

+65
-13
lines changed

2 files changed

+65
-13
lines changed

source/release-notes.txt

Lines changed: 28 additions & 0 deletions
Original file line numberDiff line numberDiff 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+
1442
1.10.0 Changelog
1543
----------------
1644

source/rm-openapi-latest.json

Lines changed: 37 additions & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
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
{
@@ -886,10 +886,18 @@
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,
@@ -912,7 +920,8 @@
912920
"type": "string"
913921
},
914922
"savePassword": {
915-
"type": "boolean"
923+
"type": "boolean",
924+
"default": false
916925
},
917926
"projectName": {
918927
"description": "Atlas project name",
@@ -1286,6 +1295,9 @@
12861295
"items": {
12871296
"type": "string"
12881297
}
1298+
},
1299+
"attemptTypedEntities": {
1300+
"type": "boolean"
12891301
}
12901302
},
12911303
"additionalProperties": false,
@@ -1316,6 +1328,10 @@
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,
@@ -1396,6 +1412,14 @@
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
},
@@ -1612,7 +1636,8 @@
16121636
"STORED_PROCEDURE",
16131637
"TRIGGER",
16141638
"VIEW",
1615-
"USER_QUERY"
1639+
"USER_QUERY",
1640+
"PACKAGE"
16161641
]
16171642
},
16181643
"query-output-status": {
@@ -1625,14 +1650,6 @@
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": {
@@ -1682,6 +1699,13 @@
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
},
@@ -1936,4 +1960,4 @@
19361960
"name": "Query"
19371961
}
19381962
]
1939-
}
1963+
}

0 commit comments

Comments
 (0)