-
Notifications
You must be signed in to change notification settings - Fork 28
Comparing changes
Open a pull request
base repository: avaje/avaje-inject
base: 11.3
head repository: avaje/avaje-inject
compare: 11.4
- 12 commits
- 29 files changed
- 4 contributors
Commits on Mar 24, 2025
-
Bump the dependencies group with 5 updates
Bumps the dependencies group with 5 updates: | Package | From | To | | --- | --- | --- | | [net.bytebuddy:byte-buddy](https://github.com/raphw/byte-buddy) | `1.17.2` | `1.17.4` | | [net.bytebuddy:byte-buddy-agent](https://github.com/raphw/byte-buddy) | `1.17.2` | `1.17.4` | | io.avaje:avaje-http-api | `3.0` | `3.1` | | [io.avaje:avaje-http-client](https://github.com/avaje/avaje-http-client) | `3.0` | `3.1` | | [io.avaje:avaje-jsonb](https://github.com/avaje/avaje-jsonb) | `3.1` | `3.2` | Updates `net.bytebuddy:byte-buddy` from 1.17.2 to 1.17.4 - [Release notes](https://github.com/raphw/byte-buddy/releases) - [Changelog](https://github.com/raphw/byte-buddy/blob/master/release-notes.md) - [Commits](raphw/byte-buddy@byte-buddy-1.17.2...byte-buddy-1.17.4) Updates `net.bytebuddy:byte-buddy-agent` from 1.17.2 to 1.17.4 - [Release notes](https://github.com/raphw/byte-buddy/releases) - [Changelog](https://github.com/raphw/byte-buddy/blob/master/release-notes.md) - [Commits](raphw/byte-buddy@byte-buddy-1.17.2...byte-buddy-1.17.4) Updates `io.avaje:avaje-http-api` from 3.0 to 3.1 Updates `io.avaje:avaje-http-client` from 3.0 to 3.1 - [Release notes](https://github.com/avaje/avaje-http-client/releases) - [Commits](https://github.com/avaje/avaje-http-client/commits) Updates `io.avaje:avaje-jsonb` from 3.1 to 3.2 - [Release notes](https://github.com/avaje/avaje-jsonb/releases) - [Commits](avaje/avaje-jsonb@3.1...3.2) --- updated-dependencies: - dependency-name: net.bytebuddy:byte-buddy dependency-type: direct:development update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: net.bytebuddy:byte-buddy-agent dependency-type: direct:development update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: io.avaje:avaje-http-api dependency-type: direct:development update-type: version-update:semver-minor dependency-group: dependencies - dependency-name: io.avaje:avaje-http-client dependency-type: direct:production update-type: version-update:semver-minor dependency-group: dependencies - dependency-name: io.avaje:avaje-jsonb dependency-type: direct:production update-type: version-update:semver-minor dependency-group: dependencies ... Signed-off-by: dependabot[bot] <[email protected]>
Configuration menu - View commit details
-
Copy full SHA for eadef5b - Browse repository at this point
Copy the full SHA eadef5bView commit details -
Merge pull request #780 from avaje/dependabot/maven/master/dependenci…
…es-b27d9d0843 Bump the dependencies group with 5 updates
Configuration menu - View commit details
-
Copy full SHA for 241097e - Browse repository at this point
Copy the full SHA 241097eView commit details
Commits on Mar 26, 2025
-
Detect clash with multiple @bean methods returning same type (#781)
Given a @factory with 2 or more bean methods that return the same type, and effectively clash on qualifier name (typically missing) then make this a compilation error. The error suggests to add a @nAmed or qualifier annotation to resolve the issue. Example: ```java @factory class MyFactory { @bean BFace one() { ... } @bean BFace two() { ... } ```
Configuration menu - View commit details
-
Copy full SHA for b4f4dba - Browse repository at this point
Copy the full SHA b4f4dbaView commit details -
Bug fix for @bean returning Optional not registering extended type (#782
) Example: ``` @bean Optional<CFace> optional() { ... } ``` The generated isBeanAbsent() method should include all the types that CFace extends such as interfaces. If CFace extends C2Face then both should be there like: .isBeanAbsent(CFace.class, C2Face.class)) The bug was that only the top type of CFace was included like: ``` .isBeanAbsent(CFace.class)) ``` This was due to a bug in MethodReader determining the incorrect returnElement for the optionalType = true case. The returnElement was the Optional type rather than the parameter type CFace.
Configuration menu - View commit details
-
Copy full SHA for afab32d - Browse repository at this point
Copy the full SHA afab32dView commit details -
Configuration menu - View commit details
-
Copy full SHA for c0db86d - Browse repository at this point
Copy the full SHA c0db86dView commit details
Commits on Mar 28, 2025
-
Configuration menu - View commit details
-
Copy full SHA for d759b91 - Browse repository at this point
Copy the full SHA d759b91View commit details
Commits on Mar 29, 2025
-
Fix conditional factories (#785)
* Fix conditional factories resolves #784 * Update MetaData.java * Update MetaData.java
Configuration menu - View commit details
-
Copy full SHA for 4fc43df - Browse repository at this point
Copy the full SHA 4fc43dfView commit details -
Configuration menu - View commit details
-
Copy full SHA for 0537674 - Browse repository at this point
Copy the full SHA 0537674View commit details -
Merge pull request #786 from SentryMan/m2e
add m2e hook to generated plugin
Configuration menu - View commit details
-
Copy full SHA for fdc61bd - Browse repository at this point
Copy the full SHA fdc61bdView commit details -
Configuration menu - View commit details
-
Copy full SHA for ae25adb - Browse repository at this point
Copy the full SHA ae25adbView commit details -
Configuration menu - View commit details
-
Copy full SHA for 5a5539b - Browse repository at this point
Copy the full SHA 5a5539bView commit details
Commits on Mar 30, 2025
-
Configuration menu - View commit details
-
Copy full SHA for f650539 - Browse repository at this point
Copy the full SHA f650539View commit details
This comparison is taking too long to generate.
Unfortunately it looks like we can’t render this comparison for you right now. It might be too big, or there might be something weird with your repository.
You can try running this command locally to see the comparison on your machine:
git diff 11.3...11.4