Skip to content

Commit 07c0e13

Browse files
committed
updates for 24.2.12
* [GAT-437] - Application "Scoreboard" not updating asynchronously #17 * [GAT-447] - Compatibility Version should be updated in rules #26 * [GAT-453] - 2000_upgrade_sert_apex_version.sql fails due to string-number conversion in international format #32 * [GAT-454] - SERT Stale Exceptions, whitespace affects the STALENESS * [GAT-455] - add ability to ignore checksums on exception upload ## 24.2.11 - No Rule Criteria imported during install #30
1 parent a4b54eb commit 07c0e13

File tree

389 files changed

+24006
-23060
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

389 files changed

+24006
-23060
lines changed

doc/LICENSE.md

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

doc/install.sql

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
2+
-- run Liquibase to install/update SERT in standalone mode (no platform)
3+
-- sert base schema must be created so that lb control tables will not be created in ADMIN/SYS schema
4+
-- if it is a PDB, then tablespace DATA must exists
5+
@install_prod
6+
exit

doc/install_prod.sql

Lines changed: 38 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,38 @@
1+
2+
-- run Liquibase to install/update SERT in standalone mode (no platform)
3+
-- sert base schema must be created so that lb control tables will not be created in ADMIN/SYS schema
4+
-- if it is a PDB, then tablespace DATA must exists
5+
set feedback off
6+
set define off
7+
set linesize 300
8+
set pagesize 1000
9+
set serveroutput on size unlimited
10+
set sqlformat default
11+
set termout on
12+
set timing off
13+
set verify off
14+
15+
-- Note: SQL behavior for install error will abort with error.
16+
whenever sqlerror exit fail
17+
18+
liquibase update -changelog-file product/sert/pre-install/base_schema.sql -database-changelog-table-name sert_databasechangelog -defaults-file sert.properties
19+
-- run liquibase
20+
liquibase update -changelog-file controller.xml -database-changelog-table-name sert_databasechangelog -default-schema-name sert_core -contexts runtime,standalone,apex
21+
22+
-- PROMPT =============================================================================
23+
-- PROMPT == P O S T I N S T A L L A T I O N S T E P S
24+
-- PROMPT =============================================================================
25+
-- PROMPT
26+
-- PROMPT In order to be able to launch APEX-SERT, paste the following into the System Message
27+
-- PROMPT region in the INTERNAL workspace:
28+
-- PROMPT
29+
-- PROMPT <span style="font-size: 16px; color: #C74634; font-weight: 700;">SERT</span> </br>
30+
-- PROMPT <a href="javascript:var launchTOWER=window.open('f?p=SERT:101:::::P101_USERNAME,P101_PASSWORD:' + encodeURIComponent(apex.env.APP_USER) + ',' + apex.env.APP_SESSION);"><span class="a-Icon icon-run-page"></span>&nbsp;Launch APEX-SERT</a>
31+
-- PROMPT
32+
-- PROMPT To access the APEX-SERT Admin application, enter the following URL while
33+
-- PROMPT substituting HOST, PORT and DAD with those from your APEX environment:
34+
-- PROMPT
35+
-- PROMPT http(s)://HOST:PORT/DAD/f?p=SERT_ADMIN
36+
-- PROMPT
37+
-- PROMPT Please see the APEX-SERT Installation Guide for detailed post-installation steps.
38+
-- PROMPT

doc/release_notes.md

Lines changed: 15 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,23 @@
11
# Release Notes
2+
3+
## 24.2.12
4+
5+
* [GAT-437] - Application "Scoreboard" not updating asynchronously #17
6+
* [GAT-447] - Compatibility Version should be updated in rules #26
7+
* [GAT-453] - 2000_upgrade_sert_apex_version.sql fails due to string-number conversion in international format #32
8+
* [GAT-454] - SERT Stale Exceptions, whitespace affects the STALENESS
9+
* [GAT-455] - add ability to ignore checksums on exception upload
10+
11+
## 24.2.11
12+
13+
- No Rule Criteria imported during install #30
14+
215
## 24.2.10
316

417
- remove oracle specific links from install guide md
518
Bug (Non BugDB)
619
- "add exception" regression bug casues UI to fail on adding exception
20+
- - No Rule Criteria imported during install #30
721

822
## 24.2.9
923

@@ -22,4 +36,4 @@ Bug (Non BugDB)
2236
- move sert_pub AOP grants to aop product folder
2337
- comments don't appear after creation when running sert in other workspaces
2438
- sert_core.schedule_api.process_eval_summary_results fails with large result sets
25-
- After uploading exception from API, no exceptions are logged
39+
- After uploading exception from API, no exceptions are logged

install_no_apex.sql

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,15 @@
22
-- run Liquibase to install/update SERT in standalone mode (no platform)
33
-- sert base schema must be created so that lb control tables will not be created in ADMIN/SYS schema
44
-- if it is a PDB, then tablespace DATA must exists
5+
set feedback off
6+
set define off
7+
set linesize 300
8+
set pagesize 1000
9+
set serveroutput on size unlimited
10+
set sqlformat default
11+
set termout on
12+
set timing off
13+
set verify off
514

615
liquibase update -changelog-file product/sert/pre-install/base_schema.sql -database-changelog-table-name sert_databasechangelog -defaults-file sert.properties
716
-- run liquibase

