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

Update plugin org.graalvm.buildtools.native to v0.9.28 #391

Closed
wants to merge 2 commits into from

Conversation

renovate[bot]
Copy link
Contributor

@renovate renovate bot commented Jan 8, 2024

Mend Renovate

This PR contains the following updates:

Package Change Age Adoption Passing Confidence
org.graalvm.buildtools.native 0.9.5 -> 0.9.28 age adoption passing confidence

Release Notes

graalvm/native-build-tools (org.graalvm.buildtools.native)

v0.9.28

Compare Source

What's Changed

New Contributors

Full Changelog: graalvm/native-build-tools@0.9.27...0.9.28

v0.9.27

Compare Source

What's Changed

Full Changelog: graalvm/native-build-tools@0.9.26...0.9.27

v0.9.26

Compare Source

What's Changed

New Contributors

Full Changelog: graalvm/native-build-tools@0.9.25...0.9.26

v0.9.25

Compare Source

What's Changed

Full Changelog: graalvm/native-build-tools@0.9.24...0.9.25

v0.9.24

Compare Source

What's Changed

New Contributors

Full Changelog: graalvm/native-build-tools@0.9.23...0.9.24

v0.9.23

Compare Source

What's Changed

Full Changelog: graalvm/native-build-tools@0.9.22...0.9.23

v0.9.22

Compare Source

What's Changed

Full Changelog: graalvm/native-build-tools@0.9.21...0.9.22

v0.9.21

Compare Source

What's Changed

New Contributors

Full Changelog: graalvm/native-build-tools@0.9.20...0.9.21

v0.9.20

Compare Source

What's Changed

New Contributors

Full Changelog: graalvm/native-build-tools@0.9.19...0.9.20

v0.9.19

Compare Source

What's Changed

Full Changelog: graalvm/native-build-tools@0.9.18...0.9.19

v0.9.18

Compare Source

What's Changed

Read what's new in the documentation.

  • Trim GraalVM version to fix Windows support
  • Add tests for NativeImageUtils.escapeArg
  • Do not escape quoted regexp args when using argsfile
  • Upgrade to GraalVM metadata repository 0.2.5

Full Changelog: graalvm/native-build-tools@0.9.17...0.9.18

v0.9.17

Compare Source

What's Changed

Read what's new in the documentation.

Full Changelog: graalvm/native-build-tools@0.9.16...0.9.17

v0.9.16

Compare Source

What's Changed

Read what's new in the documentation.

Full Changelog: graalvm/native-build-tools@0.9.15...0.9.16

v0.9.15

Compare Source

What's Changed

Read what's new in the documentation.

New Contributors

Full Changelog: graalvm/native-build-tools@0.9.14...0.9.15

v0.9.14

Compare Source

What's Changed

Read what's new in the documentation.

New Contributors

Full Changelog: graalvm/native-build-tools@0.9.13...0.9.14

v0.9.13

Compare Source

What's Changed

Read what's new in the documentation.

New Contributors

Full Changelog: graalvm/native-build-tools@0.9.12...0.9.13

v0.9.12

Compare Source

What's Changed

Read what's new in the documentation.

Full Changelog: graalvm/native-build-tools@0.9.11...0.9.12

v0.9.11

Compare Source

What's Changed

Read what's new in the documentation.

New Contributors

Full Changelog: graalvm/native-build-tools@0.9.10...0.9.11

v0.9.10

Compare Source

What's Changed

Read what's new in the documentation.

Full Changelog: graalvm/native-build-tools@0.9.9...0.9.10

v0.9.9

Compare Source

Release highlights

This release contains several fixes for the Gradle plugin.

Full Changelog: graalvm/native-build-tools@0.9.8...0.9.9

v0.9.8

Compare Source

Release highlights

This release contains various bugfixes and improvements for both the Maven and Gradle plugins.

Gradle plugin
  • [Breaking change] The agent option has been replaced with an agent { ... } configuration block which includes an enabled property.
  • Toolchain support can now be disabled altogether, which can be useful when using GraalVM Enterprise Edition.
  • Fixed a bug when using a fat jar which assumed that all entries to be repackaged were jars.
  • Agent options are now configurable.
    • Note that the experimental-class-loader-support agent option is no longer added by default.
    • See Configuring agent options for details.
  • Added an option to perform resource detection in classpath entries which contain a native-image/resource-config.json file.
