Skip to content

Commit 355db66

Browse files
authored
Update documentation links to latest release
1 parent 68e323f commit 355db66

File tree

4 files changed

+17
-17
lines changed

4 files changed

+17
-17
lines changed

data-platform/data-development/apex/README.md

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44

55
Using APEX, developers don't need to be experts in a vast array of technologies to deliver sophisticated solutions. Just focus on solving the problem and let APEX take care of the rest.
66

7-
Reviewed: 14.02.2024
7+
Reviewed: 20.11.2024
88

99
# Table of Contents
1010
1. [Team Publications](#team-publications)
@@ -36,19 +36,19 @@ Reviewed: 14.02.2024
3636
- [APEX EVENTS](https://apex.oracle.com/pls/apex/r/apex_pm/apex-events/events)
3737
- [APEX Office Hours](https://apex.oracle.com/en/community/office-hours/)
3838
- [Official APEX Landing Page](https://apex.oracle.com/en/)
39-
- [What's New in the latest Release APEX 23.2](https://docs.oracle.com/en/database/oracle/apex/23.2/htmrn/new-features.html)
39+
- [What's New in the latest Release APEX 24.1](https://docs.oracle.com/en/database/oracle/apex/24.1/htmrn/new-features.html)
4040
- [APEX best practice architecture](https://docs.oracle.com/solutions/?q=apex&cType=reference-architectures&sort=date-desc&lang=en)
41-
- [APEX Managing Application Performance](https://docs.oracle.com/en/database/oracle/apex/23.2/htmdb/managing-application-performance.html#GUID-1684F55B-7782-4B1F-96AB-0D41BCBDB1BA)
42-
- [APEX Managing Application Security](https://docs.oracle.com/en/database/oracle/apex/23.2/htmdb/managing-application-security.html#GUID-417EAE67-7A36-4AE0-816B-D28716829F96)
41+
- [APEX Managing Application Performance](https://docs.oracle.com/en/database/oracle/apex/24.1/htmdb/managing-application-performance.html)
42+
- [APEX Managing Application Security](https://docs.oracle.com/en/database/oracle/apex/24.1/htmdb/managing-application-security.html)
4343
- [Training and Certification](https://apex.oracle.com/en/learn/training/)
4444
- [Tutorials](https://apex.oracle.com/en/learn/tutorials/)
4545

4646
## Documentation
4747

48-
- [APEX Documentation](https://docs.oracle.com/en/database/oracle/apex/23.2/index.html)
49-
- [APEX API Reference](https://docs.oracle.com/en/database/oracle/apex/23.2/aeapi/#Oracle%C2%AE-APEX)
48+
- [APEX Documentation]https://docs.oracle.com/en/database/oracle/apex/24.1/index.html)
49+
- [APEX API Reference](https://docs.oracle.com/en/database/oracle/apex/24.1/api-references.html)
5050
- [APEX Universal Theme](https://apex.oracle.com/pls/apex/r/apex_pm/ut/getting-started)
51-
- [APEX Managing Application Backups](https://docs.oracle.com/en/database/oracle/apex/22.1/htmdb/managing-application-backups.html)
51+
- [APEX Managing Application Backups](https://docs.oracle.com/en/database/oracle/apex/24.1/htmdb/managing-application-backups.html)
5252
- [APEX Application Development Lifecycle Technical Paper](https://www.oracle.com/a/tech/docs/apex-lifecycle-management-v3.pdf)
5353

5454
# License

data-platform/data-development/devops-database/continuous-integration/db-supporting-features/README.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -12,19 +12,19 @@ The primary PL/SQL packages are:
1212
[DBMS_METADATA](https://docs.oracle.com/en/database/oracle/oracle-database/19/arpls/DBMS_METADATA.html#GUID-F72B5833-C14E-4713-A588-6BDF4D4CBA2A)
1313
- The DBMS_METADATA package provides a way for you to retrieve metadata from the database dictionary as XML or creation DDL and to submit the XML to re-create the object. Use this to generate the data definition of schema objects.
1414

15-
## [APEX_EXPORT](https://docs.oracle.com/en/database/oracle/apex/23.2/aeapi/APEX_EXPORT.html#GUID-6A4628A6-9F86-4394-9938-87A7FFFC7BC8)
15+
## [APEX_EXPORT](https://docs.oracle.com/en/database/oracle/apex/24.1/aeapi/APEX_EXPORT.html)
1616
- The APEX_EXPORT package provides APIs to export the definitions of applications, files, feedback, and workspaces to text files.
1717

1818
## [DBMS_CLOUD_REPO](https://docs.oracle.com/en/cloud/paas/autonomous-database/serverless/adbsb/dbms-cloud-repo-package.html#GUID-F8F0037B-6451-4742-9144-9FCE44459F64)
1919
- The DBMS_CLOUD_REPO package provides for the use of and management of cloud-hosted code repositories from Oracle Database. Supported cloud code repositories include GitHub, AWS CodeCommit, and Azure Repos. This package is only available in OCI Autonomous Database deployments and along with integration with repositories, it provides a wrapper to DBMS_METADATA for Code Commit & Install from the repository.
2020

2121
## ORDS
22-
- [ORDS REST APIs for APEX](https://docs.oracle.com/en/database/oracle/oracle-rest-data-services/23.4/orrst/api-oracle-apex.html) A set of ORDS REST APIs to retrieve APEX Workspace & Application statistics, details with support to export workspaces, applications and application components.
22+
- [ORDS REST APIs for APEX](https://docs.oracle.com/en/database/oracle/oracle-rest-data-services/24.3/orrst/api-oracle-apex.html) A set of ORDS REST APIs to retrieve APEX Workspace & Application statistics, details with support to export workspaces, applications and application components.
2323
- ORDS_MODULE provides PL/SQL APIs to manage ORDS objects, OAuth clients, privileges, roles and modules. Currently, ORDS_MODULE is only documented in the code of the various packages, functions and views.
2424

2525
The simplest deployment and set of APIS for Continuous Integration are available for APEX on Autonomous Database services, with Cloud Repository integration & Schema export via DBMS_CLOUD_REPO, and APEX applications via APEX_EXPORT. These two packages provide extensive capabilities to commit code changes into the repository with little work required to manage connectivity, generation upload and commit operations.
2626

27-
Reviewed: 18.11.2024
27+
Reviewed: 20.11.2024
2828

2929
# Table of Contents
3030
1. [Team Publications](#team-publications)
@@ -40,7 +40,7 @@ Reviewed: 18.11.2024
4040
## Documentation
4141
- [DBMS_METADATA](https://docs.oracle.com/en/database/oracle/oracle-database/19/arpls/DBMS_METADATA.html#GUID-F72B5833-C14E-4713-A588-6BDF4D4CBA2A "Oracle Database 19c PL/SQL Packages and Types Reference")
4242
- [DBMS_METADATA](https://docs.oracle.com/en/database/oracle/oracle-database/19/sutil/using-oracle-dbms_metadata-api.html#GUID-D9B1300F-B21D-416E-8B9B-C542195EF249 "Oracle Database 19c Using the Metadata APIs")
43-
- [APEX_EXPORT](https://docs.oracle.com/en/database/oracle/apex/23.2/aeapi/APEX_EXPORT.html#GUID-6A4628A6-9F86-4394-9938-87A7FFFC7BC8 "APEX 23.2 API Reference")
43+
- [APEX_EXPORT](https://docs.oracle.com/en/database/oracle/apex/24.1/aeapi/APEX_EXPORT.html "APEX 24.1 API Reference")
4444
- [DBMS_CLOUD_REPO](https://docs.oracle.com/en/cloud/paas/autonomous-database/serverless/adbsb/dbms-cloud-repo-package.html#GUID-F8F0037B-6451-4742-9144-9FCE44459F64 "Autonomous Database Supplied Package Reference")
4545

4646
## Blogs

data-platform/data-development/devops-database/continuous-integration/sqlcl-liquibase/README.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ You can add the functionality to read these specialized changelogs to the Liquib
1313
# The Liquibase Feature in SQLcl
1414
SQLcl Liquibase with Oracle Database provides extended functionality to the Liquibase experience compared to the open-source Liquibase client. The Liquibase feature in SQLcl enables you to execute commands to generate a changelog for a single object or for a full schema in specialized changelogs and changesets.
1515

16-
Reviewed: 18.11.2024
16+
Reviewed: 20.11.2024
1717

1818
# Table of Contents
1919

@@ -26,8 +26,8 @@ Reviewed: 18.11.2024
2626

2727
# Useful Links
2828

29-
- [Oracle Documentation - Oracle SQLcl Release 23.3](https://docs.oracle.com/en/database/oracle/sql-developer-command-line/23.3/sqcug/using-liquibase.html#GUID-4CA25386-E442-4D9D-B119-C1ACE6B79539 "Using Liquibase")
30-
- [SQLcl 23.3 Downloads](https://www.oracle.com/database/sqldeveloper/technologies/sqlcl/download/)
29+
- [Oracle Documentation - Oracle SQLcl Release 24.3.1](https://docs.oracle.com/en/database/oracle/sql-developer-command-line/24.3/sqcug/using-liquibase.html "Using Liquibase")
30+
- [SQLcl Downloads](https://www.oracle.com/database/sqldeveloper/technologies/sqlcl/download/)
3131
- [Liquibase Community](https://www.liquibase.org/)
3232
- [Liquibase Documentation](https://docs.liquibase.com/home.html "What is Liquibase?")
3333
- [Liquibase Documentation](https://docs.liquibase.com/start/release-notes/home.html "Release Notes")

data-platform/data-development/ords/README.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
ORDS is a Java application that enables developers with SQL and database skills to develop REST APIs for Oracle Database,
44
Oracle Database 12c JSON Document store and higher and the Oracle NoSQL Database
55

6-
Reviewed: 26.07.2024
6+
Reviewed: 20.11.2024
77

88
# Table of Contents
99

@@ -13,15 +13,15 @@ Reviewed: 26.07.2024
1313

1414
# Team Publications
1515

16-
- [ORDS version 24.2 is now available, time to upgrade!](https://www.oracle.com/database/sqldeveloper/technologies/db-actions/download/)
16+
- [ORDS version 24.3.1 is now available, time to upgrade!](https://www.oracle.com/database/sqldeveloper/technologies/db-actions/download/)
1717
- [JSON & Customer Managed ORDS with ADB](https://medium.com/@devpiotrekk/cloud-scalability-using-customer-managed-oracle-rest-data-service-with-autonomous-json-275fa06e8d22)
1818
- Article demonstrating the performance of Customer Managed ORDS combined with the Autonomous Database
1919
- [How ORDS help with DevOps](https://www.youtube.com/watch?v=GIRdoGlqIDE)
2020
- [Scalability with Customer Managed ORDS on ADB](https://medium.com/oracledevs/cloud-scalability-using-customer-managed-oracle-rest-data-service-with-autonomous-json-275fa06e8d22)
2121

2222
# Useful Links
2323

24-
- [ORDS - Latest Release](https://www.oracle.com/tools/ords/ords-relnotes-24.2.html)
24+
- [ORDS - Latest Release](https://www.oracle.com/tools/ords/ords-relnotes-24.3.1.html)
2525
- [Webinar - ORDS & DevOps](https://www.youtube.com/watch?v=GIRdoGlqIDE)
2626
- [High Availability (HA) with ORDS](https://docs.oracle.com/en/solutions/deploy-ords-ha-oci/index.html)
2727
- A deployable HA stack showcasing flexibility of ORDS

0 commit comments

Comments
 (0)