Skip to content

Commit 9ede235

Browse files
committed
Release 23.4
1 parent f5607a7 commit 9ede235

35 files changed

+1053
-402
lines changed

LICENSE.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
Copyright (c) 2017, 2023, Oracle and/or its affiliates.
1+
Copyright (c) 2017, 2024, Oracle and/or its affiliates.
22

33
The Universal Permissive License (UPL), Version 1.0
44

README.md

Lines changed: 18 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -73,10 +73,16 @@ This module contains code to work with base64-encoded data.
7373

7474
[Continue reading...][mle-encode-base64]
7575

76+
### MLE text encoding API (mle-js-encodings)
77+
This module is a partial implementation of the Encoding API that ships with the database as of version 23.4.
78+
By default, TextDecoder and TextEncoder are available in the global namespace and can be used directly.
79+
80+
[Continue reading...][mle-js-encodings]
81+
7682

7783
### Oracle Database
78-
Oracle Database is the worlds most popular database. Oracle Database 23c, the next Generation Oracle Database, is now available as a Base Database Service delivering the most complete and simple converged database for developers looking to build new microservice, graph, document and relational applications.
79-
Oracle Database 23c Free is also available for free as a simple download for ease of use.
84+
Oracle Database is the world's most popular database.
85+
Oracle Database 23ai, the next Generation Oracle Database, is now available as a Base Database Service delivering the most complete and simple converged database for developers looking to build new microservice, graph, document and relational applications. Oracle Database 23ai Free is also available for free as a simple download for ease of use.
8086

8187
[Continue reading...][3]
8288

@@ -85,7 +91,7 @@ The following table shows which version of module documentation and declarations
8591

8692
| Oracle Database | Declarations | Documentation |
8793
| ---------------- | ------------ | ------------- |
88-
| 23c | [[email protected]][mle-js-types-233] for Oracle 23.3 <br/> [[email protected]][mle-js-types-232] for Oracle 23.2 - Free | **[mle-js (23c)][mle-js]** <br/> [mle-js-oracledb (23c)][mle-js-oracledb] <br/> [mle-js-bindings (23c)][mle-js-bindings] <br/> [mle-js-plsqltypes (23c)][mle-js-plsqltypes] <br/> [mle-js-fetch (23c)][mle-js-fetch] <br/> [mle-encode-base64 (23c)][mle-encode-base64]|
94+
| 23ai | [mle-js@23.4.0][mle-js-types-234] for Oracle 23.4 <br/> [mle-js@23.3.0][mle-js-types-233] for Oracle 23.3 <br/> [[email protected]][mle-js-types-232] for Oracle 23.2 - Free | **[mle-js (23ai)][mle-js]** <br/> [mle-js-oracledb (23ai)][mle-js-oracledb] <br/> [mle-js-bindings (23ai)][mle-js-bindings] <br/> [mle-js-plsqltypes (23ai)][mle-js-plsqltypes] <br/> [mle-js-fetch (23ai)][mle-js-fetch] <br/> [mle-encode-base64 (23ai)][mle-encode-base64]|
8995
| 21c | [[email protected]][mle-js-types-213] | [mle-js-oracledb (21c)][mle-js-oracledb-21c] <br/> [mle-js-bindings (21c)][mle-js-bindings-21c] <br/> [mle-js-plsqltypes (21c)][mle-js-plsqltypes-21c] |
9096