Maven plugin
  • The agent can now be enabled in the POM.
  • Agent options are now configurable.
    • Note that the experimental-class-loader-support agent option is no longer added by default.
    • See Configuring agent options for details.
  • Added an option to perform resource detection in classpath entries which contain a native-image/resource-config.json file.
JUnit Platform Native
  • Builds now correctly fail if a container-level extension or lifecycle method fails --
    for example, if an @BeforeAll method in a JUnit Jupiter test class throws an exception.
  • Builds no longer fail when tests are aborted -- for example, via a failed assumption.
  • Improved documentation for JUnit Platform and Maven Surefire support in the plugins.
Detailed changes

Please refer to this milestone.

v0.9.7.1

Compare Source

Release highlights

This release is a bugfix release for Maven users. If you were using the plugin on a multi-project build or a build which uses a parent POM we recommend to upgrade.

[Maven] Fix test execution when plugin is declared in a parent POM

The plugin will now work properly if declared in a parent pom.xml.

See https://github.com/graalvm/native-build-tools/pull/146

v0.9.7

Compare Source

v0.9.6

Compare Source

Release highlights

This release is another important step towards a stable version. The most important change in this release is the integration with JUnit 5.8 which brings a number of improvements, which is a breaking change for Maven users. Apart from this, for Maven, the biggest change is the ability to run with the native GraalVM agent (to generate reflection files). Gradle users now have the ability to configure multiple test suites.

See below for more details on the changes.

[Gradle and Maven] Upgrade to JUnit 5.8

The plugins now depend on JUnit 5.8 which provides an official test listener which is used by these plugins.
As a consequence, Maven users will have to configure their builds to enable the plugin extensions:

<plugin>
    <groupId>org.graalvm.buildtools</groupId>
    <artifactId>native-maven-plugin</artifactId>
    <version>${native.maven.plugin.version}</version>
    <extensions>true</extensions>
    ...
</plugin>

The dependency on junit-platform-native which used to be required pre-0.9.6 can now safely be removed.

For Gradle users, there's no impact on the configuration, however a good consequence is that the junit-native-platform dependency no longer leaks into your application's classpath.

[Maven] Agent support for Maven plugin

The Maven plugin now supports the GraalVM agent to generate configuration files.
Please refer to the Maven Plugin documentation for details.

[Gradle] Disabling testing support

The Gradle plugin now provides an option to disable testing support.
This can be useful if the test framework you are using doesn't work with this plugin or that you simply don't want to execute tests natively.

To disable tests, use the graalvmNative configuration block:

graalvmNative {
    testSupport.set(false)
}
[Gradle] Configuring additional test images

The Gradle plugin now supports building multiple test images, which can be used to execute tests natively for more kinds of tests: integration tests, functional tests, ...

For more information, please refer to the Gradle plugin documentation


Configuration

📅 Schedule: Branch creation - At any time (no schedule defined), Automerge - At any time (no schedule defined).

🚦 Automerge: Disabled by config. Please merge this manually once you are satisfied.

Rebasing: Whenever PR becomes conflicted, or you tick the rebase/retry checkbox.

🔕 Ignore: Close this PR and you won't be reminded about this update again.


  • If you want to rebase/retry this PR, check this box

This PR has been generated by Mend Renovate. View repository job log here.

@renovate renovate bot requested a review from DreierF January 8, 2024 10:10
Copy link
Contributor Author

renovate bot commented Jan 8, 2024

Edited/Blocked Notification

Renovate will not automatically rebase this PR, because it does not recognize the last commit author and assumes somebody else may have edited the PR.

You can manually request rebase by checking the rebase/retry box above.

Warning: custom changes will be lost.

@DreierF
Copy link
Contributor

DreierF commented Jan 8, 2024

Not worth fixing as #386 will remove graalvm again

@DreierF DreierF closed this Jan 8, 2024
Copy link
Contributor Author

renovate bot commented Jan 8, 2024

Renovate Ignore Notification

Because you closed this PR without merging, Renovate will ignore this update (0.9.28). You will get a PR once a newer version is released. To ignore this dependency forever, add it to the ignoreDeps array of your Renovate config.

If you accidentally closed this PR, or if you changed your mind: rename this PR to get a fresh replacement PR.

@renovate renovate bot deleted the renovate/org.graalvm.buildtools.native-0.x branch January 8, 2024 13:18
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.

None yet

1 participant