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

Bump lombok from 1.16.6 to 1.18.4 in /examples #1039

Merged

Conversation

dependabot-preview[bot]
Copy link
Contributor

Bumps lombok from 1.16.6 to 1.18.4.

Changelog

Sourced from lombok's changelog.

v1.18.4 (October 30th, 2018)

  • PLATFORM: Support for Eclipse Photon. Issue #1831
  • PLATFORM: Angular IDE is now recognized by the installer Issue #1830
  • PLATFORM: Many improvements for lombok's JDK10/11 support.
  • BREAKING CHANGE: The [**FieldNameConstants**](https://github.com/FieldNameConstants) feature has been completely redesigned. Issue #1774 FieldNameConstants documentation
  • BREAKING CHANGE: Lombok will now always copy specific annotations around (from field to getter, from field to builder 'setter', etcetera): A specific curated list of known annotations where that is the right thing to do (generally, [**NonNull**](https://github.com/NonNull) style annotations from various libraries), as well as any annotations you explicitly list in the lombok.copyableAnnotations config key in your lombok.config file. Also, lombok is more consistent about copying these annotations. (Previous behaviour: Lombok used to copy any annotation whose simple name was NonNull, Nullable, or CheckForNull). Issue #1570 and Issue #1634
  • FEATURE: Lombok's [**NonNull**](https://github.com/NonNull) annotation can now be used on type usages (annotation on type usages has been introduced in JDK 8). [**Builder**](https://github.com/Builder)'s [**Singular**](https://github.com/Singular) annotation now properly deals with annotations on the generics type on the collection: [**Singular**](https://github.com/Singular) List<[**NonNull**](https://github.com/NonNull) String> names; now does the right thing.
  • FEATURE: You can now mix [**SuperBuilder**](https://github.com/SuperBuilder) and toBuilder, and toBuilder no longer throws NullPointerException if a [**Singular**](https://github.com/Singular)-marked collection field is null. Issue #1324
  • FEATURE: delombok now supports module paths via the --module-path option, and will automatically add lombok itself to the module path. This should make it possible to delombok your modularized projects. Issue #1848
  • FEATURE: You can pass [**args**](https://github.com/args).txt to delombok to read args from the text file; useful if you have really long classpaths you need to pass to delombok. Issue #1795
  • BUGFIX: [**NoArgsConstructor**](https://github.com/NoArgsConstructor)(force=true) would try to initialize already initialized final fields in Eclipse. Issue #1829
  • BUGFIX: When using lombok to compile modularized (module-info.java-style) code, if the module name has dots in it, it wouldn't work. Issue #1808
  • BUGFIX: Errors about lombok not reading a module providing org.mapstruct.ap.spi when trying to use lombok in jigsaw-mode on JDK 11. Issue #1806
  • BUGFIX: Fix NetBeans compile on save. Issue #1770
  • BUGFIX: If you manually write your builder class so you can add a few methods of your own, and those methods refer to generated methods, you'd usually run into various bizarre error messages, but only on JDK9/10/11. This one is hard to describe, but we fixed it. Issue #1907

v1.18.2 (July 26th, 2018)

  • BUGFIX: mapstruct + lombok in eclipse should hopefully work again. Issue #1359 and mapstruct issue #1159
  • BUGFIX: Equals and hashCode again exclude transient fields by default. Issue #1724
  • BUGFIX: Eclipse 'organize imports' feature (either explicitly, or if automatically triggered on saving via 'save actions') would remove the import for lombok.var. Issue #1783
  • BUGFIX: Lombok and gradle v4.9 didn't work together; that's been fixed. Issue #1716 and gradle-apt-plugin issue #87
  • FEATURE: You can now make builders for type hierarchies, using the new (experimental) [**SuperBuilder**](https://github.com/SuperBuilder) annotation. Thanks for the contribution, Jan Rieke. [**SuperBuilder**](https://github.com/SuperBuilder) documentation
  • FEATURE: [**NoArgsConstructor**](https://github.com/NoArgsConstructor), including forcing one with lombok.config: lombok.noArgsConstructor.extraPrivate=true now take any defaults set with [**Builder**](https://github.com/Builder).Default into account. Issue #1347

v1.18.0 (June 5th, 2018)

v1.16.22 "Envious Ferret" (May 29th, 2018)

  • FEATURE: Private no-args constructor for [**Data**](https://github.com/Data) and [**Value**](https://github.com/Value) to enable deserialization frameworks (like Jackson) to operate out-of-the-box. Use lombok.noArgsConstructor.extraPrivate = false to disable this behavior.
  • FEATURE: Methods can now be marked for inclusion in toString, equals, and hashCode generation. There is a new mechanism to mark which fields (and now, methods) are to be included or excluded for the generation of these methods: mark the relevant member with for example [**ToString**](https://github.com/ToString).Include or [**EqualsAndHashCode**](https://github.com/EqualsAndHashCode).Exclude. ToString documentation EqualsAndHashCode documentation
  • FEATURE: [**Getter**](https://github.com/Getter) and [**Setter**](https://github.com/Setter) also allow onMethod and onParam when put on a type. Issue #1653
  • FEATURE: [**FieldNameConstants**](https://github.com/FieldNameConstants) is a new feature that generates string constants for your field names. [Docs on FieldNameConstants](https://projectlombok.org/features/experimental/FieldNameConstants).
  • PLATFORM: Lombok can be compiled on JDK10, and should run on JDK10. Issue #1693
  • PLATFORM: lombok now counts as an incremental annotation processor for gradle. Should speed up your gradle builds considerably! Issue #1580
  • PLATFORM: Fix for using lombok together with JDK9+'s new module-info.java feature. Issue #985
  • BUGFIX: Solved some issues in eclipse that resulted in error 'A save participant caused problems'. Issue #879
  • BUGFIX: Netbeans on jdk9. Issue #1617
  • BUGFIX: Netbeans < 9. Issue #1555
  • PROMOTION: var has been promoted from experimental to the main package with no changes. The 'old' experimental one is still around but is deprecated, and is an alias for the new main package one. var documentation.
  • OLD-CRUFT: lombok.experimental.Builder and lombok.experimental.Value are deprecated remnants of when these features were still in experimental. They are now removed entirely. If your project is dependent on an older version of lombok which still has those; fret not, lombok still processes these annotations. It just no longer includes them in the jar.

v1.16.20 (January 9th, 2018)

  • PLATFORM: Better support for jdk9 in the new IntelliJ, Netbeans and for Gradle.
  • BREAKING CHANGE: lombok config key lombok.addJavaxGeneratedAnnotation now defaults to false instead of true. Oracle broke this annotation with the release of JDK9, necessitating this breaking change.
... (truncated)
Commits

Dependabot compatibility score

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.


Note: This repo was added to Dependabot recently, so you'll receive a maximum of 5 PRs for your first few update runs. Once an update run creates fewer than 5 PRs we'll remove that limit.

You can always request more updates by clicking Bump now in your Dependabot dashboard.

Dependabot commands and options

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 cancel merge will cancel a previously requested merge
  • @dependabot reopen will reopen this PR if it is closed
  • @dependabot badge me will comment on this PR with code to add a "Dependabot enabled" badge to your readme

Additionally, you can set the following in the .dependabot/config.yml file in this repo:

  • Update frequency (including time of day and day of week)
  • Automerge options (never/patch/minor, and dev/runtime dependencies)
  • Pull request limits (per update run and/or open at any time)
  • Out-of-range updates (receive only lockfile updates, if desired)
  • Security updates (receive only security updates, if desired)

Finally, you can contact us by mentioning @dependabot.

@dependabot-preview dependabot-preview bot added dependencies Pull requests that update a dependency file java labels Dec 23, 2018
@rnorth rnorth merged commit 70ad90a into master Dec 23, 2018
@delete-merged-branch delete-merged-branch bot deleted the dependabot/maven/examples/org.projectlombok-lombok-1.18.4 branch December 23, 2018 21:39
@bsideup bsideup added this to the 1.10.4 milestone Dec 28, 2018
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
dependencies Pull requests that update a dependency file
Projects
None yet
Development

Successfully merging this pull request may close these issues.

None yet

3 participants