Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Refactor python transpiler code #1314

Merged

Conversation

ericvergnaud
Copy link
Contributor

@ericvergnaud ericvergnaud commented Dec 6, 2024

This PR implements a clear structure for existing python transpiler code, and also renames a few classes for clarity.

Progresses #1298

@ericvergnaud ericvergnaud requested a review from a team as a code owner December 6, 2024 12:44
Copy link

github-actions bot commented Dec 6, 2024

Coverage tests results

493 tests  ±0   455 ✅ ±0   4s ⏱️ -1s
  7 suites ±0    38 💤 ±0 
  7 files   ±0     0 ❌ ±0 

Results for commit b8f0ef3. ± Comparison against base commit 416fd3f.

♻️ This comment has been updated with latest results.

Copy link
Collaborator

@sundarshankar89 sundarshankar89 left a comment

Choose a reason for hiding this comment

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

Proposing an alternate structure.

sqlglot
       - dialects
                 - snowflake.py
                 - presto.py
                 - oracle.py
                 - teradata.py

Or

sqlglot
       - parser
                 - snowflake.py
                 - presto.py
                 - oracle.py
                 - teradata.py
           - generator
                  -  databricks.py

@ericvergnaud
Copy link
Contributor Author

Proposing an alternate structure.

sqlglot
       - dialects
                 - snowflake.py
                 - presto.py
                 - oracle.py
                 - teradata.py

Or

sqlglot
       - parser
                 - snowflake.py
                 - presto.py
                 - oracle.py
                 - teradata.py
           - generator
                  -  databricks.py

Good suggestion, thanks, done.

@sundarshankar89 sundarshankar89 requested review from bishwajit-db and a team December 9, 2024 07:04
Copy link
Contributor

Choose a reason for hiding this comment

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

IMO, we should also keep databricks.py inside dialects. databricks(package) -> databricks.py instead of a separate generator package like other dialects. Because the generator related code is going to be contained inside a dialect only. Having a separate generator package doesn't add any additional value.

Copy link
Contributor Author

Choose a reason for hiding this comment

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

mmm... fair point, but it will never be used as a 'read' dialect, so wouldn't that be misleading ?
Also it might benefit in the future from generation related stuff that would need to sit in a dedicated package.

Copy link
Contributor Author

Choose a reason for hiding this comment

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

The package name should indicate what it does (as opposed to what it 'is'). To that end, I've renamed 'dialects' to 'parsers'.
(there are exceptions to the above rule, for example 'sqlglot' is a specialization of 'transpiler')

Copy link
Collaborator

@sundarshankar89 sundarshankar89 Dec 9, 2024

Choose a reason for hiding this comment

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

nit: having folders for each of them is overkill, isn't it? can we just have them have files instead

Copy link
Contributor Author

Choose a reason for hiding this comment

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

moved the parsers up, doesn't hurt

Copy link
Collaborator

@sundarshankar89 sundarshankar89 left a comment

Choose a reason for hiding this comment

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

LGTM

@sundarshankar89
Copy link
Collaborator

sundarshankar89 commented Dec 9, 2024

@ganeshdogiparthi-db I would like you to stamp this as you are more closer to user impact this has and necessary changes you need to incorporate.

Copy link
Contributor

@bishwajit-db bishwajit-db left a comment

Choose a reason for hiding this comment

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

LGTM

@ericvergnaud ericvergnaud self-assigned this Dec 9, 2024
@ericvergnaud ericvergnaud added this pull request to the merge queue Dec 9, 2024
Merged via the queue into main with commit 5b815fb Dec 9, 2024
8 checks passed
@ericvergnaud ericvergnaud deleted the feature/multiplexer/refactor-python-transpiler-code branch December 9, 2024 14:43
ericvergnaud added a commit that referenced this pull request Dec 9, 2024
…ature/multiplexer/isolate-sqlglot-dependencies

