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

Added BigQuery Dialect and support format_date functionality #1296

Closed
wants to merge 616 commits into from

Conversation

ganeshdogiparthi-db
Copy link
Contributor

No description provided.

vil1 and others added 30 commits August 12, 2024 11:53
Added logger statements in Metadata (Schema) fetch functions.
* logging `Schema Query`, `start time` and `end time`.
* Added Flow Diagram, Visualisation, README docs
Here we modify some existing tests to improve coverage of TSQL and fix
some bugs in code generation or add additional tests.
…785)

This should speed up test targets and inner devloop
PR #548 unfortunately incorrectly removed support for parenthesized
expressions.

This was not caught because we had no coverage tests for expression
precedence so an expression such as:

```sql
(a + b) * c
```

Generates a syntax error.

The PR also:
- removed `bracketExpression` from the `expr` rule, but left it in the
grammar despite being unused (removing it would have pointed out its
real use in the IR generator)
  - Incorrectly duplicated `COLON id` 

Here we reinstate expression precedence correctly, add test coverage for
the grammar changes that were made, and correct the duplication of
`COLON id`
…D OPTION (#788)

The TSQL grammar for `CREATE DATABASE` and `CREATE DATABASE SCOPED
OPTION` was not consistent with the TSQL documentation. Here we correct
the grammar errors.

While it was originally my intention to implement these all the way
through to code gen, the DDL needs some serious work, and I would rather
implement the grammar for it all in a series of grammar only PRs, then
come back through and implement all the way to codegen in a subsequent
set of PRs. The reason being that as each DDL statement is fixed at the
grammar level, all the other DDL statements will gradually simplify at
the same time and I do not wish to keep changing grammar then have to
tweak previously defined code gen.
Here we correct the existing grammar for CREATE TABLE in all its forms
such as graph nodes, CTAS and FILETABLE.
)

Adds additional instructions for making ANTLR grammar changes, including
explicit rules and checks to make.
Here we implement a linting tool that is customized towards the antlr4
grammars in this repo.

As a first step, we identify any rules defined in a parser grammar that
are not referenced anywhere else in the grammar, as well as referenced
rules that are undefined. Note that we do not process include file in
this PR and so this could result in false negatives if rules in one
grammar are referenced in an included grammar. At this point we have no
included grammars in our main grammars and hence this is as yet, not an
issue.

Note that this PR adds a new github action which eventually will fail
the build if it find issues in the grammars. As the new linter finds
errors in both our parser grammars, we will need to fix those errors
before allowing the lint to fail the build.

The linter produces output akin to:

```

Issues found in grammar: /Users/jim.idle/databricks/remorph/core/src/main/antlr4/com/databricks/labs/remorph/parsers/tsql/TSqlParser.g4
Orphaned rules (rules defined but never used):
  nouse defined at line 1675:
    nouse
        : DEFAULT_LANGUAGE EQ (id | STRING)

  insertColumnNameList defined at line 3321:
    insertColumnNameList: insertColumnId (COMMA insertColumnId)*
        ;

  entityNameForParallelDw defined at line 3290:
    entityNameForParallelDw: schemaDatabase = id | schema = id DOT objectName = id
        ;

  deprecatedTableHint defined at line 3211:
    deprecatedTableHint: LPAREN tableHint RPAREN
        ;

  createDatabaseScopedCredential defined at line 1665:
    createDatabaseScopedCredential
        : CREATE DATABASE SCOPED CREDENTIAL id WITH IDENTITY EQ STRING (SECRET EQ STRING)?

  udtMethodArguments defined at line 3014:
    udtMethodArguments
        : LPAREN argument += executeVarString (COMMA argument += executeVarString)* RPAREN

  entityNameForAzureDw defined at line 3287:
    entityNameForAzureDw: schema = id | schema = id DOT objectName = id
        ;

  indexValue defined at line 3223:
    indexValue: id | INT
        ;

  sybaseLegacyHint defined at line 3214:
    sybaseLegacyHint: HOLDLOCK | NOHOLDLOCK | READPAST | SHARED
        ;


Issues found in grammar: /Users/jim.idle/databricks/remorph/core/src/main/antlr4/com/databricks/labs/remorph/parsers/snowflake/SnowflakeParser.g4
Orphaned rules (rules defined but never used):
  valuesBuilder defined at line 118:
    valuesBuilder: VALUES L_PAREN exprList R_PAREN (COMMA L_PAREN exprList R_PAREN)?
        ;

  jsonPath defined at line 3145:
    jsonPath: jsonPathElem (DOT jsonPathElem)*
        ;

  bracketExpression defined at line 3276:
    bracketExpression: L_PAREN exprList R_PAREN | L_PAREN subquery R_PAREN
        ;

make: *** [antlr-lint] Error 1

```
* Added widgets Aggregates Reconcile metrics
closes #748 
* Added create and insert statement(100) TPC-DS dataset
The new ANTLR linter points out a number of unused rules in the TSQL
grammar. Here we resolve the linting errors, generally by deleting
unused rules.
The new ANTLR linter points out a number of unused rules in the
Snowflake grammar. Here we resolve the linting errors, generally by
deleting unused rules.
Here, we greatly improve the grammar constructs for create and alter and
additionally, make parsing of `id . id` orthogonal instead of having 17
rules to parse the same construct.

