-
Notifications
You must be signed in to change notification settings - Fork 0
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 repo to current version #1
base: master
Are you sure you want to change the base?
Commits on Jan 23, 2023
-
Open-source
@Keep
on Guice annotations.PiperOrigin-RevId: 503916049
Configuration menu - View commit details
-
Copy full SHA for 9ed45ab - Browse repository at this point
Copy the full SHA 9ed45abView commit details
Commits on Jan 31, 2023
-
Automated visibility attribute cleanup.
PiperOrigin-RevId: 505840946
Configuration menu - View commit details
-
Copy full SHA for 4a8965a - Browse repository at this point
Copy the full SHA 4a8965aView commit details
Commits on Mar 14, 2023
-
PiperOrigin-RevId: 516590803
Configuration menu - View commit details
-
Copy full SHA for f26a731 - Browse repository at this point
Copy the full SHA f26a731View commit details
Commits on Mar 20, 2023
-
Clarify that Multibinder elements need not be distinct if permitDupli…
…cates() is specified. PiperOrigin-RevId: 517978849
Configuration menu - View commit details
-
Copy full SHA for 06e8bb1 - Browse repository at this point
Copy the full SHA 06e8bb1View commit details
Commits on Apr 14, 2023
-
Configuration menu - View commit details
-
Copy full SHA for 65c38f8 - Browse repository at this point
Copy the full SHA 65c38f8View commit details -
Configuration menu - View commit details
-
Copy full SHA for d98a4de - Browse repository at this point
Copy the full SHA d98a4deView commit details -
Update LineNumbers to ignore all kinds of exceptions when reading cla…
…sses with ASM, so Guice is less finicky about the precise .class version & ASM version. A while ago I had tried to do this by ignoring UnsupportedOperationException, but per #1654, ASM doesn't always throw UOE. This change will log a single failure when Guice encounters an exception while reading classfiles and warn that ASM may be out of date. The consequences of this failing _all_ line number reading (due to, say, an accidental bug introduced while parsing classfiles) is that Guice won't emit line numbers for bind statements in modules (as binding source locations). A number of other tests would fail in that scenario, warning us that something is off. PiperOrigin-RevId: 524387180
Configuration menu - View commit details
-
Copy full SHA for 5c37cd9 - Browse repository at this point
Copy the full SHA 5c37cd9View commit details
Commits on Apr 17, 2023
-
Configuration menu - View commit details
-
Copy full SHA for 3399615 - Browse repository at this point
Copy the full SHA 3399615View commit details
Commits on Apr 18, 2023
-
Prevent endless loop in lock cycle detection. The following scenario …
…would previously fail: * T1: Enter `lockOrDetectPotentialLocksCycle`: - Lock CAF.class, add itself to `lockThreadIsWaitingOn`, unlock CAF.class - Lock the cycle detecting lock (CDL) - Lock CAF.class, mark itself as `lockOwnerThread`, remove itself from `lockThreadIsWaitingOn` - Exit `lockOrDetectPotentialLocksCycle` * T1: Re-enter `lockOrDetectPotentialLocksCycle`: - Lock CAF.class, add itself to `lockThreadIsWaitingOn`, unlock CAF.class T2: Enter `lockOrDetectPotentialLocksCycle` - Lock CAF.class, invoke `detectPotentialLocksCycle`. At this point, `detectPotentialLocksCycle` will now loop forever, because the `lockOwnerThread` is also in `lockThreadIsWaitingOn`. During the course of looping forever, it will OOM, because it's building up an in-memory structure of what it thinks are cycles. The solution is to avoid the re-entrant T1 from adding itself to `lockThreadIsWaitingOn` if it's already the `lockOwnerThread`. It's guaranteed that it won't relinquish the lock concurrently, because it's the exact same thread that owns it. Fixes #1635 and Fixes #1510 PiperOrigin-RevId: 525182219
Configuration menu - View commit details
-
Copy full SHA for 8cf8c62 - Browse repository at this point
Copy the full SHA 8cf8c62View commit details -
Bump spring dependency to 5.3.18. Fixes #1620.
PiperOrigin-RevId: 525219514
Configuration menu - View commit details
-
Copy full SHA for f67f9d1 - Browse repository at this point
Copy the full SHA f67f9d1View commit details -
Bump struts2-core dependency to 2.5.30 & fix the struts2 test to work…
… with the new version. Fixes #1624. PiperOrigin-RevId: 525219685
Configuration menu - View commit details
-
Copy full SHA for 23c25d5 - Browse repository at this point
Copy the full SHA 23c25d5View commit details -
Configuration menu - View commit details
-
Copy full SHA for f447cc4 - Browse repository at this point
Copy the full SHA f447cc4View commit details -
Fix issues with recursive JIT loading that would lead to a deadlock a…
…nd/or crash inside Guava's LoadingCache. The problem had to do with the fact that Guice eagerly stores uninitialized JIT bindings in an attempt to allow circular dependencies, and Guice also attempts to cleanup failed JIT bindings (to remove these uninitialized JIT bindings). The JIT binding cache was a guard against a recursive call back into the constructor's cache, but we were removing that guard. We now only remove the guard if we aren't in the process of loading that JIT binding. The failed JIT binding is naturally cleaned up later on, as the existing & new tests attest to. Fixes many issues: - Fixes #1633 - Fixes #785 - Fixes #1389 - Fixes #1394 Many thanks to @swankjesse for the test-case added in #1389 that was helpful in diagnosing the problem, and to @PaulFridrick for the diagnoses in #1633. PiperOrigin-RevId: 525219839
Configuration menu - View commit details
-
Copy full SHA for 15d95bb - Browse repository at this point
Copy the full SHA 15d95bbView commit details -
Improve {Checked,Throwing}ProviderTest to allow exception types to be…
… returned in any order from Method.getGenericExceptionTypes. Fixes #1603. (This does not use the suggested code from the original PR, and does not attempt to change the `testManyMethods` method because we assume that repeated calls to `getDeclaredMethods` will always return the same order of methods. If that ever changes, we can deal with it then.) PiperOrigin-RevId: 525220025
Configuration menu - View commit details
-
Copy full SHA for 22dca18 - Browse repository at this point
Copy the full SHA 22dca18View commit details -
Make PrivateModule#binder() non-final to allow binder customization i…
Configuration menu - View commit details
-
Copy full SHA for c3d8f51 - Browse repository at this point
Copy the full SHA c3d8f51View commit details -
Remove references to Google Docs and instead point to the wiki when p…
…ossible. Fixes #1556 PiperOrigin-RevId: 525231598
Configuration menu - View commit details
-
Copy full SHA for 9678847 - Browse repository at this point
Copy the full SHA 9678847View commit details
Commits on Apr 19, 2023
-
Add truth's java8 extensions to the external bzl & maven build and up…
…date the version we use. PiperOrigin-RevId: 525459640
Configuration menu - View commit details
-
Copy full SHA for c6b5cdf - Browse repository at this point
Copy the full SHA c6b5cdfView commit details -
Update documentation to elaborate on how hierarchical modules change …
Configuration menu - View commit details
-
Copy full SHA for 5c95376 - Browse repository at this point
Copy the full SHA 5c95376View commit details -
Configuration menu - View commit details
-
Copy full SHA for 3e21a13 - Browse repository at this point
Copy the full SHA 3e21a13View commit details -
Fix Guice's dependence on the system line separator by never using th…
…e system line separator and always using \n explicitly. (We were previously inconsistent: many places used \n, and many other places used %n with a formatter, which would end up being the system line separator.) This allows tests to pass on Windows, where the line separator is different. Also update tests to do a run with the windows line separator, to catch regressions. Fixes #1213. PiperOrigin-RevId: 525558598
Configuration menu - View commit details
-
Copy full SHA for bccee9c - Browse repository at this point
Copy the full SHA bccee9cView commit details -
Minor updates to OSGi metadata. Fixes #1173
PiperOrigin-RevId: 525564484
Configuration menu - View commit details
-
Copy full SHA for 410b831 - Browse repository at this point
Copy the full SHA 410b831View commit details -
Remove some lingering references to Java 6 (Guice 5+ requires Java 8). …
…Fixes #1171. PiperOrigin-RevId: 525564737
Configuration menu - View commit details
-
Copy full SHA for d857bef - Browse repository at this point
Copy the full SHA d857befView commit details
Commits on Apr 20, 2023
-
Mark JSR305 dependency as optional as it's not required at runtime (y…
…ou only need it if you want to perform null analysis on the code). Fixes #1172 PiperOrigin-RevId: 525741584
Configuration menu - View commit details
-
Copy full SHA for 94d28dd - Browse repository at this point
Copy the full SHA 94d28ddView commit details -
Fix a number of Javadoc typos. Fixes #1078
PiperOrigin-RevId: 525805514
Configuration menu - View commit details
-
Copy full SHA for 7ed6624 - Browse repository at this point
Copy the full SHA 7ed6624View commit details -
Configuration menu - View commit details
-
Copy full SHA for 70ad639 - Browse repository at this point
Copy the full SHA 70ad639View commit details -
Bump some plugin versions. Fixes #1026
PiperOrigin-RevId: 525828170
Configuration menu - View commit details
-
Copy full SHA for 0c43c8d - Browse repository at this point
Copy the full SHA 0c43c8dView commit details
Commits on Apr 21, 2023
-
Make requestInjection with an explicit type actually use the type. Fixes
#1071. PiperOrigin-RevId: 525898592
Configuration menu - View commit details
-
Copy full SHA for becce74 - Browse repository at this point
Copy the full SHA becce74View commit details -
Recognize scoping annotations on concrete types also annotated with @…
…ProvidedBy when using the @ProvidedBy as the provider. Notably, this does *not* change things to allow scoping annotations on interfaces or abstract classes (even though theoretically we could, because the @ProvidedBy will be instantiating it). Scopes on abstract classes|interfaces will still throw an exception about the scope being misplaced. Fixes #251 and fixes #1319. PiperOrigin-RevId: 526009187
Configuration menu - View commit details
-
Copy full SHA for 2d78877 - Browse repository at this point
Copy the full SHA 2d78877View commit details -
Don't wrap methods declared by Object in transactions. Fixes #958, fixes
#788. PiperOrigin-RevId: 526087773
Configuration menu - View commit details
-
Copy full SHA for d882d5e - Browse repository at this point
Copy the full SHA d882d5eView commit details -
Don't automatically create an EntityManager outside of a UnitOfWork, …
…because it leads to leaks. Fixes #739, fixes #997, fixes #730, fixes #985, fixes #959, fixes #731. This also adds an optional Options to the JpaPersistModule constructor, if users wish to use the legacy behavior. This is a breaking change, but to a better default value. Users who want to keep the dangerous form can opt back in with the options. PiperOrigin-RevId: 526106112
Configuration menu - View commit details
-
Copy full SHA for e68fab6 - Browse repository at this point
Copy the full SHA e68fab6View commit details
Commits on Apr 22, 2023
-
Set correct bundle version of fragment host. Fixes #1050 & fixes #1049.…
… Much thanks to @kenwenzel and @mcculls for their help figuring out the right incantation for this. PiperOrigin-RevId: 526290216
Configuration menu - View commit details
-
Copy full SHA for 356f6ba - Browse repository at this point
Copy the full SHA 356f6baView commit details -
Add a utility class for checking if Guice has enhanced a class (and r…
Configuration menu - View commit details
-
Copy full SHA for 4baf691 - Browse repository at this point
Copy the full SHA 4baf691View commit details
Commits on Apr 25, 2023
-
Don't immediately lookup the linked binding associated with @Implemen…
…tedBy. Instead, defer it like a normal bind(X.class).to(Y.class) does. This ensures that later bindings of Y are used. Much thanks goes to @nineninesevenfour for their investigation (in #1650), which made fixing this much easier. Fixes #700 and fixes #1650. PiperOrigin-RevId: 527048972
Configuration menu - View commit details
-
Copy full SHA for 8edbe68 - Browse repository at this point
Copy the full SHA 8edbe68View commit details -
Completely remove OSGi Import-Package 'javax.annotation'
As suggested (and I assume also intended) in #1173 this PR changes the configuration of the maven-bundle-plugin to completely remove the import of the package `javax.annotation`, which seems not to be required at runtime. With PR #1173 respectively #1697 the OSGi package import of `javax.annotation;version="[3.0,4)"` was only changed to `javax.annotation`, i.e. the version range was removed. Additionally update to latest maven-bundle-plugin 5.1.8. Fixes #1708 COPYBARA_INTEGRATE_REVIEW=#1708 from HannesWell:removeJavaxAnnotation 968f4bc PiperOrigin-RevId: 527092811
Configuration menu - View commit details
-
Copy full SHA for e17e8af - Browse repository at this point
Copy the full SHA e17e8afView commit details
Commits on Apr 26, 2023
-
Add support for jakarta.inject to core Guice.
This does not add support for `toProvider(...)` to instances of `jakarta.inject.Provider` or classes/keys/typeLiterals of type `jakarta.inject.Provider`. See #1383 (comment) for details of the plans. The Guice 6.0 release will support `javax.inject` _and_ `jakarta.inject` (excluding `toProvider()` support for `jakarta.inject`), and the Guice 7.0+ release will remove the `javax.inject` references. Further background on these issues: * #1630 * #1679 * #1490 * #1383 PiperOrigin-RevId: 527349023
Configuration menu - View commit details
-
Copy full SHA for 5eff2ea - Browse repository at this point
Copy the full SHA 5eff2eaView commit details
Commits on Apr 27, 2023
-
Update @SInCE vNext tags to @SInCE 6.0
PiperOrigin-RevId: 527647564
Configuration menu - View commit details
-
Copy full SHA for 0c94a80 - Browse repository at this point
Copy the full SHA 0c94a80View commit details -
Add a couple more missing @SInCE tags.
PiperOrigin-RevId: 527669293
Configuration menu - View commit details
-
Copy full SHA for 99d0e11 - Browse repository at this point
Copy the full SHA 99d0e11View commit details
Commits on May 1, 2023
-
Rewrite jakarta singleton -> c.g.i Singleton for the SPI too.
PiperOrigin-RevId: 528546653
Configuration menu - View commit details
-
Copy full SHA for 36ff122 - Browse repository at this point
Copy the full SHA 36ff122View commit details -
Configuration menu - View commit details
-
Copy full SHA for a99b87a - Browse repository at this point
Copy the full SHA a99b87aView commit details
Commits on May 2, 2023
-
Optimize the way we skip sources of core Guice classes. Instead of bu…
…ilding new binders by calling skipSources on-demand, we just skip all the expected sources by default. This significantly reduces some memory pressure when creating injectors (which was otherwise causing issues with the forthcoming CL to additionally bind jakarta Provider variants for MapBinder/Multibinder/OptionalBinder). PiperOrigin-RevId: 528758521
Configuration menu - View commit details
-
Copy full SHA for 104a113 - Browse repository at this point
Copy the full SHA 104a113View commit details -
Bind the Provider from Jakarta when creating bindings with a Multibin…
Configuration menu - View commit details
-
Copy full SHA for 4cea397 - Browse repository at this point
Copy the full SHA 4cea397View commit details -
Fix a few more places where we should check jakarta variants: DaggerM…
…ethodScanner scopes and BytecodeGenTest. PiperOrigin-RevId: 528900279
Configuration menu - View commit details
-
Copy full SHA for 75df9fc - Browse repository at this point
Copy the full SHA 75df9fcView commit details
Commits on May 4, 2023
-
Some prefactorings that will make it easier to add transformations th…
…at strip javax and only use the jakarta variants. * BoundFieldModule: just say "Provider" and "Qualifier" instead of FQN of each. * MapBinderTest/MultibinderTest/SpiUtils/ProvidersTest/googlecode.guice.BUILD: reorder some things so it's easier to strip the javax variants * OptionalBinderTest: introduce a helper that the tests delegate to, so the strip directives can be consolidated * ContinuingRequestIntegrationTest/ServletTest: Don't pass null for the response in tests that made that fail, pass mocks instead. Earlier HttpServlet impls allowed null, later HttpServlet impls don't allow null. * ElementsTest: rename javax-referencing to "spec" so it makes sense when its transformed. * InjectorSpiTest: Run the formatter, since the next CL would have changed this. * BoundFieldModuleTest: Reference javax explicitly in some places, explicitly don't reference it in others. * OSGiContainerTest: Add a TODO about the test's uselessness * pom.xml: Enable maven test failures to include stack traces, so we have some idea WTF went wrong when things go wrong. PiperOrigin-RevId: 529463507
Configuration menu - View commit details
-
Copy full SHA for bb54925 - Browse repository at this point
Copy the full SHA bb54925View commit details -
Improve the error message if an EntityManager is provisioned before a…
… unit if work is started, to help users transition to the new default that requires an explicit work open (or the legacy option set). PiperOrigin-RevId: 529465168
Configuration menu - View commit details
-
Copy full SHA for 3bb74d7 - Browse repository at this point
Copy the full SHA 3bb74d7View commit details -
Rework sun.misc.Unsafe usages so that we directly refer to sun.misc.U…
…nsafe, and call getObject on it natively instead of through reflection. Calling getObject through reflection breaks Azul JVMs, because the staticFieldBase is a funny "not object", but when passed through reflection it tries to become an Object and fails. Retrieval of the unsafe is based on how other google open source projects do it, see for example [AbstractFuture](https://github.com/google/guava/blob/d4bd0c5ffa913104283e61aeb2c41bac641af042/guava/src/com/google/common/util/concurrent/AbstractFuture.java#L1340-L1365), [UnsignedBytes](https://github.com/google/guava/blob/6405852bbf453b14d097b8ec3bcae494334b357d/guava/src/com/google/common/primitives/UnsignedBytes.java#L341-L366), and [protobufs](https://github.com/protocolbuffers/protobuf/blob/520c601c99012101c816b6ccc89e8d6fc28fdbb8/java/core/src/main/java/com/google/protobuf/UnsafeUtil.java#L289-L315). Fixes #1719, and properly fixes #1672. (Note that this change also bumps the Github Action's bazel version from 4.2.2 to 6.1.2, because somewhere along the way from 4.2.2->6.1.2, Bazel fixed the `--javacopts="--release 8"` option to also allow `sun.misc.Unsafe`.) PiperOrigin-RevId: 529465570
Configuration menu - View commit details
-
Copy full SHA for 95a2fbb - Browse repository at this point
Copy the full SHA 95a2fbbView commit details -
Expose _something_ from private modules used in tests where the test …
…is validating that the parent can't re-bind something from the private module. If nothing is exposed, the child/private injector can otherwise be immediately GC'd (which then allows the parent to have the binding). (Note that there are other ways the child/private module could be captured: such as a Provider or its Injector being captured into a longer-lived Thread... but this is the simplest way to do it). This is happening with some regularity on the Github Actions tests, making the tests a bit flaky. PiperOrigin-RevId: 529467328
Configuration menu - View commit details
-
Copy full SHA for bb931fe - Browse repository at this point
Copy the full SHA bb931feView commit details -
Breaks some conformance around sun.misc.Unsafe usage.
PiperOrigin-RevId: 529476888
Configuration menu - View commit details
-
Copy full SHA for e7513e6 - Browse repository at this point
Copy the full SHA e7513e6View commit details -
Rework sun.misc.Unsafe usages so that we directly refer to sun.misc.U…
…nsafe, and call getObject on it natively instead of through reflection. (Take 2, after exempting its usages internally.) Calling getObject through reflection breaks Azul JVMs, because the staticFieldBase is a funny "not object", but when passed through reflection it tries to become an Object and fails. Retrieval of the unsafe is based on how other google open source projects do it, see for example AbstractFuture, UnsignedBytes, and protobufs. Fixes #1719, and properly fixes #1672. (Note that this change also bumps the Github Action's bazel version from 4.2.2 to 6.1.2, because somewhere along the way from 4.2.2->6.1.2, Bazel fixed the --javacopts="--release 8" option to also allow sun.misc.Unsafe.) PiperOrigin-RevId: 529486761
Configuration menu - View commit details
-
Copy full SHA for 5a58425 - Browse repository at this point
Copy the full SHA 5a58425View commit details -
Remove redundant references to javax.{inject,persistence,servlet} and…
… replace the rest with their jakarta variants. This required upgrading some test dependencies, because the tests need some impls of the APIs which only exist in newer releases. This also removes the struts2 extension from the maven & bazel build (although it keeps the now-unused source), because struts2 has no release that supports jakarta. For users that want to continue using the struts2 extension, please continue to use the Guice 6.0 release (instead of the 7.0+ line, which will only support the jakarta dependencies). Fixes #1383. (I'll cut the 6.0 candidates/releases from before this commit, and if we need to make further 6.0 changes, I'll manually merge those into the 6.0 branch.) PiperOrigin-RevId: 529504991
Configuration menu - View commit details
-
Copy full SHA for 49b1a33 - Browse repository at this point
Copy the full SHA 49b1a33View commit details
Commits on May 5, 2023
-
Prepare for the Guice 6.0 & 7.0 releases. This change does the follow…
…ing: * Bumps the snapshot version to 7.0.1-SNAPSHOT * Adds Guice 6 & Guice 7 release pages, with explanations of the jakarta transition & how Guice 6.0 & 7.0 should be used. They also include changelogs since 5.1.0. * Updates the top-level README to reference the 6.0 & 7.0 releases, as well as including "installation instructions" (which fixes #1698). * Updates the wiki to make sure it's meaningful for both javax & jakarta references, pointing to the correct ones where appropriate. PiperOrigin-RevId: 529770936
Configuration menu - View commit details
-
Copy full SHA for 24324ca - Browse repository at this point
Copy the full SHA 24324caView commit details
Commits on May 6, 2023
-
Change the way we reference what 6.0 supports in the README, so it do…
…esn't get transformed into jakarta. Also note that 5.1 only supports javax. PiperOrigin-RevId: 529858655
Configuration menu - View commit details
-
Copy full SHA for 9ac4767 - Browse repository at this point
Copy the full SHA 9ac4767View commit details
Commits on May 8, 2023
-
Avoid re-initializing factories that are already initialized. This is…
… necessary because we share the internal factory implementation, which leads to initialize(..) being called multiple times. There are other consequences/quirks of this, but re-initialization is the worst of it. PiperOrigin-RevId: 530339379
Configuration menu - View commit details
-
Copy full SHA for 40a5bcf - Browse repository at this point
Copy the full SHA 40a5bcfView commit details
Commits on May 9, 2023
-
Configuration menu - View commit details
-
Copy full SHA for be0141c - Browse repository at this point
Copy the full SHA be0141cView commit details
Commits on May 10, 2023
-
Use linked bindings for MapBinder/Multibinder/OptionalBinder aliases,…
… instead of linking to the same internal factory implementation. (Reusing the internal factory results in some quirks that we want to avoid.) PiperOrigin-RevId: 530977598
Configuration menu - View commit details
-
Copy full SHA for 2d64067 - Browse repository at this point
Copy the full SHA 2d64067View commit details
Commits on May 11, 2023
-
Improve MissingImplementationError to lazily calculate suggestions an…
…d standardize its output. The error will now generate suggestions only when the message is used (as opposed to on instantiation). This should significantly improve the performance of any code that happens to call `injector.get{Instance,Provider,Binding}` and catches/ignores a `ProvisionException` (with the intention of falling back to code that deals with the type not being bound). While this isn't a great pattern for code to use, and there are far better ways of doing it... there's enough code that does this that it's worthwhile improving. This pattern in particular was very problematic with the introduction of the jakarta.inject.Provider variants for Multibinders/MapBinders & OptionalBinders, because we have *lots* of those. By adding N more bindings to each multi/map/optionalbinder, we added a very large number of bindings to the overall total, which resulted in code using this pattern getting much slower. This code also fixes suggestions to skip "UntargettedBindings", which are bindings like `bind(SomeInterface.class)` and aren't a valid suggestion (because they're missing a .to(..)). By standardizing, this otherwise broke a test in BinderTest that was asserting we failed those with proper error messages (showing their source). We would have otherwise started showing their source twice, once in a "Did you mean?" section and again in the normal "bound here" section. But really we shouldn't show these in "Did you mean?" at all, because it's just a repetition (or incorrect suggestion) of the wrong binding. PiperOrigin-RevId: 531062151
Configuration menu - View commit details
-
Copy full SHA for bee813b - Browse repository at this point
Copy the full SHA bee813bView commit details -
Configuration menu - View commit details
-
Copy full SHA for 654032a - Browse repository at this point
Copy the full SHA 654032aView commit details
Commits on May 12, 2023
-
Make error_prone_annotations dependency optional
Annotations with retention policy are ignored if they cannot be loaded at runtime (at least according to [Stack-Overvflow](https://stackoverflow.com/questions/3567413/why-doesnt-a-missing-annotation-cause-a-classnotfoundexception-at-runtime)). Make the dependency optional to not enforce the presence of error_prone_annotations in a java runtime even if those annotations are not used at all. This is especially useful for OSGi-runtimes where you cannot exclude error_prone_annotations because the corresponding package is specified as mandatory requirement in the MANIFEST.MF. Marking the Maven dependency as optional will also result in the error-prone package requirement being marked as optional. At the moment error_prone_annotations does not come with a OSGi compliant Manifest, which makes it harder to include it in OSGi applications like Eclipse. I already created a PR at error-prone to include the required OSGi headers (see google/error-prone#3903), but not requiring the annotations at all would make it even simpler to use guice within OSGi. Alternatively the dependency could be marked as optional in the OSGi metadata. Fixes #1739 COPYBARA_INTEGRATE_REVIEW=#1739 from HannesWell:optionalErrorproneAnnotations 86f9de0 PiperOrigin-RevId: 531531783
Configuration menu - View commit details
-
Copy full SHA for f4a66b7 - Browse repository at this point
Copy the full SHA f4a66b7View commit details -
Bump last stable release to 7.0.0, update README to point to 6.0.0 & …
…7.0.0 as the last releases, update the 6.0.0 & 7.0.0 release pages. PiperOrigin-RevId: 531554646
Configuration menu - View commit details
-
Copy full SHA for ed5f5ae - Browse repository at this point
Copy the full SHA ed5f5aeView commit details
Commits on May 17, 2023
-
A bunch of environment changes.
* Bump minimum JRE to 11 (from 8). * Change testing matrix from {8,11,15,17} to {11,17,21-ea}. (Except the bazel build has trouble parsing "21-ea" as a java version, so s/21-ea/20 for bazel.) * Also test on macos (but only with jdk17). (Attempted to test on windows too, but there's issues right now.) * Cleanup the POMs a little bit (remove unused mailing list reference, fix CI link) * Bump bazel version to 6.2.0, otherwise the tests fail b/c they try to set a security manager (see bazelbuild/bazel#14502, which was fixed in bazelbuild/bazel@7556e11, which was cherrypicked into the 6.2.0 release). This also required suppressing the "BanJNDI" errorprone check in the JNDI extension, which was also added to 6.2.0. (A future change should probably just remove the JNDI extension altogether.) PiperOrigin-RevId: 532849632
Configuration menu - View commit details
-
Copy full SHA for c58bc33 - Browse repository at this point
Copy the full SHA c58bc33View commit details
Commits on Jun 6, 2023
-
PiperOrigin-RevId: 538300298
Configuration menu - View commit details
-
Copy full SHA for 6412858 - Browse repository at this point
Copy the full SHA 6412858View commit details
Commits on Jun 20, 2023
-
Bump guava from 31.0.1-jre to 32.0.0-jre
Bumps [guava](https://github.com/google/guava) from 31.0.1-jre to 32.0.0-jre. <details> <summary>Release notes</summary> <p><em>Sourced from <a href="https://github.com/google/guava/releases">guava's releases</a>.</em></p> <blockquote> <h2>32.0.0</h2> <h3>Maven</h3> <pre lang="xml"><code><dependency> <groupId>com.google.guava</groupId> <artifactId>guava</artifactId> <version>32.0.0-jre</version> <!-- or, for Android: --> <version>32.0.0-android</version> </dependency> </code></pre> <h3>Jar files</h3> <ul> <li><a href="https://repo1.maven.org/maven2/com/google/guava/guava/32.0.0-jre/guava-32.0.0-jre.jar">32.0.0-jre.jar</a></li> <li><a href="https://repo1.maven.org/maven2/com/google/guava/guava/32.0.0-android/guava-32.0.0-android.jar">32.0.0-android.jar</a></li> </ul> <p>Guava requires <a href="https://github.com/google/guava/wiki/UseGuavaInYourBuild#what-about-guavas-own-dependencies">one runtime dependency</a>, which you can download here:</p> <ul> <li><a href="https://repo1.maven.org/maven2/com/google/guava/failureaccess/1.0.1/failureaccess-1.0.1.jar">failureaccess-1.0.1.jar</a></li> </ul> <h3>Javadoc</h3> <ul> <li><a href="http://guava.dev/releases/32.0.0-jre/api/docs/">32.0.0-jre</a></li> <li><a href="http://guava.dev/releases/32.0.0-android/api/docs/">32.0.0-android</a></li> </ul> <h3>JDiff</h3> <ul> <li><a href="http://guava.dev/releases/32.0.0-jre/api/diffs/">32.0.0-jre vs. 31.1-jre</a></li> <li><a href="http://guava.dev/releases/32.0.0-android/api/diffs/">32.0.0-android vs. 31.1-android</a></li> <li><a href="http://guava.dev/releases/32.0.0-android/api/androiddiffs/">32.0.0-android vs. 32.0.0-jre</a></li> </ul> <h3>Changelog</h3> <h4>Security fixes</h4> <ul> <li>Reimplemented <code>Files.createTempDir</code> and <code>FileBackedOutputStream</code> to further address CVE-2020-8908 (<a href="https://redirect.github.com/google/guava/issues/4011">#4011</a>) and CVE-2023-2976 (<a href="https://redirect.github.com/google/guava/issues/2575">#2575</a>). (feb83a1c8f)</li> </ul> <p>While CVE-2020-8908 was officially closed when we deprecated <code>Files.createTempDir</code> in <a href="https://github.com/google/guava/releases/tag/v30.0">Guava 30.0</a>, we've heard from users that even recent versions of Guava have been listed as vulnerable in <em>other</em> databases of security vulnerabilities. In response, we've reimplemented the method (and the very rarely used <code>FileBackedOutputStream</code> class, which had a similar issue) to eliminate the insecure behavior entirely. This change could technically affect users in a number of different ways (discussed under "Incompatible changes" below), but in practice, the only problem users are likely to encounter is with Windows. If you are using those APIs under Windows, you should skip 32.0.0 and go straight to <a href="https://github.com/google/guava/releases/tag/v32.0.1">32.0.1</a> which fixes the problem. (Unfortunately, we didn't think of the Windows problem until after the release. And while we <a href="https://github.com/google/guava#important-warnings">warn that <code>common.io</code> in particular may not work under Windows</a>, we didn't intend to regress support.) Sorry for the trouble.</p> <h4>Incompatible changes</h4> <p>Although this release bumps Guava's major version number, it makes <strong>no binary-incompatible changes to the <code>guava</code> artifact</strong>.</p> <p>One change could cause issues for Widows users, and a few other changes could cause issues for users in more usual situations:</p> <ul> <li><strong>The new implementations of <code>Files.createTempDir</code> and <code>FileBackedOutputStream</code> <a href="https://redirect.github.com/google/guava/issues/6535">throw an exception under Windows</a>.</strong> This is fixed in <a href="https://github.com/google/guava/releases/tag/v32.0.1">32.0.1</a>. Sorry for the trouble.</li> <li>This release makes a binary-incompatible change to a <code>@beta</code> API in the <strong>separate artifact</strong> <code>guava-testlib</code>. Specifically, we changed the return type of <code>TestingExecutors.sameThreadScheduledExecutor</code> to <code>ListeningScheduledExecutorService</code>. The old return type was a package-private class, which caused the Kotlin compiler to produce warnings. (dafaa3e435)</li> <li>This release <em>adds</em> two methods to the Android flavor of Guava: <code>Invokable.getAnnotatedReturnType()</code> and <code>Parameter.getAnnotatedType()</code>. Those methods do not work under an Android VM; we added them only to help our tests of the Android flavor (since we also run those tests under a JRE). Android VMs tolerate such methods as long as the app does not call them or perform reflection on them, and builds tolerate them because of our new Proguard configurations (discussed below). Thus, we expect no impact to most users. However, we could imagine build problems for users who have set up their own build system for the Android flavor of Guava. Please report any problems so that we can judge how safely we might be able to add other methods to the Android flavor in the future, such as APIs that use Java 8 classes like <code>Stream</code>. (b30e73cfa81ad15c1023c17cfd083255a3df0105)</li> </ul> <!-- raw HTML omitted --> </blockquote> <p>... (truncated)</p> </details> <details> <summary>Commits</summary> <ul> <li>See full diff in <a href="https://github.com/google/guava/commits">compare view</a></li> </ul> </details> <br /> [![Dependabot compatibility score](https://dependabot-badges.githubapp.com/badges/compatibility_score?dependency-name=com.google.guava:guava&package-manager=maven&previous-version=31.0.1-jre&new-version=32.0.0-jre)](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 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) You can disable automated security fix PRs for this repo from the [Security Alerts page](https://github.com/google/guice/network/alerts). </details> Fixes #1750 COPYBARA_INTEGRATE_REVIEW=#1750 from google:dependabot/maven/com.google.guava-guava-32.0.0-jre 0b37845 PiperOrigin-RevId: 541918122
Configuration menu - View commit details
-
Copy full SHA for 331e484 - Browse repository at this point
Copy the full SHA 331e484View commit details -
Bump struts2-core from 2.5.30 to 2.5.31 in /extensions/struts2
Bumps [struts2-core](https://github.com/apache/struts) from 2.5.30 to 2.5.31. <details> <summary>Release notes</summary> <p><em>Sourced from <a href="https://github.com/apache/struts/releases">struts2-core's releases</a>.</em></p> <blockquote> <h2>Struts 2.5.31</h2> <h2>What's Changed</h2> <ul> <li><a href="https://github.com/apache/struts/commit/2d6f1bc0a6f5ac575a56784ac6461816b67c4f21">Fixes</a> addressing <a href="https://cwiki.apache.org/confluence/display/WW/S2-063">S2-063</a> & <a href="https://cwiki.apache.org/confluence/display/WW/S2-064">S2-064</a> by <a href="https://github.com/yasserzamani"><code>@yasserzamani</code></a></li> </ul> <p><strong>Full Changelog</strong>: <a href="https://github.com/apache/struts/compare/STRUTS_2_5_30...STRUTS_2_5_31">https://github.com/apache/struts/compare/STRUTS_2_5_30...STRUTS_2_5_31</a></p> </blockquote> </details> <details> <summary>Commits</summary> <ul> <li>See full diff in <a href="https://github.com/apache/struts/commits">compare view</a></li> </ul> </details> <br /> [![Dependabot compatibility score](https://dependabot-badges.githubapp.com/badges/compatibility_score?dependency-name=org.apache.struts:struts2-core&package-manager=maven&previous-version=2.5.30&new-version=2.5.31)](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 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) You can disable automated security fix PRs for this repo from the [Security Alerts page](https://github.com/google/guice/network/alerts). </details> Fixes #1749 COPYBARA_INTEGRATE_REVIEW=#1749 from google:dependabot/maven/extensions/struts2/org.apache.struts-struts2-core-2.5.31 e9b9dde PiperOrigin-RevId: 541919125
Configuration menu - View commit details
-
Copy full SHA for ec227cc - Browse repository at this point
Copy the full SHA ec227ccView commit details
Commits on Jun 28, 2023
-
Annotate
Module
explicitly as@FunctionalInterface
.`Module` is implicitly a `@FunctionalInterface` already. That is very convenient, as it allows to express ``` methodThatTakesAModule( new AbstractModule(){ @OverRide protected void configure() { bind(Foo.class).annotatedWith(Bar.class).toInstance(barredFoo); } } ); ``` as ``` methodThatTakesAModule(binder -> binder.bind(Foo.class).annotatedWith(Bar.class).toInstance(barredFoo)); ``` PiperOrigin-RevId: 544058444
Configuration menu - View commit details
-
Copy full SHA for ee93362 - Browse repository at this point
Copy the full SHA ee93362View commit details
Commits on Jul 13, 2023
-
PiperOrigin-RevId: 547836342
Configuration menu - View commit details
-
Copy full SHA for ddb6315 - Browse repository at this point
Copy the full SHA ddb6315View commit details
Commits on Aug 10, 2023
-
Make
AbstractModule.binder
private, for a hair more encapsulation.PiperOrigin-RevId: 555492476
Configuration menu - View commit details
-
Copy full SHA for db5bcc2 - Browse repository at this point
Copy the full SHA db5bcc2View commit details
Commits on Oct 5, 2023
-
Update CI to use 21 instead of 21-ea, and bazel to use 21 now that it…
…s not EA. PiperOrigin-RevId: 571115942
Configuration menu - View commit details
-
Copy full SHA for ba3553a - Browse repository at this point
Copy the full SHA ba3553aView commit details
Commits on Oct 9, 2023
-
Fix some typos in Guice comments.
PiperOrigin-RevId: 571969961
Configuration menu - View commit details
-
Copy full SHA for 6e9176d - Browse repository at this point
Copy the full SHA 6e9176dView commit details
Commits on Oct 13, 2023
-
Add a workaround to unbreak the gen_maven_artifact invocation.
PiperOrigin-RevId: 573252178
Configuration menu - View commit details
-
Copy full SHA for 73dc9f3 - Browse repository at this point
Copy the full SHA 73dc9f3View commit details
Commits on Oct 30, 2023
-
PiperOrigin-RevId: 576885259
Configuration menu - View commit details
-
Copy full SHA for 1ab911a - Browse repository at this point
Copy the full SHA 1ab911aView commit details -
PiperOrigin-RevId: 577308018
Configuration menu - View commit details
-
Copy full SHA for cd19219 - Browse repository at this point
Copy the full SHA cd19219View commit details
Commits on Oct 31, 2023
-
PiperOrigin-RevId: 578306054
Configuration menu - View commit details
-
Copy full SHA for cf43582 - Browse repository at this point
Copy the full SHA cf43582View commit details
Commits on Nov 1, 2023
-
PiperOrigin-RevId: 578574921
Configuration menu - View commit details
-
Copy full SHA for 87d262c - Browse repository at this point
Copy the full SHA 87d262cView commit details
Commits on Nov 13, 2023
-
PiperOrigin-RevId: 581989087
Configuration menu - View commit details
-
Copy full SHA for e23d3b4 - Browse repository at this point
Copy the full SHA e23d3b4View commit details
Commits on Jan 10, 2024
-
Update the google_bazel_common ref. The existing one was too old and …
…referenced libs that aren't published anymore. PiperOrigin-RevId: 597242944
Configuration menu - View commit details
-
Copy full SHA for 37b7b7e - Browse repository at this point
Copy the full SHA 37b7b7eView commit details -
Change RealMultibinder#doProvision to use ImmutableSet#buildWithExpec…
…tedSize, and avoid an extra T[] array allocation when permitDuplicates==true. Since the normal usage should be that the items in the values array are all unique, and ImmutableSet#copyOf will create an initial list of max(4, sqrt(length)) if length>4, but then grows that list to length (or larger) if the array was all unique (and then resize is back down during build()). While here, the T[] values array is also only needed to be filled in when permitDuplicates==false (for the error message if duplicates were detected). PiperOrigin-RevId: 597244931
Configuration menu - View commit details
-
Copy full SHA for 21d26cf - Browse repository at this point
Copy the full SHA 21d26cfView commit details
Commits on Jan 30, 2024
-
Update bazel-common to pick up Guava 33.0.0 and Truth to 1.3.0.
New commit: google/bazel-common@2a6b640 This helps with google/truth#746. PiperOrigin-RevId: 602832261
Configuration menu - View commit details
-
Copy full SHA for 5a4e23a - Browse repository at this point
Copy the full SHA 5a4e23aView commit details
Commits on Jan 31, 2024
-
Migrate most usages of
Truth8.assertThat
to equivalent usages of `T……ruth.assertThat`, and qualify others. By "qualify," I mean that, instead of static importing `Truth8.assertThat`, we write "`Truth8.assertThat(...)`" at the call site. This is normally the opposite of what we recommend. However, it's a necessary step in our migration: We are copying all the `Truth8` methods to `Truth`, and we can't do that if any files static import both `Truth.assertThat` and `Truth8.assertThat` (because it produces a compile error about ambiguous overloads). To unblock that, we're moving callers away from the static import. We will update static analysis to stop suggesting the import. A later step will migrate these callers to the new `Truth.assertThat` methods, which we will static import. The `Truth8` methods will be hidden in the future. All callers will use `Truth`. PiperOrigin-RevId: 603073706
Configuration menu - View commit details
-
Copy full SHA for 4f94f00 - Browse repository at this point
Copy the full SHA 4f94f00View commit details
Commits on Feb 6, 2024
-
Update to [Truth 1.4.0](https://github.com/google/truth/releases/tag/…
…v1.4.0). This makes available the rest of the Truth APIs that were recently added in Google's monorepo. It may be worth also updating to the _following_ version of Truth after it's released, but the purpose of that release will mostly be to deprecate `Truth8`. So, if you just avoid using `Truth8` now (starting by approving any migration CLs that I send your way), then there will be little need for that upgrade. Or, more to the point: I don't expect to keep sending you weekly upgrade CLs after this one :) PiperOrigin-RevId: 604719853
Configuration menu - View commit details
-
Copy full SHA for a7c5944 - Browse repository at this point
Copy the full SHA a7c5944View commit details -
Migrate usages of
Truth8.assertThat
to equivalent usages of `Truth.……assertThat`. The `Truth8` methods will be deprecated (or hidden) in the future. Callers should move to `Truth`. Some (but not all) of the CLs in this batch require Truth [1.4.0](https://github.com/google/truth/releases/tag/v1.4.0). I submitted a CL earlier today to (I hope) perform that upgrade for your project. PiperOrigin-RevId: 604731456
Configuration menu - View commit details
-
Copy full SHA for 1ddec22 - Browse repository at this point
Copy the full SHA 1ddec22View commit details
Commits on Feb 22, 2024
-
PiperOrigin-RevId: 609175545
Configuration menu - View commit details
-
Copy full SHA for 60e1b4d - Browse repository at this point
Copy the full SHA 60e1b4dView commit details -
PiperOrigin-RevId: 609419903
Configuration menu - View commit details
-
Copy full SHA for d46b395 - Browse repository at this point
Copy the full SHA d46b395View commit details
Commits on Mar 14, 2024
-
Add a moduleInstance parameter to the ModuleAnnotatedMethodScanner. T…
…his is useful in some cases where the scanner bindings need more information from the module currently being scanned. PiperOrigin-RevId: 615788414
Configuration menu - View commit details
-
Copy full SHA for a0b4d16 - Browse repository at this point
Copy the full SHA a0b4d16View commit details
Commits on Mar 20, 2024
-
RELNOTES=n/a PiperOrigin-RevId: 617628676
Configuration menu - View commit details
-
Copy full SHA for 018f28f - Browse repository at this point
Copy the full SHA 018f28fView commit details
Commits on Mar 27, 2024
-
PiperOrigin-RevId: 619545649
Configuration menu - View commit details
-
Copy full SHA for 2d4a395 - Browse repository at this point
Copy the full SHA 2d4a395View commit details
Commits on Apr 1, 2024
-
Update open-source Guice to use DirectStackWalkerFinder, now that the…
… base level is JDK11. PiperOrigin-RevId: 620889085
Configuration menu - View commit details
-
Copy full SHA for cc5511b - Browse repository at this point
Copy the full SHA cc5511bView commit details
Commits on Apr 4, 2024
-
Add
load()
statements for the builtin Bazel java rulesLoads are being added in preparation for moving the rules out of Bazel and into `rules_java`. PiperOrigin-RevId: 621873514
Configuration menu - View commit details
-
Copy full SHA for 631e8e0 - Browse repository at this point
Copy the full SHA 631e8e0View commit details
Commits on Apr 15, 2024
-
Add
load()
statements for the Bazel builtin top-level java symbolsLoads are being added in preparation for moving the symbols out of Bazel and into `rules_java`. PiperOrigin-RevId: 624858712
Configuration menu - View commit details
-
Copy full SHA for 1561d4a - Browse repository at this point
Copy the full SHA 1561d4aView commit details
Commits on May 6, 2024
-
Update to latest bazel-common that has a newer android API level, so …
…it works on the latest macos on github. Also update to the latest Bazel version that supports JavaInfo rule imports, and fix things that break w/ the latest bazel version (requiring imports for defining package statements if a package_info.java exists, and not using `@local_jdk//:jar`). PiperOrigin-RevId: 631081930
Configuration menu - View commit details
-
Copy full SHA for 1701108 - Browse repository at this point
Copy the full SHA 1701108View commit details
Commits on May 7, 2024
-
Add InlineMe to Modules.combine(Module), as all callers to this metho…
…d can be simplified to just the input parameter. PiperOrigin-RevId: 631556426
Configuration menu - View commit details
-
Copy full SHA for e67faa9 - Browse repository at this point
Copy the full SHA e67faa9View commit details
Commits on May 8, 2024
-
If there is an error during HiddenClassDefiner class initialization, …
…record the state in a public boolean field. Change UnsafeClassDefiner to check HiddenClassDefiner state and set UNSAFE_DEFINER as null if there's an error. An IllegalStateException is thrown if HiddenClassDefiner.define() is called in that case. PiperOrigin-RevId: 631862800
Configuration menu - View commit details
-
Copy full SHA for 42fbaf5 - Browse repository at this point
Copy the full SHA 42fbaf5View commit details
Commits on May 10, 2024
-
Allow AnonymousClassDefiner class initializer complete normally if ru…
…nning on JDK >=17 with Unsafe.defineAnonymousClass removed. PiperOrigin-RevId: 632544907
Configuration menu - View commit details
-
Copy full SHA for 2b37f02 - Browse repository at this point
Copy the full SHA 2b37f02View commit details
Commits on May 20, 2024
-
Temporarily remove
@InlineMe
fromModules.combine(Module)
.PiperOrigin-RevId: 635570248
Configuration menu - View commit details
-
Copy full SHA for d492cd8 - Browse repository at this point
Copy the full SHA d492cd8View commit details
Commits on May 21, 2024
-
Temporarily remove
@InlineMe
fromModules.combine(Module)
.PiperOrigin-RevId: 635857202
Configuration menu - View commit details
-
Copy full SHA for e35efe7 - Browse repository at this point
Copy the full SHA e35efe7View commit details
Commits on Aug 5, 2024
-
PiperOrigin-RevId: 659586774
Configuration menu - View commit details
-
Copy full SHA for df10bed - Browse repository at this point
Copy the full SHA df10bedView commit details -
PiperOrigin-RevId: 659586785
Configuration menu - View commit details
-
Copy full SHA for 2418a65 - Browse repository at this point
Copy the full SHA 2418a65View commit details
Commits on Oct 24, 2024
-
Load the builtin Bazel java rules from @rules_java
PiperOrigin-RevId: 689368258
Configuration menu - View commit details
-
Copy full SHA for d83f677 - Browse repository at this point
Copy the full SHA d83f677View commit details
Commits on Nov 13, 2024
-
Add better Guice hints when using classes of the same name from diffe…
…rent packages. PiperOrigin-RevId: 696172862
Configuration menu - View commit details
-
Copy full SHA for 7b8cc46 - Browse repository at this point
Copy the full SHA 7b8cc46View commit details
Commits on Nov 15, 2024
-
Add Guice hints when the only difference between two types is when on…
…e is a wildcard type and the other is a non-wildcard type that is mentioned in the extends/super clause of the wildcard type (e.g. Optional<Foo> vs. Optional<? extends Foo>). PiperOrigin-RevId: 696949702
Configuration menu - View commit details
-
Copy full SHA for e032518 - Browse repository at this point
Copy the full SHA e032518View commit details