leandreck / spring-typescript-services

Generate typescript services and type interfaces from spring annotated restcontrollers.
Apache License 2.0
29 stars 16 forks source link

Bump lombok from 1.16.18 to 1.18.2 #102

Closed dependabot-preview[bot] closed 6 years ago

dependabot-preview[bot] commented 6 years ago

Bumps lombok from 1.16.18 to 1.18.2.

Changelog *Sourced from [lombok's changelog](https://github.com/rzwitserloot/lombok/blob/master/doc/changelog.markdown).* > ### v1.18.2 (July 26th, 2018) > * BUGFIX: mapstruct + lombok in eclipse should hopefully work again. [Issue [#1359](https://github-redirect.dependabot.com/rzwitserloot/lombok/issues/1359)](https://github-redirect.dependabot.com/rzwitserloot/lombok/issues/1359) and [mapstruct issue [#1159](https://github-redirect.dependabot.com/rzwitserloot/lombok/issues/1159)](https://github-redirect.dependabot.com/mapstruct/mapstruct/issues/1159) > * BUGFIX: Equals and hashCode again exclude transient fields by default. [Issue [#1724](https://github-redirect.dependabot.com/rzwitserloot/lombok/issues/1724)](https://github-redirect.dependabot.com/rzwitserloot/lombok/issues/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](https://github-redirect.dependabot.com/rzwitserloot/lombok/issues/1783)](https://github-redirect.dependabot.com/rzwitserloot/lombok/issues/1783) > * BUGFIX: Lombok and gradle v4.9 didn't work together; that's been fixed. [Issue [#1716](https://github-redirect.dependabot.com/rzwitserloot/lombok/issues/1716)](https://github-redirect.dependabot.com/rzwitserloot/lombok/issues/1716) and [gradle-apt-plugin issue [#87](https://github-redirect.dependabot.com/rzwitserloot/lombok/issues/87)](https://github-redirect.dependabot.com/tbroyer/gradle-apt-plugin/issues/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](https://projectlombok.org/features/experimental/SuperBuilder) > * 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](https://github-redirect.dependabot.com/rzwitserloot/lombok/issues/1347)](https://github-redirect.dependabot.com/rzwitserloot/lombok/issues/1347) > > ### v1.18.0 (June 5th, 2018) > * BREAKING CHANGE: The in 1.16.22 introduced configuration key `lombok.noArgsConstructor.extraPrivate` is now `false` by default. [Issue [#1708](https://github-redirect.dependabot.com/rzwitserloot/lombok/issues/1708)](https://github-redirect.dependabot.com/rzwitserloot/lombok/issues/1708) > * BUGFIX: Do not generate a private no-args constructor if that breaks the code. [Issue [#1703](https://github-redirect.dependabot.com/rzwitserloot/lombok/issues/1703)](https://github-redirect.dependabot.com/rzwitserloot/lombok/issues/1703), [Issue [#1704](https://github-redirect.dependabot.com/rzwitserloot/lombok/issues/1704)](https://github-redirect.dependabot.com/rzwitserloot/lombok/issues/1704), [Issue [#1712](https://github-redirect.dependabot.com/rzwitserloot/lombok/issues/1712)](https://github-redirect.dependabot.com/rzwitserloot/lombok/issues/1712) > * BUGFIX: Using boolean parameters in lombok annotations would fail. [Issue [#1709](https://github-redirect.dependabot.com/rzwitserloot/lombok/issues/1709)](https://github-redirect.dependabot.com/rzwitserloot/lombok/issues/1709) > * BUGFIX: Delombok would give an error message. [Issue [#1705](https://github-redirect.dependabot.com/rzwitserloot/lombok/issues/1705)](https://github-redirect.dependabot.com/rzwitserloot/lombok/issues/1705) > * BUGFIX: Eclipse java10 var support didn't work if lombok was installed in your eclipse. [Issue [#1676](https://github-redirect.dependabot.com/rzwitserloot/lombok/issues/1676)](https://github-redirect.dependabot.com/rzwitserloot/lombok/issues/1676) > * FEATURE: Google's [Flogger (a.k.a. FluentLogger)](https://google.github.io/flogger/) is now available via `[**Flogger**](https://github.com/Flogger)`. [Issue [#1697](https://github-redirect.dependabot.com/rzwitserloot/lombok/issues/1697)](https://github-redirect.dependabot.com/rzwitserloot/lombok/issues/1697) > * FEATURE: `[**FieldNameConstants**](https://github.com/FieldNameConstants)` has been extended to support prefixes and suffixes. By default, the generated constants are prefixed with `FIELD_`. [Docs on [**FieldNameConstants**](https://github.com/FieldNameConstants)](https://projectlombok.org/features/experimental/FieldNameConstants). > > ### 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](https://projectlombok.org/features/ToString) [EqualsAndHashCode documentation](https://projectlombok.org/features/EqualsAndHashCode) > * FEATURE: `[**Getter**](https://github.com/Getter)` and `[**Setter**](https://github.com/Setter)` also allow `onMethod` and `onParam` when put on a type. [Issue [#1653](https://github-redirect.dependabot.com/rzwitserloot/lombok/issues/1653)](https://github-redirect.dependabot.com/rzwitserloot/lombok/issues/1653) > * FEATURE: `[**FieldNameConstants**](https://github.com/FieldNameConstants)` is a new feature that generates string constants for your field names. [Docs on [**FieldNameConstants**](https://github.com/FieldNameConstants)](https://projectlombok.org/features/experimental/FieldNameConstants). > * PLATFORM: Lombok can be compiled on JDK10, and should run on JDK10. [Issue [#1693](https://github-redirect.dependabot.com/rzwitserloot/lombok/issues/1693)](https://github-redirect.dependabot.com/rzwitserloot/lombok/issues/1693) > * PLATFORM: lombok now counts as an _incremental annotation processor_ for gradle. Should speed up your gradle builds considerably! [Issue [#1580](https://github-redirect.dependabot.com/rzwitserloot/lombok/issues/1580)](https://github-redirect.dependabot.com/rzwitserloot/lombok/issues/1580) > * PLATFORM: Fix for using lombok together with JDK9+'s new `module-info.java` feature. [Issue [#985](https://github-redirect.dependabot.com/rzwitserloot/lombok/issues/985)](https://github-redirect.dependabot.com/rzwitserloot/lombok/issues/985) > * BUGFIX: Solved some issues in eclipse that resulted in error 'A save participant caused problems'. [Issue [#879](https://github-redirect.dependabot.com/rzwitserloot/lombok/issues/879)](https://github-redirect.dependabot.com/rzwitserloot/lombok/issues/879) > * BUGFIX: Netbeans on jdk9. [Issue [#1617](https://github-redirect.dependabot.com/rzwitserloot/lombok/issues/1617)](https://github-redirect.dependabot.com/rzwitserloot/lombok/issues/1617) > * BUGFIX: Netbeans < 9. [Issue [#1555](https://github-redirect.dependabot.com/rzwitserloot/lombok/issues/1555)](https://github-redirect.dependabot.com/rzwitserloot/lombok/issues/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](https://projectlombok.org/features/var.html). > * 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. > * BREAKING CHANGE: _lombok config_ key `lombok.anyConstructor.suppressConstructorProperties` is now deprecated and defaults to `true`, that is, by default lombok no longer automatically generates `[**ConstructorProperties**](https://github.com/ConstructorProperties)` annotations. New config key `lombok.anyConstructor.addConstructorProperties` now exists; set it to `true` if you want the old behavior. Oracle more or less broke this annotation with the release of JDK9, necessitating this breaking change. > * DEVELOPMENT: Compiling lombok on JDK1.9 is now possible. > * BUGFIX: The generated hashCode would break the contract if `callSuper=true,of={}`. [Issue [#1505](https://github-redirect.dependabot.com/rzwitserloot/lombok/issues/1505)](https://github-redirect.dependabot.com/rzwitserloot/lombok/issues/1505) > * BUGFIX: `delombok` no longer prints the synthetic outer-class parameter. [Issue [#1521](https://github-redirect.dependabot.com/rzwitserloot/lombok/issues/1521)](https://github-redirect.dependabot.com/rzwitserloot/lombok/issues/1521) > * BUGFIX: [**Builder**](https://github.com/Builder).Default now also works when type parameters are present. [Issue [#1527](https://github-redirect.dependabot.com/rzwitserloot/lombok/issues/1527)](https://github-redirect.dependabot.com/rzwitserloot/lombok/issues/1527) > * BUGFIX: [**Builder**](https://github.com/Builder) now also works on method with a generified return type. [Issue [#1420](https://github-redirect.dependabot.com/rzwitserloot/lombok/issues/1420)](https://github-redirect.dependabot.com/rzwitserloot/lombok/issues/1420) > * INSTALLER: By default, the lombok installer now inserts an absolute path in `eclipse.ini` and friends, instead of a relative path. If you want the old behavior, you can use `java -jar -Dlombok.installer.fullpath=false lombok.jar`.
Commits - [`dc715da`](https://github.com/rzwitserloot/lombok/commit/dc715da8b79bff32116ac477d0ac04875bd21167) pre-release version bump - [`7e94041`](https://github.com/rzwitserloot/lombok/commit/7e94041dbc177476020969b00d3411020418f903) Added key ‘dangerousconfig.lombok.disable’. - [`7c3724c`](https://github.com/rzwitserloot/lombok/commit/7c3724c9dc03684b9e4ecb9b33296c894138add6) [Fixes issue [#1783](https://github-redirect.dependabot.com/rzwitserloot/lombok/issues/1783)] lombok.var / lombok.experimental.var import would be remo... - [`5ec61bb`](https://github.com/rzwitserloot/lombok/commit/5ec61bb62d3dd2d9509ade090e750dd43e36c0f3) [fixes issue [#1759](https://github-redirect.dependabot.com/rzwitserloot/lombok/issues/1759)] We removed the ‘flag usage’ check on builder instead of r... - [`111d0a5`](https://github.com/rzwitserloot/lombok/commit/111d0a5f16667824d0a73b733624e6deffe19a0e) Fixes issue [#1789](https://github-redirect.dependabot.com/rzwitserloot/lombok/issues/1789) - picking another workspace duplicates the ‘lombok is insta... - [`be1cfd2`](https://github.com/rzwitserloot/lombok/commit/be1cfd2f59933725726ec5810e0c189a4aca6ad7) Replaced StringBuilder by simple char array in "hotspot" method - [`ff739d6`](https://github.com/rzwitserloot/lombok/commit/ff739d6d5a6a68f8d87480be7b0c0104e08f77e0) Add Roland Praml to authors list - [`a195a47`](https://github.com/rzwitserloot/lombok/commit/a195a47337f592eb117f519f7a1a42f0d8f570d1) Attempting to fix issues with integration with mapstruct; issue [#1359](https://github-redirect.dependabot.com/rzwitserloot/lombok/issues/1359) - [`0375f1a`](https://github.com/rzwitserloot/lombok/commit/0375f1a9e8f606588d4e136fc718a6876ff0ae4f) lombok config broken: version must be string - [`37434ba`](https://github.com/rzwitserloot/lombok/commit/37434ba0cba68ea232efea0824d3f71e5e287dc2) [Fixes [#1347](https://github-redirect.dependabot.com/rzwitserloot/lombok/issues/1347)] issues with no-args constructor and Builder.Default now documen... - Additional commits viewable in [compare view](https://github.com/rzwitserloot/lombok/compare/v1.16.18...v1.18.2)


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 merge` will merge this PR after your CI passes on it - `@dependabot reopen` will reopen this PR if it is closed - `@dependabot ignore this [patch|minor|major] version` will close this PR and stop Dependabot creating any more for this minor/major 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) - `@dependabot use these labels` will set the current labels as the default for future PRs for this repo and language - `@dependabot use these reviewers` will set the current reviewers as the default for future PRs for this repo and language - `@dependabot use these assignees` will set the current assignees as the default for future PRs for this repo and language - `@dependabot use this milestone` will set the current milestone as the default for future PRs for this repo and language - `@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 your Dependabot [dashboard](https://app.dependabot.com): - 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.
codecov[bot] commented 6 years ago

Codecov Report

Merging #102 into development will not change coverage. The diff coverage is n/a.

Impacted file tree graph

@@             Coverage Diff              @@
##             development   #102   +/-   ##
============================================
  Coverage             82%    82%           
  Complexity           291    291           
============================================
  Files                 31     31           
  Lines               1067   1067           
  Branches              59     59           
============================================
  Hits                 875    875           
  Misses               156    156           
  Partials              36     36

Continue to review full report at Codecov.

Legend - Click here to learn more Δ = absolute <relative> (impact), ø = not affected, ? = missing data Powered by Codecov. Last update 31544f7...a87d938. Read the comment docs.