We also remove the mountain of superfluous labels given to many tokens
and rules, which just add bloat to the generated code.

As a result, the error recovery mechanism is more accurate in
identifying the source of syntax errors as there is much less ambiguity.
The size of the generated parser file is also 'smaller' at 99387 lines
vs 107354 - we intend to continue reducing this.
TODO:

- [x] NOTICE file
- [x] Snowflake runner
- [x] infra permissions

Follow-up PR:
- [ ] File framework 
- [ ] CSV-to-Databricks comparison
- [ ] unify snowflake logger. See
[docs](https://docs.snowflake.com/en/developer-guide/jdbc/jdbc-configure#simple-logging-facade-for-java-org-slf4j)

<img width="485" alt="image"
src="https://github.com/user-attachments/assets/3c3b8287-51f5-4eac-9f37-fe172c36969e">
Previously, `NATURAL` and `CROSS` joins were not properly handled, this
change fixes it.
…ssion generators (#809)

GeneratorContext is something that is explicitly passed down through
entire chain, so let's use it to inject logical plan generator when we
need it to generate subquery expressions.
This PR increases coverage of snowflake data types.
This PR adds simplistic SQL formatter into sql transpilation chain, so
that it's easier to compare results
vil1 and others added 9 commits December 9, 2024 14:34
This PR implements a clear structure for existing python transpiler
code, and also renames a few classes for clarity.

Progresses #1298
Our current script returns false positives for stacked PRs.
Upgrading it to the latest one from ucx
Bumps [com.lihaoyi:pprint_2.12](https://github.com/com-lihaoyi/PPrint)
from 0.8.1 to 0.9.0.
<details>
<summary>Commits</summary>
<ul>
<li><a
href="https://github.com/com-lihaoyi/PPrint/commit/fa319a3c3a863d8685c02c425d00f70b2d0afdd7"><code>fa319a3</code></a>
0.9.0 (<a
href="https://redirect.github.com/com-lihaoyi/PPrint/issues/128">#128</a>)</li>
<li><a
href="https://github.com/com-lihaoyi/PPrint/commit/a03b76ecaf910e8d081d734f131ecbf760e2fb94"><code>a03b76e</code></a>
Upgrade Mill to 0.11.0 (<a
href="https://redirect.github.com/com-lihaoyi/PPrint/issues/97">#97</a>)</li>
<li>See full diff in <a
href="https://github.com/com-lihaoyi/PPrint/compare/0.8.1...0.9.0">compare
view</a></li>
</ul>
</details>
<br />


[![Dependabot compatibility
score](https://dependabot-badges.githubapp.com/badges/compatibility_score?dependency-name=com.lihaoyi:pprint_2.12&package-manager=maven&previous-version=0.8.1&new-version=0.9.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>
…13.0 (#1325)

Bumps
[org.apache.maven.plugins:maven-compiler-plugin](https://github.com/apache/maven-compiler-plugin)
from 3.11.0 to 3.13.0.
<details>
<summary>Release notes</summary>
<p><em>Sourced from <a
href="https://github.com/apache/maven-compiler-plugin/releases">org.apache.maven.plugins:maven-compiler-plugin's
releases</a>.</em></p>
<blockquote>
<h2>3.13.0</h2>
<!-- raw HTML omitted -->
<h2>🚀 New features and improvements</h2>
<ul>
<li><a
href="https://issues.apache.org/jira/browse/MCOMPILER-574">[MCOMPILER-574]</a>
- Propagate cause of exception in AbstractCompilerMojo (<a
href="https://redirect.github.com/apache/maven-compiler-plugin/pull/232">#232</a>)
<a
href="https://github.com/slawekjaranowski"><code>@​slawekjaranowski</code></a></li>
<li><a
href="https://issues.apache.org/jira/browse/MCOMPILER-582">[MCOMPILER-582]</a>
- Automatic detection of release option for JDK &lt; 9 (<a
href="https://redirect.github.com/apache/maven-compiler-plugin/pull/228">#228</a>)
<a
href="https://github.com/slawekjaranowski"><code>@​slawekjaranowski</code></a></li>
<li><a
href="https://issues.apache.org/jira/browse/MCOMPILER-583">[MCOMPILER-583]</a>
- Require Maven 3.6.3 (<a
href="https://redirect.github.com/apache/maven-compiler-plugin/pull/229">#229</a>)
<a
href="https://github.com/slawekjaranowski"><code>@​slawekjaranowski</code></a></li>
<li><a
href="https://issues.apache.org/jira/browse/MCOMPILER-577">[MCOMPILER-577]</a>
- Rename parameter &quot;forceJavacCompilerUse&quot; (<a
href="https://redirect.github.com/apache/maven-compiler-plugin/pull/225">#225</a>)
<a href="https://github.com/kwin"><code>@​kwin</code></a></li>
<li><a
href="https://issues.apache.org/jira/browse/MCOMPILER-570">[MCOMPILER-570]</a>
- Add links to javac documentation of JDK17 (<a
href="https://redirect.github.com/apache/maven-compiler-plugin/pull/224">#224</a>)
<a href="https://github.com/kwin"><code>@​kwin</code></a></li>
<li><a
href="https://issues.apache.org/jira/browse/MCOMPILER-576">[MCOMPILER-576]</a>
- Deprecate parameter &quot;compilerVersion&quot; (<a
href="https://redirect.github.com/apache/maven-compiler-plugin/pull/223">#223</a>)
<a href="https://github.com/kwin"><code>@​kwin</code></a></li>
</ul>
<h2>📦 Dependency updates</h2>
<ul>
<li><a
href="https://issues.apache.org/jira/browse/MCOMPILER-575">[MCOMPILER-575]</a>
- Bump plexusCompilerVersion from 2.14.2 to 2.15.0 (<a
href="https://redirect.github.com/apache/maven-compiler-plugin/pull/227">#227</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/apache/maven-compiler-plugin/pull/226">#226</a>)
<a
href="https://github.com/dependabot"><code>@​dependabot</code></a></li>
</ul>
<h2>📝 Documentation updates</h2>
<ul>
<li><a
href="https://issues.apache.org/jira/browse/MCOMPILER-548">[MCOMPILER-548]</a>
- JDK 21 throws annotations processing warning that can not be turned
off (<a
href="https://redirect.github.com/apache/maven-compiler-plugin/pull/200">#200</a>)
<a href="https://github.com/hgschmie"><code>@​hgschmie</code></a></li>
</ul>
<h2>👻 Maintenance</h2>
<ul>
<li><a
href="https://issues.apache.org/jira/browse/MCOMPILER-584">[MCOMPILER-584]</a>
- Refresh page - Using Non-Javac Compilers (<a
href="https://redirect.github.com/apache/maven-compiler-plugin/pull/231">#231</a>)
<a
href="https://github.com/slawekjaranowski"><code>@​slawekjaranowski</code></a></li>
<li><a
href="https://issues.apache.org/jira/browse/MCOMPILER-585">[MCOMPILER-585]</a>
- Refresh plugins versions in ITs (<a
href="https://redirect.github.com/apache/maven-compiler-plugin/pull/230">#230</a>)
<a
href="https://github.com/slawekjaranowski"><code>@​slawekjaranowski</code></a></li>
<li>subject verb agreement (<a
href="https://redirect.github.com/apache/maven-compiler-plugin/pull/221">#221</a>)
<a href="https://github.com/elharo"><code>@​elharo</code></a></li>
</ul>
<h2>3.12.1</h2>
<!-- raw HTML omitted -->
<h2>🐛 Bug Fixes</h2>
<ul>
<li><a
href="https://issues.apache.org/jira/browse/MCOMPILER-567">[MCOMPILER-567]</a>
- Fail to compile if the generated-sources/annotation… (<a
href="https://redirect.github.com/apache/maven-compiler-plugin/pull/218">#218</a>)
<a href="https://github.com/jorsol"><code>@​jorsol</code></a></li>
</ul>
<h2>📦 Dependency updates</h2>
<ul>
<li><a
href="https://issues.apache.org/jira/browse/MCOMPILER-568">[MCOMPILER-568]</a>
- Bump plexusCompilerVersion from 2.14.1 to 2.14.2 (<a
href="https://redirect.github.com/apache/maven-compiler-plugin/pull/220">#220</a>)
<a
href="https://github.com/dependabot"><code>@​dependabot</code></a></li>
</ul>
<h2>3.12.0</h2>
<!-- raw HTML omitted -->
<h2>🚀 New features and improvements</h2>
<ul>
<li><a
href="https://issues.apache.org/jira/browse/MCOMPILER-562">[MCOMPILER-562]</a>
- Add property maven.compiler.outputDirectory to CompilerMojo (<a
href="https://redirect.github.com/apache/maven-compiler-plugin/pull/213">#213</a>)
<a
href="https://github.com/jGauravGupta"><code>@​jGauravGupta</code></a></li>
<li><a
href="https://issues.apache.org/jira/browse/MCOMPILER-381">[MCOMPILER-381]</a>
- Refactor incremental detection (<a
href="https://redirect.github.com/apache/maven-compiler-plugin/pull/181">#181</a>)
<a href="https://github.com/jorsol"><code>@​jorsol</code></a></li>
<li><a
href="https://issues.apache.org/jira/browse/MCOMPILER-542">[MCOMPILER-542]</a>
- Clean JDK patch version in module-info.class (<a
href="https://redirect.github.com/apache/maven-compiler-plugin/pull/208">#208</a>)
<a href="https://github.com/jorsol"><code>@​jorsol</code></a></li>
<li><a
href="https://issues.apache.org/jira/browse/MCOMPILER-558">[MCOMPILER-558]</a>
- compileSourceRoots in testCompile should be writable (<a
href="https://redirect.github.com/apache/maven-compiler-plugin/pull/209">#209</a>)
<a
href="https://github.com/lorenzsimon"><code>@​lorenzsimon</code></a></li>
<li><a
href="https://issues.apache.org/jira/browse/MCOMPILER-559">[MCOMPILER-559]</a>
- Warn if overwriting the project's artifact's file to a different value
(<a
href="https://redirect.github.com/apache/maven-compiler-plugin/pull/211">#211</a>)
<a href="https://github.com/gnodet"><code>@​gnodet</code></a></li>
<li><a
href="https://issues.apache.org/jira/browse/MCOMPILER-550">[MCOMPILER-550]</a>
- make outputDirectory writable (<a
href="https://redirect.github.com/apache/maven-compiler-plugin/pull/202">#202</a>)
<a href="https://github.com/bmarwell"><code>@​bmarwell</code></a></li>
<li><a
href="https://issues.apache.org/jira/browse/MCOMPILER-549">[MCOMPILER-549]</a>
- Improve log message in case of recompilation - fix jenkins build (<a
href="https://redirect.github.com/apache/maven-compiler-plugin/pull/203">#203</a>)
<a
href="https://github.com/slawekjaranowski"><code>@​slawekjaranowski</code></a></li>
<li><a
href="https://issues.apache.org/jira/browse/MCOMPILER-549">[MCOMPILER-549]</a>
- Improve log message in case of recompilation (<a
href="https://redirect.github.com/apache/maven-compiler-plugin/pull/201">#201</a>)
<a
href="https://github.com/BrowneMonke"><code>@​BrowneMonke</code></a></li>
<li><a
href="https://issues.apache.org/jira/browse/MCOMPILER-391">[MCOMPILER-391]</a>
- Use dep mgmt when resolving annotation processors and their deps (<a
href="https://redirect.github.com/apache/maven-compiler-plugin/pull/180">#180</a>)
<a href="https://github.com/psiroky"><code>@​psiroky</code></a></li>
<li><a
href="https://issues.apache.org/jira/browse/MCOMPILER-531">[MCOMPILER-531]</a>
- Prepare for Java 20(-ea) (<a
href="https://redirect.github.com/apache/maven-compiler-plugin/pull/184">#184</a>)
<a
href="https://github.com/slachiewicz"><code>@​slachiewicz</code></a></li>
</ul>
<!-- raw HTML omitted -->
</blockquote>
<p>... (truncated)</p>
</details>
<details>
<summary>Commits</summary>
<ul>
<li><a
href="https://github.com/apache/maven-compiler-plugin/commit/a1415aa3833df5985ecdc2b854ef516d3afbf348"><code>a1415aa</code></a>
[maven-release-plugin] prepare release maven-compiler-plugin-3.13.0</li>
<li><a
href="https://github.com/apache/maven-compiler-plugin/commit/b2b9196f61198daddcac513d849c0d808e02c8d7"><code>b2b9196</code></a>
[MCOMPILER-574] Propagate cause of exception in
AbstractCompilerMojo</li>
<li><a
href="https://github.com/apache/maven-compiler-plugin/commit/6d2ce5a46507ea6c44c2d4a81aaf183baad2784e"><code>6d2ce5a</code></a>
[MCOMPILER-584] Refresh page - Using Non-Javac Compilers</li>
<li><a
href="https://github.com/apache/maven-compiler-plugin/commit/eebad60f7500c3db44050f599d5fc13f01af116b"><code>eebad60</code></a>
[MCOMPILER-585] Refresh plugins versions in ITs</li>
<li><a
href="https://github.com/apache/maven-compiler-plugin/commit/ceacf6884dc98be921f78cbb6de9a88213955471"><code>ceacf68</code></a>
[MCOMPILER-582] Automatic detection of release option for JDK &lt;
9</li>
<li><a
href="https://github.com/apache/maven-compiler-plugin/commit/110293f730f03bd2361aafb39789055b52efe6ab"><code>110293f</code></a>
[MCOMPILER-583] Require Maven 3.6.3</li>
<li><a
href="https://github.com/apache/maven-compiler-plugin/commit/90131df544a466a7d2f35e2c1da88f56b2b9368e"><code>90131df</code></a>
[MCOMPILER-575] Bump plexusCompilerVersion from 2.14.2 to 2.15.0 (<a
href="https://redirect.github.com/apache/maven-compiler-plugin/issues/227">#227</a>)</li>
<li><a
href="https://github.com/apache/maven-compiler-plugin/commit/74cfc72acae4f55708bca189b2170167e83df6b3"><code>74cfc72</code></a>
[MCOMPILER-548] JDK 21 throws annotations processing warning that can
not be ...</li>
<li><a
href="https://github.com/apache/maven-compiler-plugin/commit/f85aa27d7cc28664ed7cfdd19b8e250652a66471"><code>f85aa27</code></a>
Bump apache/maven-gh-actions-shared from 3 to 4</li>
<li><a
href="https://github.com/apache/maven-compiler-plugin/commit/d59ef49ead31f7d85c24f98ca6747f9b3a1906a2"><code>d59ef49</code></a>
extract Maven 3.3.1 specific method call</li>
<li>Additional commits viewable in <a
href="https://github.com/apache/maven-compiler-plugin/compare/maven-compiler-plugin-3.11.0...maven-compiler-plugin-3.13.0">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-compiler-plugin&package-manager=maven&previous-version=3.11.0&new-version=3.13.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>
Bumps net.alchim31.maven:scala-maven-plugin from 4.8.1 to 4.9.2.


[![Dependabot compatibility
score](https://dependabot-badges.githubapp.com/badges/compatibility_score?dependency-name=net.alchim31.maven:scala-maven-plugin&package-manager=maven&previous-version=4.8.1&new-version=4.9.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>
This PR configures Dependabot to ignore Scala version updates.

Relates #1327.

Co-authored-by: SundarShankar89 <[email protected]>
Bumps [sqlglot](https://github.com/tobymao/sqlglot) from 25.32.1 to
25.33.0.
<details>
<summary>Changelog</summary>
<p><em>Sourced from <a
href="https://github.com/tobymao/sqlglot/blob/main/CHANGELOG.md">sqlglot's
changelog</a>.</em></p>
<blockquote>
<h2>[v25.33.0] - 2024-12-04</h2>
<h3>:boom: BREAKING CHANGES</h3>
<ul>
<li>
<p>due to <a
href="https://github.com/tobymao/sqlglot/commit/07fa69dcb8970167ba0c55fff39175ab856ea9f3"><code>07fa69d</code></a>
- Make TIMESTAMP map to Type.TIMESTAMPTZ <em>(PR <a
href="https://redirect.github.com/tobymao/sqlglot/pull/4451">#4451</a>
by <a
href="https://github.com/VaggelisD"><code>@​VaggelisD</code></a>)</em>:</p>
<p>Make TIMESTAMP map to Type.TIMESTAMPTZ (<a
href="https://redirect.github.com/tobymao/sqlglot/issues/4451">#4451</a>)</p>
</li>
<li>
<p>due to <a
href="https://github.com/tobymao/sqlglot/commit/63d8f41794b2e9d22f87d0a8fbfbd83125889ca2"><code>63d8f41</code></a>
- treat NEXT as a func keyword, parse NEXT VALUE FOR in tsql, oracle
<em>(PR <a
href="https://redirect.github.com/tobymao/sqlglot/pull/4467">#4467</a>
by <a
href="https://github.com/georgesittas"><code>@​georgesittas</code></a>)</em>:</p>
<p>treat NEXT as a func keyword, parse NEXT VALUE FOR in tsql, oracle
(<a
href="https://redirect.github.com/tobymao/sqlglot/issues/4467">#4467</a>)</p>
</li>
</ul>
<h3>:sparkles: New Features</h3>
<ul>
<li><a
href="https://github.com/tobymao/sqlglot/commit/3945acc4a0dfd58147de929c9a2c71734d8f1ade"><code>3945acc</code></a>
- allow tables to be preserved in replace_table <em>(PR <a
href="https://redirect.github.com/tobymao/sqlglot/pull/4468">#4468</a>
by <a
href="https://github.com/georgesittas"><code>@​georgesittas</code></a>)</em></li>
<li><a
href="https://github.com/tobymao/sqlglot/commit/a9dca8dd1b523efd703003694d4389f9af9d1a12"><code>a9dca8d</code></a>
- <strong>postgres</strong>: Support generated columns <em>(PR <a
href="https://redirect.github.com/tobymao/sqlglot/pull/4472">#4472</a>
by <a
href="https://github.com/VaggelisD"><code>@​VaggelisD</code></a>)</em>
<ul>
<li>:arrow_lower_right: <em>addresses issue <a
href="https://redirect.github.com/tobymao/sqlglot/issues/4463">#4463</a>
opened by <a
href="https://github.com/AKST"><code>@​AKST</code></a></em></li>
</ul>
</li>
</ul>
<h3>:bug: Bug Fixes</h3>
<ul>
<li><a
href="https://github.com/tobymao/sqlglot/commit/380dad2f5826caa820a69442c42805c7b3c23ada"><code>380dad2</code></a>
- <strong>bigquery</strong>: Rename CONTAINS_SUBSTRING to
CONTAINS_SUBSTR <em>(PR <a
href="https://redirect.github.com/tobymao/sqlglot/pull/4457">#4457</a>
by <a
href="https://github.com/VaggelisD"><code>@​VaggelisD</code></a>)</em>
<ul>
<li>:arrow_lower_right: <em>fixes issue <a
href="https://redirect.github.com/tobymao/sqlglot/issues/4456">#4456</a>
opened by <a
href="https://github.com/romanhaa"><code>@​romanhaa</code></a></em></li>
</ul>
</li>
<li><a
href="https://github.com/tobymao/sqlglot/commit/ca5023db5ea2a2ece804f6e389640e0bd4987598"><code>ca5023d</code></a>
- <strong>presto</strong>: Remove parentheses from CURRENT_USER <em>(PR
<a
href="https://redirect.github.com/tobymao/sqlglot/pull/4459">#4459</a>
by <a
href="https://github.com/MikeWallis42"><code>@​MikeWallis42</code></a>)</em>
<ul>
<li>:arrow_lower_right: <em>fixes issue <a
href="https://redirect.github.com/tobymao/sqlglot/issues/4458">#4458</a>
opened by <a
href="https://github.com/MikeWallis42"><code>@​MikeWallis42</code></a></em></li>
</ul>
</li>
<li><a
href="https://github.com/tobymao/sqlglot/commit/07fa69dcb8970167ba0c55fff39175ab856ea9f3"><code>07fa69d</code></a>
- <strong>spark</strong>: Make TIMESTAMP map to Type.TIMESTAMPTZ <em>(PR
<a
href="https://redirect.github.com/tobymao/sqlglot/pull/4451">#4451</a>
by <a
href="https://github.com/VaggelisD"><code>@​VaggelisD</code></a>)</em>
<ul>
<li>:arrow_lower_right: <em>fixes issue <a
href="https://redirect.github.com/tobymao/sqlglot/issues/4442">#4442</a>
opened by <a
href="https://github.com/dor-bernstein"><code>@​dor-bernstein</code></a></em></li>
</ul>
</li>
<li><a
href="https://github.com/tobymao/sqlglot/commit/63d8f41794b2e9d22f87d0a8fbfbd83125889ca2"><code>63d8f41</code></a>
- <strong>parser</strong>: treat NEXT as a func keyword, parse NEXT
VALUE FOR in tsql, oracle <em>(PR <a
href="https://redirect.github.com/tobymao/sqlglot/pull/4467">#4467</a>
by <a
href="https://github.com/georgesittas"><code>@​georgesittas</code></a>)</em>
<ul>
<li>:arrow_lower_right: <em>fixes issue <a
href="https://redirect.github.com/tobymao/sqlglot/issues/4466">#4466</a>
opened by <a
href="https://github.com/Harmuth94"><code>@​Harmuth94</code></a></em></li>
</ul>
</li>
</ul>
</blockquote>
</details>
<details>
<summary>Commits</summary>
<ul>
<li><a
href="https://github.com/tobymao/sqlglot/commit/65a51d7653016be1cee5ec546faecaa34bd4c815"><code>65a51d7</code></a>
Feat!(snowflake): improve transpilation of TO_TIMESTAMP* variants (<a
href="https://redirect.github.com/tobymao/sqlglot/issues/4473">#4473</a>)</li>
<li><a
href="https://github.com/tobymao/sqlglot/commit/a9dca8dd1b523efd703003694d4389f9af9d1a12"><code>a9dca8d</code></a>
feat(postgres): Support generated columns (<a
href="https://redirect.github.com/tobymao/sqlglot/issues/4472">#4472</a>)</li>
<li><a
href="https://github.com/tobymao/sqlglot/commit/3945acc4a0dfd58147de929c9a2c71734d8f1ade"><code>3945acc</code></a>
Feat: allow tables to be preserved in replace_table (<a
href="https://redirect.github.com/tobymao/sqlglot/issues/4468">#4468</a>)</li>
<li><a
href="https://github.com/tobymao/sqlglot/commit/63d8f41794b2e9d22f87d0a8fbfbd83125889ca2"><code>63d8f41</code></a>
Fix(parser)!: treat NEXT as a func keyword, parse NEXT VALUE FOR in
tsql, ora...</li>
<li><a
href="https://github.com/tobymao/sqlglot/commit/07fa69dcb8970167ba0c55fff39175ab856ea9f3"><code>07fa69d</code></a>
fix(spark)!: Make TIMESTAMP map to Type.TIMESTAMPTZ (<a
href="https://redirect.github.com/tobymao/sqlglot/issues/4451">#4451</a>)</li>
<li><a
href="https://github.com/tobymao/sqlglot/commit/ca5023db5ea2a2ece804f6e389640e0bd4987598"><code>ca5023d</code></a>
fix(presto): Remove parentheses from CURRENT_USER (<a
href="https://redirect.github.com/tobymao/sqlglot/issues/4459">#4459</a>)</li>
<li><a
href="https://github.com/tobymao/sqlglot/commit/380dad2f5826caa820a69442c42805c7b3c23ada"><code>380dad2</code></a>
fix(bigquery): Rename CONTAINS_SUBSTRING to CONTAINS_SUBSTR (<a
href="https://redirect.github.com/tobymao/sqlglot/issues/4457">#4457</a>)</li>
<li><a
href="https://github.com/tobymao/sqlglot/commit/73825d2d11cefaabd2ed73c3dcb9184393b6c042"><code>73825d2</code></a>
docs: update API docs, CHANGELOG.md for v25.32.1 [skip ci]</li>
<li>See full diff in <a
href="https://github.com/tobymao/sqlglot/compare/v25.32.1...v25.33.0">compare
view</a></li>
</ul>
</details>
<br />

<details>
<summary>Most Recent Ignore Conditions Applied to This Pull
Request</summary>

| Dependency Name | Ignore Conditions |
| --- | --- |
| sqlglot | [>= 24.a, < 25] |
| sqlglot | [>= 25.31.dev0, < 25.32] |
</details>


[![Dependabot compatibility
score](https://dependabot-badges.githubapp.com/badges/compatibility_score?dependency-name=sqlglot&package-manager=pip&previous-version=25.32.1&new-version=25.33.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: Eric Vergnaud <[email protected]>
Co-authored-by: SundarShankar89 <[email protected]>
@sundarshankar89 sundarshankar89 marked this pull request as draft December 10, 2024 05:15
dependabot bot and others added 16 commits December 10, 2024 10:31
….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>
…#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>
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.
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.
Our current ci jobs do not express their scope
This PR fixes the issue

Co-authored-by: SundarShankar89 <[email protected]>
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
 - mockito/mockito#2997

Relates: #1341

Co-authored-by: SundarShankar89 <[email protected]>
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]>
….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>
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>
…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>
…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>
This PR renames fields for clarity

Progresses #1298

Requires #1314 to be merged
)

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>
…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
Copy link
Collaborator

@ganeshdogiparthi-db can you recreate the PR by closing this. to help with the history.

@ganeshdogiparthi-db ganeshdogiparthi-db deleted the feature/transpile_introduce_bigquery branch February 10, 2025 17:51
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Projects
None yet
Development

Successfully merging this pull request may close these issues.