* feature/multiplexer/refactor-transpiler-config:
  fix docs
  Fix incorrect script for no-pylint-disable (#1329)
  Refactor python transpiler code (#1314)
  Properly translate Snowflake REGEXP_SUBSTR (#1312)
  Prevent Dependabot from upgrading Databricks Connect. (#1322)
  Bump org.apache.maven.plugins:maven-jar-plugin from 2.4 to 3.4.2 (#1318)
  Bump com.lihaoyi:ujson_2.12 from 3.0.0-M2 to 4.0.2 (#1311)
  Bump org.scoverage:scoverage-maven-plugin from 2.0.5 to 2.0.6 (#1308)
  Bump com.databricks:databricks-sdk-java from 0.21.0 to 0.36.0 (#1292)
ericvergnaud added a commit that referenced this pull request Dec 9, 2024
…feature/multiplexer/rename-fixture

* feature/multiplexer/isolate-sqlglot-dependencies:
  fix docs
  Fix incorrect script for no-pylint-disable (#1329)
  Refactor python transpiler code (#1314)
  Properly translate Snowflake REGEXP_SUBSTR (#1312)
  Prevent Dependabot from upgrading Databricks Connect. (#1322)
  Bump org.apache.maven.plugins:maven-jar-plugin from 2.4 to 3.4.2 (#1318)
  Bump com.lihaoyi:ujson_2.12 from 3.0.0-M2 to 4.0.2 (#1311)
  Bump org.scoverage:scoverage-maven-plugin from 2.0.5 to 2.0.6 (#1308)
  Bump com.databricks:databricks-sdk-java from 0.21.0 to 0.36.0 (#1292)
ericvergnaud added a commit that referenced this pull request Dec 9, 2024
…lexer/create-launcher-from-cli

* feature/multiplexer/rename-fixture:
  fix docs
  Fix incorrect script for no-pylint-disable (#1329)
  Refactor python transpiler code (#1314)
  Properly translate Snowflake REGEXP_SUBSTR (#1312)
  Prevent Dependabot from upgrading Databricks Connect. (#1322)
  Bump org.apache.maven.plugins:maven-jar-plugin from 2.4 to 3.4.2 (#1318)
  Bump com.lihaoyi:ujson_2.12 from 3.0.0-M2 to 4.0.2 (#1311)
  Bump org.scoverage:scoverage-maven-plugin from 2.0.5 to 2.0.6 (#1308)
  Bump com.databricks:databricks-sdk-java from 0.21.0 to 0.36.0 (#1292)
github-merge-queue bot pushed a commit that referenced this pull request Dec 11, 2024
This PR renames fields for clarity

Progresses #1298

Requires #1314 to be merged
aman-db pushed a commit that referenced this pull request Dec 12, 2024
This PR renames fields for clarity

Progresses #1298

Requires #1314 to be merged
aman-db added a commit that referenced this pull request Dec 12, 2024
formating changes

adding code for partial transpile

adding string_utils and code refactor

adding test cases

adding code to handle unsupported exceptions

fix fmt and test cases

modified test case test_safe_parse_with_semicolon

format python code

rebased changes

Bump com.fasterxml.jackson.module:jackson-module-scala_2.12 from 2.15.2 to 2.18.2 (#1335)

Bumps
[com.fasterxml.jackson.module:jackson-module-scala_2.12](https://github.com/FasterXML/jackson-module-scala)
from 2.15.2 to 2.18.2.
<details>
<summary>Commits</summary>
<ul>
<li><a
href="https://github.com/FasterXML/jackson-module-scala/commit/b79dbd9e033240de487be1e04f42122f32270b31"><code>b79dbd9</code></a>
test with jackson 2.18.2</li>
<li><a
href="https://github.com/FasterXML/jackson-module-scala/commit/597131308f35c3454b4a5413a720dd0452adb2aa"><code>5971313</code></a>
Update VERSION.md</li>
<li><a
href="https://github.com/FasterXML/jackson-module-scala/commit/acd10462765e45ed08efef6d8cb81fd769d2d201"><code>acd1046</code></a>
Update VERSION.md</li>
<li><a
href="https://github.com/FasterXML/jackson-module-scala/commit/97f97180b2a3cc24df20e82e6baa2c369e7ad14c"><code>97f9718</code></a>
test with jackson 2.18.1</li>
<li><a
href="https://github.com/FasterXML/jackson-module-scala/commit/992295e759c16f93f6ff16116e42720bd05d63d4"><code>992295e</code></a>
Update VERSION.md</li>
<li><a
href="https://github.com/FasterXML/jackson-module-scala/commit/4f2d8ac23e8576b3ba7f31f2ec8c025b17fe7233"><code>4f2d8ac</code></a>
test with jackson 2.18.0</li>
<li><a
href="https://github.com/FasterXML/jackson-module-scala/commit/550981a9487bd9a453aa5a17a522708cd1ea947f"><code>550981a</code></a>
upgrade scala</li>
<li><a
href="https://github.com/FasterXML/jackson-module-scala/commit/e38523e2e4bcd256f4eb81beb9b7aaa97c5fb4a6"><code>e38523e</code></a>
Update VERSION.md</li>
<li><a
href="https://github.com/FasterXML/jackson-module-scala/commit/e682fd2f8ea5f3182e4892cecbff664cddc3eaea"><code>e682fd2</code></a>
release 2.18.0-rc1</li>
<li><a
href="https://github.com/FasterXML/jackson-module-scala/commit/0b72cd94f09a0df9f993c6707e9648e7ccae7207"><code>0b72cd9</code></a>
prep 2.18.0-rc1</li>
<li>Additional commits viewable in <a
href="https://github.com/FasterXML/jackson-module-scala/compare/v2.15.2...v2.18.2">compare
view</a></li>
</ul>
</details>
<br />

[![Dependabot compatibility
score](https://dependabot-badges.githubapp.com/badges/compatibility_score?dependency-name=com.fasterxml.jackson.module:jackson-module-scala_2.12&package-manager=maven&previous-version=2.15.2&new-version=2.18.2)](https://docs.github.com/en/github/managing-security-vulnerabilities/about-dependabot-security-updates#about-compatibility-scores)

Dependabot will resolve any conflicts with this PR as long as you don't
alter it yourself. You can also trigger a rebase manually by commenting
`@dependabot rebase`.

[//]: # (dependabot-automerge-start)
[//]: # (dependabot-automerge-end)

---

<details>
<summary>Dependabot commands and options</summary>
<br />

You can trigger Dependabot actions by commenting on this PR:
- `@dependabot rebase` will rebase this PR
- `@dependabot recreate` will recreate this PR, overwriting any edits
that have been made to it
- `@dependabot merge` will merge this PR after your CI passes on it
- `@dependabot squash and merge` will squash and merge this PR after
your CI passes on it
- `@dependabot cancel merge` will cancel a previously requested merge
and block automerging
- `@dependabot reopen` will reopen this PR if it is closed
- `@dependabot close` will close this PR and stop Dependabot recreating
it. You can achieve the same result by closing it manually
- `@dependabot show <dependency name> ignore conditions` will show all
of the ignore conditions of the specified dependency
- `@dependabot ignore this major version` will close this PR and stop
Dependabot creating any more for this major version (unless you reopen
the PR or upgrade to it yourself)
- `@dependabot ignore this minor version` will close this PR and stop
Dependabot creating any more for this minor version (unless you reopen
the PR or upgrade to it yourself)
- `@dependabot ignore this dependency` will close this PR and stop
Dependabot creating any more for this dependency (unless you reopen the
PR or upgrade to it yourself)

</details>

Signed-off-by: dependabot[bot] <[email protected]>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>

Bump org.apache.maven.plugins:maven-source-plugin from 3.3.0 to 3.3.1 (#1334)

Bumps
[org.apache.maven.plugins:maven-source-plugin](https://github.com/apache/maven-source-plugin)
from 3.3.0 to 3.3.1.
<details>
<summary>Commits</summary>
<ul>
<li><a
href="https://github.com/apache/maven-source-plugin/commit/f80596e4eb587cf99452b67b43ee9729fdadbf3a"><code>f80596e</code></a>
[maven-release-plugin] prepare release maven-source-plugin-3.3.1</li>
<li><a
href="https://github.com/apache/maven-source-plugin/commit/7626998d262931570c969abe3fc60cf911fd6820"><code>7626998</code></a>
Bump apache/maven-gh-actions-shared from 3 to 4</li>
<li><a
href="https://github.com/apache/maven-source-plugin/commit/83c963c0fffadd3257e9a1ca9266cfac98c057c3"><code>83c963c</code></a>
Bump org.apache.maven.plugins:maven-plugins from 39 to 41 (<a
href="https://redirect.github.com/apache/maven-source-plugin/issues/18">#18</a>)</li>
<li><a
href="https://github.com/apache/maven-source-plugin/commit/40ae49538beebc793f16a91578629383de114edb"><code>40ae495</code></a>
Bump org.codehaus.plexus:plexus-archiver from 4.8.0 to 4.9.1 (<a
href="https://redirect.github.com/apache/maven-source-plugin/issues/20">#20</a>)</li>
<li><a
href="https://github.com/apache/maven-source-plugin/commit/073462bf11ad9cf61cab6a2ed213bb8af5349f35"><code>073462b</code></a>
Bump org.apache.maven:maven-archiver from 3.6.0 to 3.6.1 (<a
href="https://redirect.github.com/apache/maven-source-plugin/issues/21">#21</a>)</li>
<li><a
href="https://github.com/apache/maven-source-plugin/commit/0b1c82366e306c9d138a3a83950326071c2fc7c6"><code>0b1c823</code></a>
Fix typos in AbstractSourceJarMojo exception</li>
<li><a
href="https://github.com/apache/maven-source-plugin/commit/099c65a64ac20e9f1133b41e2d1906944f6c13c3"><code>099c65a</code></a>
[MSOURCES-142] Bump org.codehaus.plexus:plexus-archiver from 4.7.1 to
4.8.0 (...</li>
<li><a
href="https://github.com/apache/maven-source-plugin/commit/1edeea47f80bc5c5903e88c1adbff56501248a8b"><code>1edeea4</code></a>
[MSOURCES-139] Fix typo in AbstractSourceJarMojo exception</li>
<li><a
href="https://github.com/apache/maven-source-plugin/commit/436966ed7f93611d5faa6534478347b99c40f488"><code>436966e</code></a>
[maven-release-plugin] prepare for next development iteration</li>
<li>See full diff in <a
href="https://github.com/apache/maven-source-plugin/compare/maven-source-plugin-3.3.0...maven-source-plugin-3.3.1">compare
view</a></li>
</ul>
</details>
<br />

[![Dependabot compatibility
score](https://dependabot-badges.githubapp.com/badges/compatibility_score?dependency-name=org.apache.maven.plugins:maven-source-plugin&package-manager=maven&previous-version=3.3.0&new-version=3.3.1)](https://docs.github.com/en/github/managing-security-vulnerabilities/about-dependabot-security-updates#about-compatibility-scores)

Dependabot will resolve any conflicts with this PR as long as you don't
alter it yourself. You can also trigger a rebase manually by commenting
`@dependabot rebase`.

[//]: # (dependabot-automerge-start)
[//]: # (dependabot-automerge-end)

---

<details>
<summary>Dependabot commands and options</summary>
<br />

You can trigger Dependabot actions by commenting on this PR:
- `@dependabot rebase` will rebase this PR
- `@dependabot recreate` will recreate this PR, overwriting any edits
that have been made to it
- `@dependabot merge` will merge this PR after your CI passes on it
- `@dependabot squash and merge` will squash and merge this PR after
your CI passes on it
- `@dependabot cancel merge` will cancel a previously requested merge
and block automerging
- `@dependabot reopen` will reopen this PR if it is closed
- `@dependabot close` will close this PR and stop Dependabot recreating
it. You can achieve the same result by closing it manually
- `@dependabot show <dependency name> ignore conditions` will show all
of the ignore conditions of the specified dependency
- `@dependabot ignore this major version` will close this PR and stop
Dependabot creating any more for this major version (unless you reopen
the PR or upgrade to it yourself)
- `@dependabot ignore this minor version` will close this PR and stop
Dependabot creating any more for this minor version (unless you reopen
the PR or upgrade to it yourself)
- `@dependabot ignore this dependency` will close this PR and stop
Dependabot creating any more for this dependency (unless you reopen the
PR or upgrade to it yourself)

</details>

Signed-off-by: dependabot[bot] <[email protected]>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>

Adjust Dependabot's maven update policies (#1338)

This PR adjusts the update policy for Dependabot:

 - We try to configure Dependabot to ignore `-preview` releases.
- For Scala patch-release updates are allowed: it's the major/minor
changes that are breaking that we wish to manage ourselves.

Fix dependabot configuration (#1339)

PR #1338 attempted to configure Dependabot to ignore (maven) versions
with a specific suffix. However Dependabot doesn't allow that style for
specifying (maven) versions to exclude. This PR reverts that change.

rename ci jobs for clarity (#1330)

Our current ci jobs do not express their scope
This PR fixes the issue

Co-authored-by: SundarShankar89 <[email protected]>

Configure Dependabot to ignore Mockito from 5.x onwards. (#1342)

Mockito 5 requires JDK 11 or later but we need to support JDK 8. This is
unlikely to change.

References:

 - https://github.com/mockito/mockito/releases/tag/v5.0.0
 - https://github.com/mockito/mockito/issues/2997

Relates: #1341

Co-authored-by: SundarShankar89 <[email protected]>

Allow ignoring tests using a function (#1337)

Co-authored-by: SundarShankar89 <[email protected]>

Bump com.databricks:databricks-sdk-java from 0.36.0 to 0.37.0 (#1340)

Bumps
[com.databricks:databricks-sdk-java](https://github.com/databricks/databricks-sdk-java)
from 0.36.0 to 0.37.0.
<details>
<summary>Changelog</summary>
<p><em>Sourced from <a
href="https://github.com/databricks/databricks-sdk-java/blob/main/CHANGELOG.md">com.databricks:databricks-sdk-java's
changelog</a>.</em></p>
<blockquote>
<h2>[Release] Release v0.37.0</h2>
<h3>Internal Changes</h3>
<ul>
<li>Update SDK to OpenAPI spec (<a
href="https://redirect.github.com/databricks/databricks-sdk-java/pull/389">#389</a>).</li>
</ul>
<h3>API Changes:</h3>
<ul>
<li>Added <code>com.databricks.sdk.service.cleanrooms</code>
package.</li>
<li>Added <code>delete()</code> method for
<code>workspaceClient.aibiDashboardEmbeddingAccessPolicy()</code>
service.</li>
<li>Added <code>delete()</code> method for
<code>workspaceClient.aibiDashboardEmbeddingApprovedDomains()</code>
service.</li>
<li>Added <code>databricksGcpServiceAccount</code> field for
<code>com.databricks.sdk.service.catalog.CreateCredentialRequest</code>.</li>
<li>Added <code>databricksGcpServiceAccount</code> field for
<code>com.databricks.sdk.service.catalog.CredentialInfo</code>.</li>
<li>Added <code>gcpOptions</code> field for
<code>com.databricks.sdk.service.catalog.GenerateTemporaryServiceCredentialRequest</code>.</li>
<li>Added <code>databricksGcpServiceAccount</code> field for
<code>com.databricks.sdk.service.catalog.UpdateCredentialRequest</code>.</li>
<li>Added <code>cachedQuerySchema</code> field for
<code>com.databricks.sdk.service.dashboards.QueryAttachment</code>.</li>
<li>Added .</li>
<li>Removed <code>gcpServiceAccountKey</code> field for
<code>com.databricks.sdk.service.catalog.CreateCredentialRequest</code>.</li>
</ul>
<p>OpenAPI SHA: 7016dcbf2e011459416cf408ce21143bcc4b3a25, Date:
2024-12-05</p>
</blockquote>
</details>
<details>
<summary>Commits</summary>
<ul>
<li><a
href="https://github.com/databricks/databricks-sdk-java/commit/5deb32185d619fba80601a168f2dd923b42c491e"><code>5deb321</code></a>
[Release] Release v0.37.0 (<a
href="https://redirect.github.com/databricks/databricks-sdk-java/issues/390">#390</a>)</li>
<li><a
href="https://github.com/databricks/databricks-sdk-java/commit/7a3bba69ff3088ed5e2381318d380855467b7739"><code>7a3bba6</code></a>
[Internal] Update SDK to OpenAPI spec (<a
href="https://redirect.github.com/databricks/databricks-sdk-java/issues/389">#389</a>)</li>
<li>See full diff in <a
href="https://github.com/databricks/databricks-sdk-java/compare/v0.36.0...v0.37.0">compare
view</a></li>
</ul>
</details>
<br />

[![Dependabot compatibility
score](https://dependabot-badges.githubapp.com/badges/compatibility_score?dependency-name=com.databricks:databricks-sdk-java&package-manager=maven&previous-version=0.36.0&new-version=0.37.0)](https://docs.github.com/en/github/managing-security-vulnerabilities/about-dependabot-security-updates#about-compatibility-scores)

Dependabot will resolve any conflicts with this PR as long as you don't
alter it yourself. You can also trigger a rebase manually by commenting
`@dependabot rebase`.

[//]: # (dependabot-automerge-start)
[//]: # (dependabot-automerge-end)

---

<details>
<summary>Dependabot commands and options</summary>
<br />

You can trigger Dependabot actions by commenting on this PR:
- `@dependabot rebase` will rebase this PR
- `@dependabot recreate` will recreate this PR, overwriting any edits
that have been made to it
- `@dependabot merge` will merge this PR after your CI passes on it
- `@dependabot squash and merge` will squash and merge this PR after
your CI passes on it
- `@dependabot cancel merge` will cancel a previously requested merge
and block automerging
- `@dependabot reopen` will reopen this PR if it is closed
- `@dependabot close` will close this PR and stop Dependabot recreating
it. You can achieve the same result by closing it manually
- `@dependabot show <dependency name> ignore conditions` will show all
of the ignore conditions of the specified dependency
- `@dependabot ignore this major version` will close this PR and stop
Dependabot creating any more for this major version (unless you reopen
the PR or upgrade to it yourself)
- `@dependabot ignore this minor version` will close this PR and stop
Dependabot creating any more for this minor version (unless you reopen
the PR or upgrade to it yourself)
- `@dependabot ignore this dependency` will close this PR and stop
Dependabot creating any more for this dependency (unless you reopen the
PR or upgrade to it yourself)

</details>

Signed-off-by: dependabot[bot] <[email protected]>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
Co-authored-by: SundarShankar89 <[email protected]>

Bump org.apache.maven.plugins:maven-assembly-plugin from 3.6.0 to 3.7.1 (#1343)

Bumps
[org.apache.maven.plugins:maven-assembly-plugin](https://github.com/apache/maven-assembly-plugin)
from 3.6.0 to 3.7.1.
<details>
<summary>Release notes</summary>
<p><em>Sourced from <a
href="https://github.com/apache/maven-assembly-plugin/releases">org.apache.maven.plugins:maven-assembly-plugin's
releases</a>.</em></p>
<blockquote>
<h2>3.7.1</h2>
<h2><a
href="https://issues.apache.org/jira/secure/ReleaseNote.jspa?projectId=12317220&amp;version=12354406">Release
Notes - Maven Assembly Plugin - Version 3.7.1</a></h2>
<!-- raw HTML omitted -->
<!-- raw HTML omitted -->
<h2>What's Changed</h2>
<ul>
<li>[MASSEMBLY-1023] Bump org.apache.maven.shared:maven-filtering from
3.3.1 to 3.3.2 by <a
href="https://github.com/dependabot"><code>@​dependabot</code></a> in <a
href="https://redirect.github.com/apache/maven-assembly-plugin/pull/192">apache/maven-assembly-plugin#192</a></li>
<li>[MASSEMBLY-1024] Bump org.apache.commons:commons-compress from
1.25.0 to 1.26.1 by <a
href="https://github.com/dependabot"><code>@​dependabot</code></a> in <a
href="https://redirect.github.com/apache/maven-assembly-plugin/pull/191">apache/maven-assembly-plugin#191</a></li>
<li>[MASSEMBLY-1025] Bump org.codehaus.plexus:plexus-archiver from 4.9.1
to 4.9.2 by <a
href="https://github.com/dependabot"><code>@​dependabot</code></a> in <a
href="https://redirect.github.com/apache/maven-assembly-plugin/pull/195">apache/maven-assembly-plugin#195</a></li>
<li>[MASSEMBLY-1022] Unresolved artifacts should be not processed by <a
href="https://github.com/slawekjaranowski"><code>@​slawekjaranowski</code></a>
in <a
href="https://redirect.github.com/apache/maven-assembly-plugin/pull/194">apache/maven-assembly-plugin#194</a></li>
</ul>
<p><strong>Full Changelog</strong>: <a
href="https://github.com/apache/maven-assembly-plugin/compare/maven-assembly-plugin-3.7.0...maven-assembly-plugin-3.7.1">https://github.com/apache/maven-assembly-plugin/compare/maven-assembly-plugin-3.7.0...maven-assembly-plugin-3.7.1</a></p>
<h2>3.7.0</h2>
<h1><a
href="https://issues.apache.org/jira/secure/ReleaseNote.jspa?projectId=12317220&amp;version=12353243">Release
Notes - Maven Assembly Plugin - Version 3.7.0</a></h1>
<!-- raw HTML omitted -->
</blockquote>
<p>... (truncated)</p>
</details>
<details>
<summary>Commits</summary>
<ul>
<li><a
href="https://github.com/apache/maven-assembly-plugin/commit/0afbb3e1252e0cdfb5e4abe3c4b2a108567059a7"><code>0afbb3e</code></a>
[maven-release-plugin] prepare release maven-assembly-plugin-3.7.1</li>
<li><a
href="https://github.com/apache/maven-assembly-plugin/commit/74e858ad40849cc3f8bef462e310336a8c6a0cd5"><code>74e858a</code></a>
[MASSEMBLY-1022] Unresolved artifacts should be not processed</li>
<li><a
href="https://github.com/apache/maven-assembly-plugin/commit/cb5638223ebaf93ff06290a6ebb64c6dac12ebd4"><code>cb56382</code></a>
[MASSEMBLY-1025] Bump org.codehaus.plexus:plexus-archiver from 4.9.1 to
4.9.2...</li>
<li><a
href="https://github.com/apache/maven-assembly-plugin/commit/86bbed043dbe78f6c32e99c1e433e052b2d78f69"><code>86bbed0</code></a>
[MASSEMBLY-1024] Bump org.apache.commons:commons-compress from 1.25.0 to
1.26...</li>
<li><a
href="https://github.com/apache/maven-assembly-plugin/commit/bdcc4d0d093de4484820b2f9c4f84b5d0f7eaaa0"><code>bdcc4d0</code></a>
[MASSEMBLY-1023] Bump org.apache.maven.shared:maven-filtering from 3.3.1
to 3...</li>
<li><a
href="https://github.com/apache/maven-assembly-plugin/commit/74fe92e979db0479ee58db580d0e7295e6113e78"><code>74fe92e</code></a>
[maven-release-plugin] prepare for next development iteration</li>
<li><a
href="https://github.com/apache/maven-assembly-plugin/commit/9be6e8733f187b15c0e6c0fb856765e12fb2c055"><code>9be6e87</code></a>
[maven-release-plugin] prepare release maven-assembly-plugin-3.7.0</li>
<li><a
href="https://github.com/apache/maven-assembly-plugin/commit/e8630dc91637860d1ca690b2c64c2c18e240eae7"><code>e8630dc</code></a>
Bump apache/maven-gh-actions-shared from 3 to 4</li>
<li><a
href="https://github.com/apache/maven-assembly-plugin/commit/98f97a5dca6eac582ea5e52d7d62e186d9b8e25f"><code>98f97a5</code></a>
Bump org.postgresql:postgresql in
/src/it/projects/bugs/massembly-730</li>
<li><a
href="https://github.com/apache/maven-assembly-plugin/commit/c84e11089a785d56441fac2314224c0bf86b200d"><code>c84e110</code></a>
[MASSEMBLY-1019] Maven 3.6.3 as minimum requirements</li>
<li>Additional commits viewable in <a
href="https://github.com/apache/maven-assembly-plugin/compare/maven-assembly-plugin-3.6.0...maven-assembly-plugin-3.7.1">compare
view</a></li>
</ul>
</details>
<br />

[![Dependabot compatibility
score](https://dependabot-badges.githubapp.com/badges/compatibility_score?dependency-name=org.apache.maven.plugins:maven-assembly-plugin&package-manager=maven&previous-version=3.6.0&new-version=3.7.1)](https://docs.github.com/en/github/managing-security-vulnerabilities/about-dependabot-security-updates#about-compatibility-scores)

Dependabot will resolve any conflicts with this PR as long as you don't
alter it yourself. You can also trigger a rebase manually by commenting
`@dependabot rebase`.

[//]: # (dependabot-automerge-start)
[//]: # (dependabot-automerge-end)

---

<details>
<summary>Dependabot commands and options</summary>
<br />

You can trigger Dependabot actions by commenting on this PR:
- `@dependabot rebase` will rebase this PR
- `@dependabot recreate` will recreate this PR, overwriting any edits
that have been made to it
- `@dependabot merge` will merge this PR after your CI passes on it
- `@dependabot squash and merge` will squash and merge this PR after
your CI passes on it
- `@dependabot cancel merge` will cancel a previously requested merge
and block automerging
- `@dependabot reopen` will reopen this PR if it is closed
- `@dependabot close` will close this PR and stop Dependabot recreating
it. You can achieve the same result by closing it manually
- `@dependabot show <dependency name> ignore conditions` will show all
of the ignore conditions of the specified dependency
- `@dependabot ignore this major version` will close this PR and stop
Dependabot creating any more for this major version (unless you reopen
the PR or upgrade to it yourself)
- `@dependabot ignore this minor version` will close this PR and stop
Dependabot creating any more for this minor version (unless you reopen
the PR or upgrade to it yourself)
- `@dependabot ignore this dependency` will close this PR and stop
Dependabot creating any more for this dependency (unless you reopen the
PR or upgrade to it yourself)

</details>

Signed-off-by: dependabot[bot] <[email protected]>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>

Bump org.scala-lang:scala-library from 2.12.19 to 2.12.20 (#1344)

Bumps [org.scala-lang:scala-library](https://github.com/scala/scala)
from 2.12.19 to 2.12.20.
<details>
<summary>Release notes</summary>
<p><em>Sourced from <a
href="https://github.com/scala/scala/releases">org.scala-lang:scala-library's
releases</a>.</em></p>
<blockquote>
<h2>Scala 2.12.20</h2>
<p>This release improves <strong>compatibility</strong>:</p>
<ul>
<li>Support JDK 23 in optimizer (via upgrade to patched ASM 9.7.0) (<a
href="https://redirect.github.com/scala/scala/pull/10747">#10747</a> by
<a
href="https://github.com/Philippus"><code>@​Philippus</code></a>)</li>
<li>Bump scala-xml dependency to 2.3.0 (was 2.2.0) (<a
href="https://redirect.github.com/scala/scala/pull/10782">#10782</a>)</li>
</ul>
<p>and <strong>compiler profiling</strong>:</p>
<ul>
<li>Collect statistics without printing them (<a
href="https://redirect.github.com/scala/scala/pull/10798">#10798</a> by
<a href="https://github.com/szeiger"><code>@​szeiger</code></a>)</li>
</ul>
<p>For complete 2.12.20 change lists, see <a
href="https://github.com/scala/scala/pulls?q=is%3Amerged%20milestone%3A2.12.20">all
merged PRs</a> and <a
href="https://github.com/scala/bug/issues?utf8=%E2%9C%93&amp;q=is%3Aclosed+milestone%3A2.12.20">all
closed bugs</a>.</p>
<h2>Compatibility</h2>
<p>As usual for our minor releases, Scala 2.12.20 is <a
href="https://docs.scala-lang.org/overviews/core/binary-compatibility-of-scala-releases.html">binary-compatible</a>
with the whole Scala 2.12 series.</p>
<h2>Contributors</h2>
<p>A big thank you to everyone who's helped improve Scala by reporting
bugs, improving our documentation, spreading kindness in discussions
around Scala, and submitting and reviewing pull requests! You are all
magnificent.</p>
<p>This release was brought to you by 8 contributors, according to
<code>git shortlog -sn --no-merges @ ^v2.12.19</code>. Thank you Scala
Steward, Seth Tisue, Lukas Rytz, A. P. Marki, Hamza Remmal, Philippus
Baalman, Stefan Zeiger, nbauma109.</p>
<p>Thanks to <a href="https://www.lightbend.com/scala">Lightbend</a> for
their continued sponsorship of the Scala 2 team’s efforts. Lightbend
offers <a
href="https://www.lightbend.com/lightbend-platform-subscription">commercial
support</a> for Scala 2.</p>
<h2>Scala 2.12 notes</h2>
<p>The <a href="https://github.com/scala/scala/releases/v2.12.0">release
notes for Scala 2.12.0</a> have important information applicable to the
whole 2.12 series.</p>
<h2>Obtaining Scala</h2>
<p>Scala releases are available through a variety of channels, including
(but not limited to):</p>
<ul>
<li>Bump the <code>scalaVersion</code> setting in your sbt project</li>
<li>Bump the <code>using scala</code> setting in your Scala CLI
project</li>
<li>Download a distribution from <a
href="https://scala-lang.org/download/2.12.20.html">scala-lang.org</a></li>
<li>Obtain JARs via <a
href="https://search.maven.org/search?q=g:org.scala-lang%20AND%20v:2.12.20">Maven
Central</a></li>
</ul>
</blockquote>
</details>
<details>
<summary>Commits</summary>
<ul>
<li><a
href="https://github.com/scala/scala/commit/13f19f4d5f9c036019b671a53a788bbaed67adf8"><code>13f19f4</code></a>
Merge pull request <a
href="https://redirect.github.com/scala/scala/issues/10845">#10845</a>
from SethTisue/restarr-onto-2.12.20-M1</li>
<li><a
href="https://github.com/scala/scala/commit/153763e5f18b772a245f061986e9db9044808ffd"><code>153763e</code></a>
New reference compiler is Scala 2.12.20-M1</li>
<li><a
href="https://github.com/scala/scala/commit/2059754b63170afb7168c44ed26ea2e3445125dd"><code>2059754</code></a>
fix Sonatype secrets for Travis-CI again</li>
<li><a
href="https://github.com/scala/scala/commit/1f657ec1ad6e1c8376e59ac39ec8bec1f4a9a80c"><code>1f657ec</code></a>
fix Sonatype secrets for Travis-CI again</li>
<li><a
href="https://github.com/scala/scala/commit/628828b7c27a34bf0fbff3f3e81bf159787f08a8"><code>628828b</code></a>
refresh Sonatype secrets for Travis-CI</li>
<li><a
href="https://github.com/scala/scala/commit/eb7f1b43e09d89e88ddba5cbbd96c96ecb625a34"><code>eb7f1b4</code></a>
add JDK 23 (early access) to nightly CI</li>
<li><a
href="https://github.com/scala/scala/commit/47e6f5b8fce1e8111dfda61e9cff6f59dc66155c"><code>47e6f5b</code></a>
Merge pull request <a
href="https://redirect.github.com/scala/scala/issues/10836">#10836</a>
from scala-steward/update/2.12.x/sbt-mima-plugin-1.1.4</li>
<li><a
href="https://github.com/scala/scala/commit/56e93888be9a438e449ad1002460402807a09c77"><code>56e9388</code></a>
Merge pull request <a
href="https://redirect.github.com/scala/scala/issues/10837">#10837</a>
from scala-steward/update/2.12.x/commons-lang3-3.16.0</li>
<li><a
href="https://github.com/scala/scala/commit/4e30e0ed96d04486de90416a0018c600f33d10d3"><code>4e30e0e</code></a>
Merge pull request <a
href="https://redirect.github.com/scala/scala/issues/10747">#10747</a>
from Philippus/update/asm-9.7-scala-2.12.x</li>
<li><a
href="https://github.com/scala/scala/commit/9507905ad616dbc6b19e4b798ba7ba34fe1d54c8"><code>9507905</code></a>
Update commons-lang3 to 3.16.0 in 2.12.x</li>
<li>Additional commits viewable in <a
href="https://github.com/scala/scala/compare/v2.12.19...v2.12.20">compare
view</a></li>
</ul>
</details>
<br />

[![Dependabot compatibility
score](https://dependabot-badges.githubapp.com/badges/compatibility_score?dependency-name=org.scala-lang:scala-library&package-manager=maven&previous-version=2.12.19&new-version=2.12.20)](https://docs.github.com/en/github/managing-security-vulnerabilities/about-dependabot-security-updates#about-compatibility-scores)

Dependabot will resolve any conflicts with this PR as long as you don't
alter it yourself. You can also trigger a rebase manually by commenting
`@dependabot rebase`.

[//]: # (dependabot-automerge-start)
[//]: # (dependabot-automerge-end)

---

<details>
<summary>Dependabot commands and options</summary>
<br />

You can trigger Dependabot actions by commenting on this PR:
- `@dependabot rebase` will rebase this PR
- `@dependabot recreate` will recreate this PR, overwriting any edits
that have been made to it
- `@dependabot merge` will merge this PR after your CI passes on it
- `@dependabot squash and merge` will squash and merge this PR after
your CI passes on it
- `@dependabot cancel merge` will cancel a previously requested merge
and block automerging
- `@dependabot reopen` will reopen this PR if it is closed
- `@dependabot close` will close this PR and stop Dependabot recreating
it. You can achieve the same result by closing it manually
- `@dependabot show <dependency name> ignore conditions` will show all
of the ignore conditions of the specified dependency
- `@dependabot ignore this major version` will close this PR and stop
Dependabot creating any more for this major version (unless you reopen
the PR or upgrade to it yourself)
- `@dependabot ignore this minor version` will close this PR and stop
Dependabot creating any more for this minor version (unless you reopen
the PR or upgrade to it yourself)
- `@dependabot ignore this dependency` will close this PR and stop
Dependabot creating any more for this dependency (unless you reopen the
PR or upgrade to it yourself)

</details>

Signed-off-by: dependabot[bot] <[email protected]>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>

Bump org.codehaus.mojo:build-helper-maven-plugin from 3.4.0 to 3.6.0 (#1347)

Bumps
[org.codehaus.mojo:build-helper-maven-plugin](https://github.com/mojohaus/build-helper-maven-plugin)
from 3.4.0 to 3.6.0.
<details>
<summary>Release notes</summary>
<p><em>Sourced from <a
href="https://github.com/mojohaus/build-helper-maven-plugin/releases">org.codehaus.mojo:build-helper-maven-plugin's
releases</a>.</em></p>
<blockquote>
<h2>3.6.0</h2>
<h2>Changes</h2>
<h2>🚀 New features and improvements</h2>
<ul>
<li>Deprecate remove-project-artifact goal (<a
href="https://redirect.github.com/mojohaus/build-helper-maven-plugin/pull/205">#205</a>)
<a
href="https://github.com/slawekjaranowski"><code>@​slawekjaranowski</code></a></li>
<li>Parallel execution of uptodate-properties (<a
href="https://redirect.github.com/mojohaus/build-helper-maven-plugin/pull/201">#201</a>)
<a href="https://github.com/mkarg"><code>@​mkarg</code></a></li>
</ul>
<h2>📦 Dependency updates</h2>
<ul>
<li>Bump org.codehaus.mojo:mojo-parent from 81 to 82 (<a
href="https://redirect.github.com/mojohaus/build-helper-maven-plugin/pull/206">#206</a>)
<a
href="https://github.com/dependabot"><code>@​dependabot</code></a></li>
<li>Bump org.codehaus.mojo:mojo-parent from 78 to 81 (<a
href="https://redirect.github.com/mojohaus/build-helper-maven-plugin/pull/204">#204</a>)
<a
href="https://github.com/dependabot"><code>@​dependabot</code></a></li>
<li>Bump org.codehaus.plexus:plexus-utils from 4.0.0 to 4.0.1 (<a
href="https://redirect.github.com/mojohaus/build-helper-maven-plugin/pull/202">#202</a>)
<a
href="https://github.com/dependabot"><code>@​dependabot</code></a></li>
<li>Bump apache/maven-gh-actions-shared from 3 to 4 (<a
href="https://redirect.github.com/mojohaus/build-helper-maven-plugin/pull/200">#200</a>)
<a
href="https://github.com/dependabot"><code>@​dependabot</code></a></li>
<li>Bump release-drafter/release-drafter from 5 to 6 (<a
href="https://redirect.github.com/mojohaus/build-helper-maven-plugin/pull/195">#195</a>)
<a
href="https://github.com/dependabot"><code>@​dependabot</code></a></li>
<li>Bump org.codehaus.mojo:mojo-parent from 77 to 78 (<a
href="https://redirect.github.com/mojohaus/build-helper-maven-plugin/pull/193">#193</a>)
<a
href="https://github.com/dependabot"><code>@​dependabot</code></a></li>
</ul>
<h2>👻 Maintenance</h2>
<ul>
<li>Delete link to remove-project-artifact as is deprecated (<a
href="https://redirect.github.com/mojohaus/build-helper-maven-plugin/pull/210">#210</a>)
<a
href="https://github.com/slawekjaranowski"><code>@​slawekjaranowski</code></a></li>
<li>Cleanups dependencies (<a
href="https://redirect.github.com/mojohaus/build-helper-maven-plugin/pull/209">#209</a>)
<a
href="https://github.com/slawekjaranowski"><code>@​slawekjaranowski</code></a></li>
<li>Remove public modifiers from JUnit 5 tests (<a
href="https://redirect.github.com/mojohaus/build-helper-maven-plugin/pull/208">#208</a>)
<a
href="https://github.com/slawekjaranowski"><code>@​slawekjaranowski</code></a></li>
<li>Delete example about remove-project-artifact as is deprecated (<a
href="https://redirect.github.com/mojohaus/build-helper-maven-plugin/pull/207">#207</a>)
<a
href="https://github.com/slawekjaranowski"><code>@​slawekjaranowski</code></a></li>
<li>Fix goal in usage add-test-resource example (<a
href="https://redirect.github.com/mojohaus/build-helper-maven-plugin/pull/199">#199</a>)
<a
href="https://github.com/mfussenegger"><code>@​mfussenegger</code></a></li>
</ul>
<h2>🔧 Build</h2>
<ul>
<li>Use shared action for release drafter (<a
href="https://redirect.github.com/mojohaus/build-helper-maven-plugin/pull/203">#203</a>)
<a
href="https://github.com/slawekjaranowski"><code>@​slawekjaranowski</code></a></li>
</ul>
<h2>3.5.0</h2>
<h2>Changes</h2>
<h2>🚀 New features and improvements</h2>
<ul>
<li>Add skipIfMissing flag (<a
href="https://redirect.github.com/mojohaus/build-helper-maven-plugin/pull/187">#187</a>)
<a href="https://github.com/hgschmie"><code>@​hgschmie</code></a></li>
<li>Add skip flags (<a
href="https://redirect.github.com/mojohaus/build-helper-maven-plugin/pull/186">#186</a>)
<a href="https://github.com/hgschmie"><code>@​hgschmie</code></a></li>
<li>Deprecate maven-version goal (<a
href="https://redirect.github.com/mojohaus/build-helper-maven-plugin/pull/191">#191</a>)
<a
href="https://github.com/slawekjaranowski"><code>@​slawekjaranowski</code></a></li>
</ul>
<h2>📦 Dependency updates</h2>
<ul>
<li>Bump org.codehaus.mojo:mojo-parent from 76 to 77 (<a
href="https://redirect.github.com/mojohaus/build-helper-maven-plugin/pull/190">#190</a>)
<a
href="https://github.com/dependabot"><code>@​dependabot</code></a></li>
<li>Bump mojo-parent from 75 to 76 (<a
href="https://redirect.github.com/mojohaus/build-helper-maven-plugin/pull/185">#185</a>)
<a
href="https://github.com/dependabot"><code>@​dependabot</code></a></li>
<li>Bump mojo-parent from 74 to 75 (<a
href="https://redirect.github.com/mojohaus/build-helper-maven-plugin/pull/184">#184</a>)
<a
href="https://github.com/dependabot"><code>@​dependabot</code></a></li>
<li>Bump plexus-utils from 3.5.1 to 4.0.0 (<a
href="https://redirect.github.com/mojohaus/build-helper-maven-plugin/pull/183">#183</a>)
<a
href="https://github.com/dependabot"><code>@​dependabot</code></a></li>
<li>Bump maven-plugin-annotations from 3.8.2 to 3.9.0 (<a
href="https://redirect.github.com/mojohaus/build-helper-maven-plugin/pull/182">#182</a>)
<a
href="https://github.com/dependabot"><code>@​dependabot</code></a></li>
</ul>
<h2>👻 Maintenance</h2>
<ul>
<li>Use plugins versions from parent in ITs (<a
href="https://redirect.github.com/mojohaus/build-helper-maven-plugin/pull/192">#192</a>)
<a
href="https://github.com/slawekjaranowski"><code>@​slawekjaranowski</code></a></li>
<li>Use Maven Apache shared GitHub action (<a
href="https://redirect.github.com/mojohaus/build-helper-maven-plugin/pull/189">#189</a>)
<a
href="https://github.com/slawekjaranowski"><code>@​slawekjaranowski</code></a></li>
</ul>
<!-- raw HTML omitted -->
</blockquote>
<p>... (truncated)</p>
</details>
<details>
<summary>Commits</summary>
<ul>
<li><a
href="https://github.com/mojohaus/build-helper-maven-plugin/commit/333345494bc6053095b7f42b1fccfb8f230f75d1"><code>3333454</code></a>
[maven-release-plugin] prepare release 3.6.0</li>
<li><a
href="https://github.com/mojohaus/build-helper-maven-plugin/commit/05ee2cb17ff155862accaee1fc1b0ea1cae53911"><code>05ee2cb</code></a>
Delete link to remove-project-artifact as is deprecated</li>
<li><a
href="https://github.com/mojohaus/build-helper-maven-plugin/commit/a4190d2f634210091031ad27a3a50d626ea37cfa"><code>a4190d2</code></a>
Cleanups dependencies</li>
<li><a
href="https://github.com/mojohaus/build-helper-maven-plugin/commit/b99f6be8c876c012c41d163c832c4b0adfb28356"><code>b99f6be</code></a>
Remove public modifiers from JUnit 5 tests</li>
<li><a
href="https://github.com/mojohaus/build-helper-maven-plugin/commit/f21a0272a00f6bb4e6d404817a6c144ac65b2778"><code>f21a027</code></a>
Add me as developer</li>
<li><a
href="https://github.com/mojohaus/build-helper-maven-plugin/commit/211d4b9687c79085c3c036aefc14a8428195eb69"><code>211d4b9</code></a>
Delete example about remove-project-artifact as is deprecated</li>
<li><a
href="https://github.com/mojohaus/build-helper-maven-plugin/commit/27ab33494dffaa5d5f5e9cbbbac4f581e4ed9479"><code>27ab334</code></a>
Deprecate remove-project-artifact goal</li>
<li><a
href="https://github.com/mojohaus/build-helper-maven-plugin/commit/8a4c7c41842082f530775a933ab22088d673fd3c"><code>8a4c7c4</code></a>
Bump org.codehaus.mojo:mojo-parent from 81 to 82</li>
<li><a
href="https://github.com/mojohaus/build-helper-maven-plugin/commit/57f54801686afb43b3540c597010f0c9857b5901"><code>57f5480</code></a>
Bump org.codehaus.mojo:mojo-parent from 78 to 81 (<a
href="https://redirect.github.com/mojohaus/build-helper-maven-plugin/issues/204">#204</a>)</li>
<li><a
href="https://github.com/mojohaus/build-helper-maven-plugin/commit/c09d77946636cf605515c851cd6ede87b94eb81a"><code>c09d779</code></a>
Use shared action for release drafter</li>
<li>Additional commits viewable in <a
href="https://github.com/mojohaus/build-helper-maven-plugin/compare/3.4.0...3.6.0">compare
view</a></li>
</ul>
</details>
<br />

[![Dependabot compatibility
score](https://dependabot-badges.githubapp.com/badges/compatibility_score?dependency-name=org.codehaus.mojo:build-helper-maven-plugin&package-manager=maven&previous-version=3.4.0&new-version=3.6.0)](https://docs.github.com/en/github/managing-security-vulnerabilities/about-dependabot-security-updates#about-compatibility-scores)

Dependabot will resolve any conflicts with this PR as long as you don't
alter it yourself. You can also trigger a rebase manually by commenting
`@dependabot rebase`.

[//]: # (dependabot-automerge-start)
[//]: # (dependabot-automerge-end)

---

<details>
<summary>Dependabot commands and options</summary>
<br />

You can trigger Dependabot actions by commenting on this PR:
- `@dependabot rebase` will rebase this PR
- `@dependabot recreate` will recreate this PR, overwriting any edits
that have been made to it
- `@dependabot merge` will merge this PR after your CI passes on it
- `@dependabot squash and merge` will squash and merge this PR after
your CI passes on it
- `@dependabot cancel merge` will cancel a previously requested merge
and block automerging
- `@dependabot reopen` will reopen this PR if it is closed
- `@dependabot close` will close this PR and stop Dependabot recreating
it. You can achieve the same result by closing it manually
- `@dependabot show <dependency name> ignore conditions` will show all
of the ignore conditions of the specified dependency
- `@dependabot ignore this major version` will close this PR and stop
Dependabot creating any more for this major version (unless you reopen
the PR or upgrade to it yourself)
- `@dependabot ignore this minor version` will close this PR and stop
Dependabot creating any more for this minor version (unless you reopen
the PR or upgrade to it yourself)
- `@dependabot ignore this dependency` will close this PR and stop
Dependabot creating any more for this dependency (unless you reopen the
PR or upgrade to it yourself)

</details>

Signed-off-by: dependabot[bot] <[email protected]>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>

Bump com.github.eirslett:frontend-maven-plugin from 1.15.0 to 1.15.1 (#1348)

Bumps
[com.github.eirslett:frontend-maven-plugin](https://github.com/eirslett/frontend-maven-plugin)
from 1.15.0 to 1.15.1.
<details>
<summary>Changelog</summary>
<p><em>Sourced from <a
href="https://github.com/eirslett/frontend-maven-plugin/blob/master/CHANGELOG.md">com.github.eirslett:frontend-maven-plugin's
changelog</a>.</em></p>
<blockquote>
<h3>1.15.1</h3>
<ul>
<li>Fix <a
href="https://redirect.github.com/eirslett/frontend-maven-plugin/issues/1150">#1150</a>:
Update lifecycle-mapping-metadata.xml for npx</li>
</ul>
</blockquote>
</details>
<details>
<summary>Commits</summary>
<ul>
<li><a
href="https://github.com/eirslett/frontend-maven-plugin/commit/3f70757455b41c399baf742954a9285f93a0f774"><code>3f70757</code></a>
[maven-release-plugin] prepare release frontend-plugins-1.15.1</li>
<li><a
href="https://github.com/eirslett/frontend-maven-plugin/commit/c5c9aec3e44b980618b487be02571f88c76339a5"><code>c5c9aec</code></a>
Attempt 2: secrets for OSSRH deployment</li>
<li><a
href="https://github.com/eirslett/frontend-maven-plugin/commit/274bb70b70453ad28e4119b840233ddbd57d8f74"><code>274bb70</code></a>
Update secrets for OSSRH deployment</li>
<li><a
href="https://github.com/eirslett/frontend-maven-plugin/commit/f39b40c20971ecb810adce465d37f28d9dc4c0e6"><code>f39b40c</code></a>
Fix: bun windows support</li>
<li><a
href="https://github.com/eirslett/frontend-maven-plugin/commit/a7d3b8b26e50d0259c3038fa67530c8d8892f982"><code>a7d3b8b</code></a>
Update NodeInstaller.java</li>
<li><a
href="https://github.com/eirslett/frontend-maven-plugin/commit/2750625dbbe0bc4ec1d2f1bf3ffd639657be9fd2"><code>2750625</code></a>
Fix <a
href="https://redirect.github.com/eirslett/frontend-maven-plugin/issues/1152">#1152</a>:
Copy npm script file</li>
<li><a
href="https://github.com/eirslett/frontend-maven-plugin/commit/622ac16f7082a7cb87e6844b4e008dd0b739da0e"><code>622ac16</code></a>
<a
href="https://redirect.github.com/eirslett/frontend-maven-plugin/issues/1042">#1042</a>
Use correct Xpp3Dom class</li>
<li><a
href="https://github.com/eirslett/frontend-maven-plugin/commit/bca8bdf3cb613a5d863b7f07ccd4588226b9ad25"><code>bca8bdf</code></a>
Replace tabs with spaces</li>
<li><a
href="https://github.com/eirslett/frontend-maven-plugin/commit/122cd9b1d2e4e87273f7df18537f4433c7445ee5"><code>122cd9b</code></a>
<a
href="https://redirect.github.com/eirslett/frontend-maven-plugin/issues/1042">#1042</a>
Allow Authentication via Http Header</li>
<li><a
href="https://github.com/eirslett/frontend-maven-plugin/commit/60bbf029c54a7024985e5514a917fd18e4b03a86"><code>60bbf02</code></a>
Fix: delete only bun directory inside the installation directory instead
of t...</li>
<li>Additional commits viewable in <a
href="https://github.com/eirslett/frontend-maven-plugin/compare/frontend-plugins-1.15.0...frontend-plugins-1.15.1">compare
view</a></li>
</ul>
</details>
<br />

[![Dependabot compatibility
score](https://dependabot-badges.githubapp.com/badges/compatibility_score?dependency-name=com.github.eirslett:frontend-maven-plugin&package-manager=maven&previous-version=1.15.0&new-version=1.15.1)](https://docs.github.com/en/github/managing-security-vulnerabilities/about-dependabot-security-updates#about-compatibility-scores)

Dependabot will resolve any conflicts with this PR as long as you don't
alter it yourself. You can also trigger a rebase manually by commenting
`@dependabot rebase`.

[//]: # (dependabot-automerge-start)
[//]: # (dependabot-automerge-end)

---

<details>
<summary>Dependabot commands and options</summary>
<br />

You can trigger Dependabot actions by commenting on this PR:
- `@dependabot rebase` will rebase this PR
- `@dependabot recreate` will recreate this PR, overwriting any edits
that have been made to it
- `@dependabot merge` will merge this PR after your CI passes on it
- `@dependabot squash and merge` will squash and merge this PR after
your CI passes on it
- `@dependabot cancel merge` will cancel a previously requested merge
and block automerging
- `@dependabot reopen` will reopen this PR if it is closed
- `@dependabot close` will close this PR and stop Dependabot recreating
it. You can achieve the same result by closing it manually
- `@dependabot show <dependency name> ignore conditions` will show all
of the ignore conditions of the specified dependency
- `@dependabot ignore this major version` will close this PR and stop
Dependabot creating any more for this major version (unless you reopen
the PR or upgrade to it yourself)
- `@dependabot ignore this minor version` will close this PR and stop
Dependabot creating any more for this minor version (unless you reopen
the PR or upgrade to it yourself)
- `@dependabot ignore this dependency` will close this PR and stop
Dependabot creating any more for this dependency (unless you reopen the
PR or upgrade to it yourself)

</details>

Signed-off-by: dependabot[bot] <[email protected]>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>

rename fields in TranspileConfig (#1321)

This PR renames fields for clarity

Progresses https://github.com/databrickslabs/remorph/issues/1298

Requires #1314 to be merged

Bump org.scalatest:scalatest_2.12 from 3.3.0-SNAP3 to 3.3.0-SNAP4 (#1332)

Bumps
[org.scalatest:scalatest_2.12](https://github.com/scalatest/scalatest)
from 3.3.0-SNAP3 to 3.3.0-SNAP4.
<details>
<summary>Commits</summary>
<ul>
<li>See full diff in <a
href="https://github.com/scalatest/scalatest/commits">compare
view</a></li>
</ul>
</details>
<br />

[![Dependabot compatibility
score](https://dependabot-badges.githubapp.com/badges/compatibility_score?dependency-name=org.scalatest:scalatest_2.12&package-manager=maven&previous-version=3.3.0-SNAP3&new-version=3.3.0-SNAP4)](https://docs.github.com/en/github/managing-security-vulnerabilities/about-dependabot-security-updates#about-compatibility-scores)

Dependabot will resolve any conflicts with this PR as long as you don't
alter it yourself. You can also trigger a rebase manually by commenting
`@dependabot rebase`.

[//]: # (dependabot-automerge-start)
[//]: # (dependabot-automerge-end)

---

<details>
<summary>Dependabot commands and options</summary>
<br />

You can trigger Dependabot actions by commenting on this PR:
- `@dependabot rebase` will rebase this PR
- `@dependabot recreate` will recreate this PR, overwriting any edits
that have been made to it
- `@dependabot merge` will merge this PR after your CI passes on it
- `@dependabot squash and merge` will squash and merge this PR after
your CI passes on it
- `@dependabot cancel merge` will cancel a previously requested merge
and block automerging
- `@dependabot reopen` will reopen this PR if it is closed
- `@dependabot close` will close this PR and stop Dependabot recreating
it. You can achieve the same result by closing it manually
- `@dependabot show <dependency name> ignore conditions` will show all
of the ignore conditions of the specified dependency
- `@dependabot ignore this major version` will close this PR and stop
Dependabot creating any more for this major version (unless you reopen
the PR or upgrade to it yourself)
- `@dependabot ignore this minor version` will close this PR and stop
Dependabot creating any more for this minor version (unless you reopen
the PR or upgrade to it yourself)
- `@dependabot ignore this dependency` will close this PR and stop
Dependabot creating any more for this dependency (unless you reopen the
PR or upgrade to it yourself)

</details>

Signed-off-by: dependabot[bot] <[email protected]>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>

Bump com.fasterxml.jackson.dataformat:jackson-dataformat-yaml from 2.14.0 to 2.18.2 (#1324)

Bumps
[com.fasterxml.jackson.dataformat:jackson-dataformat-yaml](https://github.com/FasterXML/jackson-dataformats-text)
from 2.14.0 to 2.18.2.
<details>
<summary>Commits</summary>
<ul>
<li><a
href="https://github.com/FasterXML/jackson-dataformats-text/commit/c7edd07719a3e7f8160f7da0ed36b37f2e99f3e4"><code>c7edd07</code></a>
[maven-release-plugin] prepare release
jackson-dataformats-text-2.18.2</li>
<li><a
href="https://github.com/FasterXML/jackson-dataformats-text/commit/967f11fb990d7c666d5f39155e1fd39fe5d687e0"><code>967f11f</code></a>
Prep for 2.18.2</li>
<li><a
href="https://github.com/FasterXML/jackson-dataformats-text/commit/e045611f4711ded0cd2222696eab11170fd83b4d"><code>e045611</code></a>
Merge branch '2.17' into 2.18</li>
<li><a
href="https://github.com/FasterXML/jackson-dataformats-text/commit/1e7c62862437cad718dee125af4b02ba9b20f4a1"><code>1e7c628</code></a>
Back to snapshot dep</li>
<li><a
href="https://github.com/FasterXML/jackson-dataformats-text/commit/1223dac36f6262106599b530d8c0ee99db6335fb"><code>1223dac</code></a>
[maven-release-plugin] prepare for next development iteration</li>
<li><a
href="https://github.com/FasterXML/jackson-dataformats-text/commit/b3771f943d7fe064fd40e71d867383ed9ce4c164"><code>b3771f9</code></a>
[maven-release-plugin] prepare release
jackson-dataformats-text-2.17.3</li>
<li><a
href="https://github.com/FasterXML/jackson-dataformats-text/commit/683310e1e08f40118451624edecb3d8cddd90a79"><code>683310e</code></a>
Prep for 2.17.3</li>
<li><a
href="https://github.com/FasterXML/jackson-dataformats-text/commit/2c4830a2308c45022d945dcad43494283d8e7fba"><code>2c4830a</code></a>
Back to snapshot deps</li>
<li><a
href="https://github.com/FasterXML/jackson-dataformats-text/commit/065f6f22ec1050d84eecb9f890738db95d6b6329"><code>065f6f2</code></a>
[maven-release-plugin] prepare for next development iteration</li>
<li><a
href="https://github.com/FasterXML/jackson-dataformats-text/commit/4f3aa83e9dee1c0d511963b853021ee5432f619a"><code>4f3aa83</code></a>
[maven-release-plugin] prepare release
jackson-dataformats-text-2.18.1</li>
<li>Additional commits viewable in <a
href="https://github.com/FasterXML/jackson-dataformats-text/compare/jackson-dataformats-text-2.14.0...jackson-dataformats-text-2.18.2">compare
view</a></li>
</ul>
</details>
<br />

[![Dependabot compatibility
score](https://dependabot-badges.githubapp.com/badges/compatibility_score?dependency-name=com.fasterxml.jackson.dataformat:jackson-dataformat-yaml&package-manager=maven&previous-version=2.14.0&new-version=2.18.2)](https://docs.github.com/en/github/managing-security-vulnerabilities/about-dependabot-security-updates#about-compatibility-scores)

Dependabot will resolve any conflicts with this PR as long as you don't
alter it yourself. You can also trigger a rebase manually by commenting
`@dependabot rebase`.

[//]: # (dependabot-automerge-start)
[//]: # (dependabot-automerge-end)

---

<details>
<summary>Dependabot commands and options</summary>
<br />

You can trigger Dependabot actions by commenting on this PR:
- `@dependabot rebase` will rebase this PR
- `@dependabot recreate` will recreate this PR, overwriting any edits
that have been made to it
- `@dependabot merge` will merge this PR after your CI passes on it
- `@dependabot squash and merge` will squash and merge this PR after
your CI passes on it
- `@dependabot cancel merge` will cancel a previously requested merge
and block automerging
- `@dependabot reopen` will reopen this PR if it is closed
- `@dependabot close` will close this PR and stop Dependabot recreating
it. You can achieve the same result by closing it manually
- `@dependabot show <dependency name> ignore conditions` will show all
of the ignore conditions of the specified dependency
- `@dependabot ignore this major version` will close this PR and stop
Dependabot creating any more for this major version (unless you reopen
the PR or upgrade to it yourself)
- `@dependabot ignore this minor version` will close this PR and stop
Dependabot creating any more for this minor version (unless you reopen
the PR or upgrade to it yourself)
- `@dependabot ignore this dependency` will close this PR and stop
Dependabot creating any more for this dependency (unless you reopen the
PR or upgrade to it yourself)

</details>

Signed-off-by: dependabot[bot] <[email protected]>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
sundarshankar89 pushed a commit to sundarshankar89/remorph that referenced this pull request Jan 2, 2025
This PR implements a clear structure for existing python transpiler
code, and also renames a few classes for clarity.

Progresses databrickslabs#1298
sundarshankar89 pushed a commit to sundarshankar89/remorph that referenced this pull request Jan 2, 2025
This PR renames fields for clarity

Progresses databrickslabs#1298

Requires databrickslabs#1314 to be merged
sundarshankar89 pushed a commit to sundarshankar89/remorph that referenced this pull request Jan 3, 2025
This PR implements a clear structure for existing python transpiler
code, and also renames a few classes for clarity.

Progresses databrickslabs#1298
sundarshankar89 pushed a commit to sundarshankar89/remorph that referenced this pull request Jan 3, 2025
This PR renames fields for clarity

Progresses databrickslabs#1298

Requires databrickslabs#1314 to be merged
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.

3 participants