Skip to content

Java deprecation - #30

Open
lm-sousa wants to merge 5 commits into
ts6from
java-deprecation
Open

Java deprecation#30
lm-sousa wants to merge 5 commits into
ts6from
java-deprecation

Conversation

@lm-sousa

Copy link
Copy Markdown
Member

No description provided.

Avoid treating an empty File path as the current directory on newer JDKs while preserving the existing null and valid-path behavior.
Remove the unused JsEngine project from the nightly Gradle build and test sequence.
Copilot AI lite review requested due to automatic review settings August 28, 2026 20:49

Copilot AI left a comment

Copy link
Copy Markdown

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Copilot was unable to review this pull request because the user who requested the review has reached their quota limit.

@chatgpt-codex-connector chatgpt-codex-connector Bot left a comment

Copy link
Copy Markdown

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

💡 Codex Review

Here are some automated review suggestions for this pull request.

Reviewed commit: 46c5f680ee

ℹ️ About Codex in GitHub

Your team has set up Codex to review pull requests in this repo. Reviews are triggered when you

  • Open a pull request for review
  • Mark a draft as ready
  • Comment "@codex review".

If Codex has suggestions, it will comment; otherwise it will react with 👍.

Codex can also answer questions or update the PR. Try commenting "@codex address that feedback".

@@ -0,0 +1 @@
log4j2.loggerContextFactory=org.apache.logging.log4j.simple.SimpleLoggerContextFactory

Copy link
Copy Markdown

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

P1 Badge Do not ship a global Log4j factory override

Because this file is under src/main/resources, it is packaged in the SymjaPlus library and Log4j reads it from the consumer's classpath. In any application that brings log4j-core or another Log4j provider, this setting globally forces SimpleLoggerContextFactory, bypassing the application's appenders and configuration and potentially dropping production logs; keep the override out of published main resources and restrict it to tests or launcher configuration.

Useful? React with 👍 / 👎.

Comment thread GitPlus/build.gradle

// JGit uses SLF4J 1.7. Keep its logs intentionally disabled without the
// missing StaticLoggerBinder startup warning.
runtimeOnly 'org.slf4j:slf4j-nop:1.7.36'

Copy link
Copy Markdown

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

P2 Badge Use an SLF4J 2 NOP provider for JGit 7.1

JGit 7.1 depends on SLF4J 2.0, while slf4j-nop:1.7.36 is a legacy StaticLoggerBinder binding. When GitPlus runs without another SLF4J 2 provider, the 2.0 API ignores this 1.7 binding, so the startup warning this change is intended to remove remains and logs are not routed to the NOP provider; use a 2.0.x slf4j-nop version aligned with JGit.

Useful? React with 👍 / 👎.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

None yet

Projects

None yet

Development

Successfully merging this pull request may close these issues.

2 participants