9197
## Examples
@@ -124,19 +130,21 @@ Before submitting a pull request, please [review our contribution guide](./CONTR
124130
Please consult the [security guide](./SECURITY.md) for our responsible security vulnerability disclosure process.
125131

126132
## License
127-
Copyright (c) 2022, 2023 Oracle and/or its affiliates.
133+
Copyright (c) 2022, 2024, Oracle and/or its affiliates.
128134

129135
Released under the Universal Permissive License v1.0 as shown at <https://oss.oracle.com/licenses/upl/>.
130136

131-
[mle-js]: https://oracle-samples.github.io/mle-modules/docs/mle-js/23c "mle-js 23c"
132-
[mle-js-oracledb]: https://oracle-samples.github.io/mle-modules/docs/mle-js-oracledb/23c "mle-js-oracledb 23c"
133-
[mle-js-bindings]: https://oracle-samples.github.io/mle-modules/docs/mle-js-bindings/23c "mle-js-bindings 23c"
134-
[mle-js-plsqltypes]: https://oracle-samples.github.io/mle-modules/docs/mle-js-plsqltypes/23c "mle-js-plsqltypes 23c"
135-
[mle-js-fetch]: https://oracle-samples.github.io/mle-modules/docs/mle-js-fetch/23c "mle-js-fetch 23c"
136-
[mle-encode-base64]: https://oracle-samples.github.io/mle-modules/docs/mle-encode-base64/23c "mle-encode-base64 23c"
137+
[mle-js]: https://oracle-samples.github.io/mle-modules/docs/mle-js/23ai "mle-js 23ai"
138+
[mle-js-oracledb]: https://oracle-samples.github.io/mle-modules/docs/mle-js-oracledb/23ai "mle-js-oracledb 23ai"
139+
[mle-js-bindings]: https://oracle-samples.github.io/mle-modules/docs/mle-js-bindings/23ai "mle-js-bindings 23ai"
140+
[mle-js-plsqltypes]: https://oracle-samples.github.io/mle-modules/docs/mle-js-plsqltypes/23ai "mle-js-plsqltypes 23ai"
141+
[mle-js-fetch]: https://oracle-samples.github.io/mle-modules/docs/mle-js-fetch/23ai "mle-js-fetch 23ai"
142+
[mle-encode-base64]: https://oracle-samples.github.io/mle-modules/docs/mle-encode-base64/23ai "mle-encode-base64 23ai"
143+
[mle-js-encodings]: https://oracle-samples.github.io/mle-modules/docs/mle-js-encodings/23ai "mle-js-encodings 23ai"
137144
[mle-js-oracledb-21c]: https://oracle-samples.github.io/mle-modules/docs/mle-js-oracledb/21c "mle-js-oracledb 21c"
138145
[mle-js-bindings-21c]: https://oracle-samples.github.io/mle-modules/docs/mle-js-bindings/21c "mle-js-bindings 21c"
139146
[mle-js-plsqltypes-21c]: https://oracle-samples.github.io/mle-modules/docs/mle-js-plsqltypes/21c "mle-js-plsqltypes 21c"
147+
[mle-js-types-234]: https://www.npmjs.com/package/mle-js/v/23.4.0 "[email protected]"
140148
[mle-js-types-233]: https://www.npmjs.com/package/mle-js/v/23.3.0 "[email protected]"
141149
[mle-js-types-232]: https://www.npmjs.com/package/mle-js/v/23.2.0 "[email protected]"
142150
[mle-js-types-213]: https://www.npmjs.com/package/mle-js/v/21.3.1 "[email protected]"

declarations/mle-encode-base64/LICENSE.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
Copyright (c) 2023, 2023, Oracle and/or its affiliates.
1+
Copyright (c) 2023, 2024, Oracle and/or its affiliates.
22

33
The Universal Permissive License (UPL), Version 1.0
44

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
Please consult install instructions and documentation on https://oracle-samples.github.io/mle-modules.
1+
Please consult the installation instructions and documentation on https://oracle-samples.github.io/mle-modules.

declarations/mle-encode-base64/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
"description": "MLE functions to work with base64 encoded data",
44
"types": "mle-encode-base64.d.ts",
55
"author": "Oracle",
6-
"version": "23.3.0",
6+
"version": "23.4.0",
77
"license": "UPL-1.0",
88
"homepage": "https://oracle-samples.github.io/mle-modules",
99
"repository": {

declarations/mle-js-bindings/LICENSE.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
Copyright (c) 2017, 2023, Oracle and/or its affiliates.
1+
Copyright (c) 2017, 2024, Oracle and/or its affiliates.
22

33
The Universal Permissive License (UPL), Version 1.0
44

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
Please consult install instructions and documentation on https://oracle-samples.github.io/mle-modules.
1+
Please consult the installation instructions and documentation on https://oracle-samples.github.io/mle-modules.

declarations/mle-js-bindings/mle-js-bindings.d.ts

Lines changed: 24 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/**
2-
Copyright (c) 2019, 2022, Oracle and/or its affiliates.
2+
Copyright (c) 2019, 2024, Oracle and/or its affiliates.
33
44
The Universal Permissive License (UPL), Version 1.0
55
@@ -44,6 +44,10 @@ export declare enum JSTypes {
4444
DATE = 2,
4545
/** Type Boolean */
4646
BOOLEAN = 3,
47+
/**
48+
* In 21c, indices 4 and 5 had been used for BLOB and CLOB which do, however,
49+
* not make sense for mle-js-oracledb and have therefore been removed in 23ai.
50+
*/
4751
/** Type Object */
4852
OBJECT = 6,
4953
/** UINT8ARRAY */
@@ -65,7 +69,25 @@ export declare enum JSTypes {
6569
/** Type OracleBLOB */
6670
ORACLE_BLOB = 15,
6771
/** Type DbTypeJson */
68-
DB_TYPE_JSON = 16
72+
DB_TYPE_JSON = 16,
73+
/**
74+
* Type Int8Array
75+
*
76+
* @since Oracle 23.4
77+
*/
78+
INT8ARRAY = 17,
79+
/**
80+
* Type Float32Array
81+
*
82+
* @since Oracle 23.4
83+
*/
84+
FLOAT32ARRAY = 18,
85+
/**
86+
* Type Float64Array
87+
*
88+
* @since Oracle 23.4
89+
*/
90+
FLOAT64ARRAY = 19
6991
}
7092
/**
7193
* Import a value exported from PL/SQL into the current context

declarations/mle-js-bindings/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
"description": "MLE Bindings for Oracle Database DBMS_MLE",
44
"types": "mle-js-bindings.d.ts",
55
"author": "Oracle",
6-
"version": "23.3.0",
6+
"version": "23.4.0",
77
"license": "UPL-1.0",
88
"homepage": "https://oracle-samples.github.io/mle-modules",
99
"repository": {
Lines changed: 35 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,35 @@
1+
Copyright (c) 2023, 2024, Oracle and/or its affiliates.
2+
3+
The Universal Permissive License (UPL), Version 1.0
4+
5+
Subject to the condition set forth below, permission is hereby granted to any
6+
person obtaining a copy of this software, associated documentation and/or data
7+
(collectively the "Software"), free of charge and under any and all copyright
8+
rights in the Software, and any and all patent rights owned or freely
9+
licensable by each licensor hereunder covering either (i) the unmodified
10+
Software as contributed to or provided by such licensor, or (ii) the Larger
11+
Works (as defined below), to deal in both
12+
13+
(a) the Software, and
14+
(b) any piece of software and/or hardware listed in the lrgrwrks.txt file if
15+
one is included with the Software (each a "Larger Work" to which the Software
16+
is contributed by such licensors),
17+
18+
without restriction, including without limitation the rights to copy, create
19+
derivative works of, display, perform, and distribute the Software and make,
20+
use, sell, offer for sale, import, export, have made, and have sold the
21+
Software and the Larger Work(s), and to sublicense the foregoing rights on
22+
either these or other terms.
23+
24+
This license is subject to the following condition:
25+
The above copyright notice and either this complete permission notice or at
26+
a minimum a reference to the UPL must be included in all copies or
27+
substantial portions of the Software.
28+
29+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
30+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
31+
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
32+
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
33+
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
34+
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
35+
SOFTWARE.

0 commit comments

Comments
 (0)