
Security News
Critical Security Vulnerability in React Server Components
React disclosed a CVSS 10.0 RCE in React Server Components and is advising users to upgrade affected packages and frameworks to patched versions now.
ch.digitalfondue.liquibaseorausertable:liquibaseorausertable
Advanced tools
If you are using liquibase on an oracle db with a lot of users and tables, you may have noticed that running the application, even without any changes is extremely slow at start time.
This is due to the following issue: https://github.com/liquibase/liquibase/issues/1312 .
This is a workaround project for handling this problem by avoiding the problematic calls in the normal code path.
If you are using liquibase version 4.23.0+ (see issue https://github.com/syjer/liquibaseorausertable/issues/4 , thanks @PascalSchumacher for the PR)
<dependency>
<groupId>ch.digitalfondue.liquibaseorausertable</groupId>
<artifactId>liquibaseorausertable</artifactId>
<version>2.0.0</version>
</dependency>
If you are using an older version of liquibase:
<dependency>
<groupId>ch.digitalfondue.liquibaseorausertable</groupId>
<artifactId>liquibaseorausertable</artifactId>
<version>1.9</version>
</dependency>
You can configure the query for checking the existence of a table by defining the system property:
orausertable.hasTableNamedQueryInAll=false|true
Possible values:
false is the default, the query will search in the USER_TABLES table.true the query will search in the ALL_TABLESThis is useful when doing migrations with a different user than the one of the application.
Most of the code, is simply taken from the main liquibase repository at https://github.com/liquibase/liquibase, and thus under the term of the following license (apache v2.0): https://github.com/liquibase/liquibase/blob/master/LICENSE.txt .
My modifications/additions are also under Apache v2.0 license.
This project has a custom LockService and ChangeLogHistoryService that are not doing any call on the oracle ALL_ tables. This mean that any "database snapshotting" functionality will still be slow.
To run test, you need an oracle service (docker / podman):
docker run --rm --name oracle-xe-slim -p 1521:1521 -e ORACLE_RANDOM_PASSWORD=true -e APP_USER=test -e APP_USER_PASSWORD=test gvenzl/oracle-xe:11-slim
FAQs
Unknown package
We found that ch.digitalfondue.liquibaseorausertable:liquibaseorausertable demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 0 open source maintainers collaborating on the project.
Did you know?

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Security News
React disclosed a CVSS 10.0 RCE in React Server Components and is advising users to upgrade affected packages and frameworks to patched versions now.

Research
/Security News
We spotted a wave of auto-generated “elf-*” npm packages published every two minutes from new accounts, with simple malware variants and early takedowns underway.

Research
/Security News
Malicious Rust crate evm-units disguised as an EVM version helper downloads and silently executes OS-specific payloads likely aimed at crypto theft.