product/sert/apex/application/f2100/application/comments.sql

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
-- file_checksum: BAF20D8D230FCE2E0C78E71665C444C825C874BF360FB7BF4C4D3E9723C2CE31
1+
-- file_checksum: F3155752294F35E693C617B1C03365EDAA502B9311E39DCFD98F3CDA8216B9BB
22
-------------------------------------------------------------------------------
33
-- Copyright (c) 2024,2025 Oracle and/or its affiliates.
44
-- Licensed under the Universal Permissive License v 1.0 as shown
@@ -11,7 +11,7 @@ begin
1111
-- Manifest End
1212
wwv_flow_imp.component_begin (
1313
p_version_yyyy_mm_dd=>'2024.11.30'
14-
,p_release=>'24.2.0'
14+
,p_release=>'24.2.5'
1515
,p_default_workspace_id=>32049826282261068
1616
,p_default_application_id=>2100
1717
,p_default_id_offset=>43721417861278263

product/sert/apex/application/f2100/application/create_application.sql

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,12 @@
1-
-- file_checksum: 6441A4679B22C7B047D536198F1E913A374477D29A5044DFFB0D59F8997F70A7
1+
-- file_checksum: FF2993603860FF1AD5D9B595121D74D70D468E3830BCB120E130796DF35FBC4B
22
prompt --application/create_application
33
begin
44
-- Manifest
55
-- FLOW: 2100
66
-- Manifest End
77
wwv_flow_imp.component_begin (
88
p_version_yyyy_mm_dd=>'2024.11.30'
9-
,p_release=>'24.2.0'
9+
,p_release=>'24.2.5'
1010
,p_default_workspace_id=>32049826282261068
1111
,p_default_application_id=>2100
1212
,p_default_id_offset=>43721417861278263
@@ -55,7 +55,7 @@ wwv_imp_workspace.create_flow(
5555
,p_substitution_value_01=>'APEX-SERT'
5656
,p_file_prefix => nvl(wwv_flow_application_install.get_static_app_file_prefix,'')
5757
,p_files_version=>204
58-
,p_version_scn=>44757807723940
58+
,p_version_scn=>44842092472343
5959
,p_print_server_type=>'INSTANCE'
6060
,p_file_storage=>'DB'
6161
,p_is_pwa=>'Y'

product/sert/apex/application/f2100/application/delete_application.sql

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
-- file_checksum: 90CFDF96CF1E93B3A394603F7C1E9C05493B6EB8F9481B5C9EAD766198D95B6A
1+
-- file_checksum: DAC7D17918C98F783616634B4152362F5AA13FBAF026DFC6E263AC0019EE0CB7
22
-------------------------------------------------------------------------------
33
-- Copyright (c) 2024,2025 Oracle and/or its affiliates.
44
-- Licensed under the Universal Permissive License v 1.0 as shown
@@ -8,7 +8,7 @@ prompt --application/delete_application
88
begin
99
wwv_flow_imp.component_begin (
1010
p_version_yyyy_mm_dd=>'2024.11.30'
11-
,p_release=>'24.2.0'
11+
,p_release=>'24.2.5'
1212
,p_default_workspace_id=>32049826282261068
1313
,p_default_application_id=>2100
1414
,p_default_id_offset=>43721417861278263

product/sert/apex/application/f2100/application/deployment/buildoptions.sql

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
-- file_checksum: FDF772C08515810E6B957104AFC02A048BF094969D39836CF50CA42ABAC58A79
1+
-- file_checksum: E0C7773A614319A4BEB6B2B87816A30DB36A690A20324BF4E3DC42DA279639C2
22
-------------------------------------------------------------------------------
33
-- Copyright (c) 2024,2025 Oracle and/or its affiliates.
44
-- Licensed under the Universal Permissive License v 1.0 as shown
@@ -11,7 +11,7 @@ begin
1111
-- Manifest End
1212
wwv_flow_imp.component_begin (
1313
p_version_yyyy_mm_dd=>'2024.11.30'
14-
,p_release=>'24.2.0'
14+
,p_release=>'24.2.5'
1515
,p_default_workspace_id=>32049826282261068
1616
,p_default_application_id=>2100
1717
,p_default_id_offset=>43721417861278263

product/sert/apex/application/f2100/application/deployment/checks.sql

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
-- file_checksum: DCE84A3E15E13C2CAA0F29BE7CE1104D1AC38E5B5330B1337402CD434F5705BC
1+
-- file_checksum: 5C205F868F1CE4E349AC99C20CA4E9D83B9317B9227C784146F721DD2C6125D1
22
-------------------------------------------------------------------------------
33
-- Copyright (c) 2024,2025 Oracle and/or its affiliates.
44
-- Licensed under the Universal Permissive License v 1.0 as shown
@@ -11,7 +11,7 @@ begin
1111
-- Manifest End
1212
wwv_flow_imp.component_begin (
1313
p_version_yyyy_mm_dd=>'2024.11.30'
14-
,p_release=>'24.2.0'
14+
,p_release=>'24.2.5'
1515
,p_default_workspace_id=>32049826282261068
1616
,p_default_application_id=>2100
1717
,p_default_id_offset=>43721417861278263

0 commit comments

Comments
 (0)