{"payload":{"feedbackUrl":"https://github.com/orgs/community/discussions/53140","repo":{"id":1936771,"defaultBranch":"master","name":"truth","ownerLogin":"google","currentUserCanPush":false,"isFork":false,"isEmpty":false,"createdAt":"2011-06-22T18:55:12.000Z","ownerAvatar":"https://avatars.githubusercontent.com/u/1342004?v=4","public":true,"private":false,"isOrgOwned":true},"refInfo":{"name":"","listCacheKey":"v0:1720821004.0","currentOid":""},"activityList":{"items":[{"before":"8001995ca6f877064fafbd84dd6763ca93ed5594","after":null,"ref":"refs/heads/test_gh-pages_651881940","pushedAt":"2024-07-12T22:08:00.000Z","pushType":"branch_deletion","commitsCount":0,"pusher":{"login":"copybara-service[bot]","name":null,"path":"/apps/copybara-service","primaryAvatarUrl":"https://avatars.githubusercontent.com/in/44061?s=80&v=4"}},{"before":"cda816aba610f274d2e73b8ebc3613d6b1066c87","after":"8001995ca6f877064fafbd84dd6763ca93ed5594","ref":"refs/heads/gh-pages","pushedAt":"2024-07-12T22:07:59.000Z","pushType":"push","commitsCount":1,"pusher":{"login":"copybara-service[bot]","name":null,"path":"/apps/copybara-service","primaryAvatarUrl":"https://avatars.githubusercontent.com/in/44061?s=80&v=4"},"commit":{"message":"Update docs for version 1.4.4.\n\nRELNOTES=n/a\nPiperOrigin-RevId: 651897422","shortMessageHtmlLink":"Update docs for version 1.4.4."}},{"before":"5b4ed1b940ba11303e30980d8b5c03e04dcbb373","after":"8001995ca6f877064fafbd84dd6763ca93ed5594","ref":"refs/heads/test_gh-pages_651881940","pushedAt":"2024-07-12T22:07:58.000Z","pushType":"force_push","commitsCount":0,"pusher":{"login":"copybara-service[bot]","name":null,"path":"/apps/copybara-service","primaryAvatarUrl":"https://avatars.githubusercontent.com/in/44061?s=80&v=4"},"commit":{"message":"Update docs for version 1.4.4.\n\nRELNOTES=n/a\nPiperOrigin-RevId: 651897422","shortMessageHtmlLink":"Update docs for version 1.4.4."}},{"before":"312970400fd917900db84df55ec228aec1236e75","after":"5b4ed1b940ba11303e30980d8b5c03e04dcbb373","ref":"refs/heads/test_gh-pages_651881940","pushedAt":"2024-07-12T22:06:53.000Z","pushType":"force_push","commitsCount":0,"pusher":{"login":"copybara-service[bot]","name":null,"path":"/apps/copybara-service","primaryAvatarUrl":"https://avatars.githubusercontent.com/in/44061?s=80&v=4"},"commit":{"message":"Update docs for version 1.4.4.\n\nRELNOTES=n/a\nPiperOrigin-RevId: 651881940","shortMessageHtmlLink":"Update docs for version 1.4.4."}},{"before":"efa142afe046a82173124b18b096fcb0c3821389","after":"cda816aba610f274d2e73b8ebc3613d6b1066c87","ref":"refs/heads/gh-pages","pushedAt":"2024-07-12T21:50:55.000Z","pushType":"push","commitsCount":1,"pusher":{"login":"cpovirk","name":"Chris Povirk","path":"/cpovirk","primaryAvatarUrl":"https://avatars.githubusercontent.com/u/1703908?s=80&v=4"},"commit":{"message":"Release 1.4.4 javadoc pushed to gh-pages.","shortMessageHtmlLink":"Release 1.4.4 javadoc pushed to gh-pages."}},{"before":"ded0603eb83a9a03e0fa6f32b97a6a0340815ea0","after":"efa142afe046a82173124b18b096fcb0c3821389","ref":"refs/heads/gh-pages","pushedAt":"2024-07-12T21:48:37.000Z","pushType":"push","commitsCount":1,"pusher":{"login":"github-actions[bot]","name":null,"path":"/apps/github-actions","primaryAvatarUrl":"https://avatars.githubusercontent.com/in/15368?s=80&v=4"},"commit":{"message":"Latest javadoc on successful CI build auto-pushed to gh-pages.","shortMessageHtmlLink":"Latest javadoc on successful CI build auto-pushed to gh-pages."}},{"before":"e107aeadc83761211a48e5170eb0c64756a0c20f","after":null,"ref":"refs/heads/test_651780766","pushedAt":"2024-07-12T21:46:34.000Z","pushType":"branch_deletion","commitsCount":0,"pusher":{"login":"copybara-service[bot]","name":null,"path":"/apps/copybara-service","primaryAvatarUrl":"https://avatars.githubusercontent.com/in/44061?s=80&v=4"}},{"before":"8ac91a635a052472a224442f684948b43cfb7ed7","after":"e107aeadc83761211a48e5170eb0c64756a0c20f","ref":"refs/heads/master","pushedAt":"2024-07-12T21:46:32.000Z","pushType":"push","commitsCount":1,"pusher":{"login":"copybara-service[bot]","name":null,"path":"/apps/copybara-service","primaryAvatarUrl":"https://avatars.githubusercontent.com/in/44061?s=80&v=4"},"commit":{"message":"Annotate the rest of the main package (basically just the Java 8 subjects) for nullness.\n\nAnd move the `@NullMarked` annotation from individual classes up to the package.\n\nMotivation:\n- The annotating is about potentially making things nicer for callers (or any future J2KT use?).\n- Moving `@NullMarked` to the package is about saving Truth users from [a warning when running Error Prone with `--release 8`](https://github.com/google/truth/issues/1320): When `@NullMarked` appears on a _class_, Error Prone processes the entire `NullMarked` class in order to check whether `NullMarked` is `@Inherited`. This leads to `warning: unknown enum constant ElementType.MODULE` because `NullMarked` has `@Target(MODULE, ...)` but `MODULE` isn't available until Java 9. We'll also be fixing this on the Error Prone side, but we might as well work around it on the Truth side, too—and annotate the rest of Truth while we're at it.\n\n(In principle, I should now add `@NullUnmarked` to all of Truth's test classes, since they haven't been annotated. But doing so would have little to no effect in practice unless maybe IntelliJ recognizes `@NullUnmarked` (probably not now?) or we improve our nullness offerings in Error Prone. I'm planning to not bother, but let me know if I'm being overly lazy.)\n\nNote that this CL applies `@Nullable` to some assertion methods' parameters even though those assertions would always fail if the callers passed `null`. This follows a principle that we'd applied (albeit incompletely) in cl/516515683, which showed that such changes avoided producing build errors in existing, working code. The principle is the same as that discussed for `EqualsTester` in cl/578260904.\n\nFixes https://github.com/google/truth/issues/1320\n\nRELNOTES=Annotated the rest of the main package for nullness, and moved the `@NullMarked` annotation from individual classes up to the package to avoid [a warning under `--release 8`](https://github.com/google/truth/issues/1320).\nPiperOrigin-RevId: 651891918","shortMessageHtmlLink":"Annotate the rest of the main package (basically just the Java 8 subj…"}},{"before":"80f3a64262a773281652565e8398f47d1cf764ab","after":"e107aeadc83761211a48e5170eb0c64756a0c20f","ref":"refs/heads/test_651780766","pushedAt":"2024-07-12T21:46:31.000Z","pushType":"force_push","commitsCount":0,"pusher":{"login":"copybara-service[bot]","name":null,"path":"/apps/copybara-service","primaryAvatarUrl":"https://avatars.githubusercontent.com/in/44061?s=80&v=4"},"commit":{"message":"Annotate the rest of the main package (basically just the Java 8 subjects) for nullness.\n\nAnd move the `@NullMarked` annotation from individual classes up to the package.\n\nMotivation:\n- The annotating is about potentially making things nicer for callers (or any future J2KT use?).\n- Moving `@NullMarked` to the package is about saving Truth users from [a warning when running Error Prone with `--release 8`](https://github.com/google/truth/issues/1320): When `@NullMarked` appears on a _class_, Error Prone processes the entire `NullMarked` class in order to check whether `NullMarked` is `@Inherited`. This leads to `warning: unknown enum constant ElementType.MODULE` because `NullMarked` has `@Target(MODULE, ...)` but `MODULE` isn't available until Java 9. We'll also be fixing this on the Error Prone side, but we might as well work around it on the Truth side, too—and annotate the rest of Truth while we're at it.\n\n(In principle, I should now add `@NullUnmarked` to all of Truth's test classes, since they haven't been annotated. But doing so would have little to no effect in practice unless maybe IntelliJ recognizes `@NullUnmarked` (probably not now?) or we improve our nullness offerings in Error Prone. I'm planning to not bother, but let me know if I'm being overly lazy.)\n\nNote that this CL applies `@Nullable` to some assertion methods' parameters even though those assertions would always fail if the callers passed `null`. This follows a principle that we'd applied (albeit incompletely) in cl/516515683, which showed that such changes avoided producing build errors in existing, working code. The principle is the same as that discussed for `EqualsTester` in cl/578260904.\n\nFixes https://github.com/google/truth/issues/1320\n\nRELNOTES=Annotated the rest of the main package for nullness, and moved the `@NullMarked` annotation from individual classes up to the package to avoid [a warning under `--release 8`](https://github.com/google/truth/issues/1320).\nPiperOrigin-RevId: 651891918","shortMessageHtmlLink":"Annotate the rest of the main package (basically just the Java 8 subj…"}},{"before":null,"after":"312970400fd917900db84df55ec228aec1236e75","ref":"refs/heads/test_gh-pages_651881940","pushedAt":"2024-07-12T21:44:02.000Z","pushType":"branch_creation","commitsCount":0,"pusher":{"login":"copybara-service[bot]","name":null,"path":"/apps/copybara-service","primaryAvatarUrl":"https://avatars.githubusercontent.com/in/44061?s=80&v=4"},"commit":{"message":"Update docs for version 1.4.4.\n\nRELNOTES=n/a\nPiperOrigin-RevId: 651881940","shortMessageHtmlLink":"Update docs for version 1.4.4."}},{"before":"400ad8c7235e0d6982614bc3c1e100ba969535dc","after":"80f3a64262a773281652565e8398f47d1cf764ab","ref":"refs/heads/test_651780766","pushedAt":"2024-07-12T21:42:30.000Z","pushType":"force_push","commitsCount":0,"pusher":{"login":"copybara-service[bot]","name":null,"path":"/apps/copybara-service","primaryAvatarUrl":"https://avatars.githubusercontent.com/in/44061?s=80&v=4"},"commit":{"message":"Annotate the rest of the main package (basically just the Java 8 subjects) for nullness.\n\nAnd move the `@NullMarked` annotation from individual classes up to the package.\n\nMotivation:\n- The annotating is about potentially making things nicer for callers (or any future J2KT use?).\n- Moving `@NullMarked` to the package is about saving Truth users from [a warning when running Error Prone with `--release 8`](https://github.com/google/truth/issues/1320): When `@NullMarked` appears on a _class_, Error Prone processes the entire `NullMarked` class in order to check whether `NullMarked` is `@Inherited`. This leads to `warning: unknown enum constant ElementType.MODULE` because `NullMarked` has `@Target(MODULE, ...)` but `MODULE` isn't available until Java 9. We'll also be fixing this on the Error Prone side, but we might as well work around it on the Truth side, too—and annotate the rest of Truth while we're at it.\n\n(In principle, I should now add `@NullUnmarked` to all of Truth's test classes, since they haven't been annotated. But doing so would have little to no effect in practice unless maybe IntelliJ recognizes `@NullUnmarked` (probably not now?) or we improve our nullness offerings in Error Prone. I'm planning to not bother, but let me know if I'm being overly lazy.)\n\nNote that this CL applies `@Nullable` to some assertion methods' parameters even though those assertions would always fail if the callers passed `null`. This follows a principle that we'd applied (albeit incompletely) in cl/516515683, which showed that such changes avoided producing build errors in existing, working code. The principle is the same as that discussed for `EqualsTester` in cl/578260904.\n\nFixes https://github.com/google/truth/issues/1320\n\nRELNOTES=Annotated the rest of the main package for nullness, and moved the `@NullMarked` annotation from individual classes up to the package to avoid [a warning under `--release 8`](https://github.com/google/truth/issues/1320).\nPiperOrigin-RevId: 651780766","shortMessageHtmlLink":"Annotate the rest of the main package (basically just the Java 8 subj…"}},{"before":null,"after":"400ad8c7235e0d6982614bc3c1e100ba969535dc","ref":"refs/heads/test_651780766","pushedAt":"2024-07-12T17:46:29.000Z","pushType":"branch_creation","commitsCount":0,"pusher":{"login":"copybara-service[bot]","name":null,"path":"/apps/copybara-service","primaryAvatarUrl":"https://avatars.githubusercontent.com/in/44061?s=80&v=4"},"commit":{"message":"Annotate the rest of the main package (basically just the Java 8 subjects) for nullness.\n\nAnd move the `@NullMarked` annotation from individual classes up to the package.\n\nMotivation:\n- The annotating is about potentially making things nicer for callers (or any future J2KT use?).\n- Moving `@NullMarked` to the package is about saving Truth users from [a warning when running Error Prone with `--release 8`](https://github.com/google/truth/issues/1320): When `@NullMarked` appears on a _class_, Error Prone processes the entire `NullMarked` class in order to check whether `NullMarked` is `@Inherited`. This leads to `warning: unknown enum constant ElementType.MODULE` because `NullMarked` has `@Target(MODULE, ...)` but `MODULE` isn't available until Java 9. We'll also be fixing this on the Error Prone side, but we might as well work around it on the Truth side, too—and annotate the rest of Truth while we're at it.\n\n(In principle, I should now add `@NullUnmarked` to all of Truth's test classes, since they haven't been annotated. But doing so would have little to no effect in practice unless maybe IntelliJ recognizes `@NullUnmarked` (probably not now?) or we improve our nullness offerings in Error Prone. I'm planning to not bother, but let me know if I'm being overly lazy.)\n\nNote that this CL applies `@Nullable` to some assertion methods' parameters even though those assertions would always fail if the callers passed `null`. This follows a principle that we'd applied (albeit incompletely) in cl/516515683, which showed that such changes avoided producing build errors in existing, working code. The principle is the same as that discussed for `EqualsTester` in cl/578260904.\n\nFixes https://github.com/google/truth/issues/1320\n\nRELNOTES=Annotated the rest of the main package for nullness, and moved the `@NullMarked` annotation from individual classes up to the package to avoid [a warning under `--release 8`](https://github.com/google/truth/issues/1320).\nPiperOrigin-RevId: 651780766","shortMessageHtmlLink":"Annotate the rest of the main package (basically just the Java 8 subj…"}},{"before":"f0f057fc855b7706c63f62b18c58c155c9818e3a","after":"ded0603eb83a9a03e0fa6f32b97a6a0340815ea0","ref":"refs/heads/gh-pages","pushedAt":"2024-07-09T17:09:52.000Z","pushType":"push","commitsCount":1,"pusher":{"login":"github-actions[bot]","name":null,"path":"/apps/github-actions","primaryAvatarUrl":"https://avatars.githubusercontent.com/in/15368?s=80&v=4"},"commit":{"message":"Latest javadoc on successful CI build auto-pushed to gh-pages.","shortMessageHtmlLink":"Latest javadoc on successful CI build auto-pushed to gh-pages."}},{"before":"8ac91a635a052472a224442f684948b43cfb7ed7","after":null,"ref":"refs/heads/test_640481877","pushedAt":"2024-07-09T17:07:47.000Z","pushType":"branch_deletion","commitsCount":0,"pusher":{"login":"copybara-service[bot]","name":null,"path":"/apps/copybara-service","primaryAvatarUrl":"https://avatars.githubusercontent.com/in/44061?s=80&v=4"}},{"before":"99af8bef97c52f909b369a7f0b3157053e6ffb99","after":"8ac91a635a052472a224442f684948b43cfb7ed7","ref":"refs/heads/master","pushedAt":"2024-07-09T17:07:46.000Z","pushType":"push","commitsCount":1,"pusher":{"login":"copybara-service[bot]","name":null,"path":"/apps/copybara-service","primaryAvatarUrl":"https://avatars.githubusercontent.com/in/44061?s=80&v=4"},"commit":{"message":"Document that `truth-java8-extension` is obsolete.\n\nAlso, remove its `jspecify` dep. (But leave behind its Truth dep so that anyone who depends only on `truth-java8-extension` for `Truth`+`Truth8` still gets them.)\n\nI could probably further simplify in the pom's build config, but there's no compelling need.\n\nRELNOTES=n/a\nPiperOrigin-RevId: 650668773","shortMessageHtmlLink":"Document that truth-java8-extension is obsolete."}},{"before":"1b94ba35cf96097f8066bad209a1b8f7b3869637","after":"8ac91a635a052472a224442f684948b43cfb7ed7","ref":"refs/heads/test_640481877","pushedAt":"2024-07-09T17:07:44.000Z","pushType":"force_push","commitsCount":0,"pusher":{"login":"copybara-service[bot]","name":null,"path":"/apps/copybara-service","primaryAvatarUrl":"https://avatars.githubusercontent.com/in/44061?s=80&v=4"},"commit":{"message":"Document that `truth-java8-extension` is obsolete.\n\nAlso, remove its `jspecify` dep. (But leave behind its Truth dep so that anyone who depends only on `truth-java8-extension` for `Truth`+`Truth8` still gets them.)\n\nI could probably further simplify in the pom's build config, but there's no compelling need.\n\nRELNOTES=n/a\nPiperOrigin-RevId: 650668773","shortMessageHtmlLink":"Document that truth-java8-extension is obsolete."}},{"before":null,"after":"1b94ba35cf96097f8066bad209a1b8f7b3869637","ref":"refs/heads/test_640481877","pushedAt":"2024-07-09T17:02:44.000Z","pushType":"branch_creation","commitsCount":0,"pusher":{"login":"copybara-service[bot]","name":null,"path":"/apps/copybara-service","primaryAvatarUrl":"https://avatars.githubusercontent.com/in/44061?s=80&v=4"},"commit":{"message":"Document that `truth-java8-extension` is obsolete.\n\nAlso, remove its `jspecify` dep. (But leave behind its Truth dep so that anyone who depends only on `truth-java8-extension` for `Truth`+`Truth8` still gets them.)\n\nI could probably further simplify in the pom's build config, but there's no compelling need.\n\nRELNOTES=n/a\nPiperOrigin-RevId: 640481877","shortMessageHtmlLink":"Document that truth-java8-extension is obsolete."}},{"before":"e48fe36f55d4f4a2729447e12a5c073e8da46872","after":"f0f057fc855b7706c63f62b18c58c155c9818e3a","ref":"refs/heads/gh-pages","pushedAt":"2024-07-08T14:19:32.000Z","pushType":"push","commitsCount":1,"pusher":{"login":"github-actions[bot]","name":null,"path":"/apps/github-actions","primaryAvatarUrl":"https://avatars.githubusercontent.com/in/15368?s=80&v=4"},"commit":{"message":"Latest javadoc on successful CI build auto-pushed to gh-pages.","shortMessageHtmlLink":"Latest javadoc on successful CI build auto-pushed to gh-pages."}},{"before":"4592942ea6d1ba188d6d933f9bbf06d24cfb1281","after":null,"ref":"refs/heads/dependabot/maven/dependencies-c2f2d57f42","pushedAt":"2024-07-08T14:17:25.000Z","pushType":"branch_deletion","commitsCount":0,"pusher":{"login":"dependabot[bot]","name":null,"path":"/apps/dependabot","primaryAvatarUrl":"https://avatars.githubusercontent.com/in/29110?s=80&v=4"}},{"before":"54e548c9fe9bfe9032f36ef7669230369e327687","after":"99af8bef97c52f909b369a7f0b3157053e6ffb99","ref":"refs/heads/master","pushedAt":"2024-07-08T14:17:16.000Z","pushType":"push","commitsCount":1,"pusher":{"login":"copybara-service[bot]","name":null,"path":"/apps/copybara-service","primaryAvatarUrl":"https://avatars.githubusercontent.com/in/44061?s=80&v=4"},"commit":{"message":"Bump org.codehaus.mojo:animal-sniffer-maven-plugin from 1.23 to 1.24 in the dependencies group\n\nBumps the dependencies group with 1 update: [org.codehaus.mojo:animal-sniffer-maven-plugin](https://github.com/mojohaus/animal-sniffer).\n\nUpdates `org.codehaus.mojo:animal-sniffer-maven-plugin` from 1.23 to 1.24\n
\nRelease notes\n

Sourced from org.codehaus.mojo:animal-sniffer-maven-plugin's releases.

\n
\n

1.24

\n\n

🚀 New features and improvements

\n\n

📦 Dependency updates

\n\n

👻 Maintenance

\n\n

🔧 Build

\n\n
\n
\n
\nCommits\n\n
\n
\n\n[![Dependabot compatibility score](https://dependabot-badges.githubapp.com/badges/compatibility_score?dependency-name=org.codehaus.mojo:animal-sniffer-maven-plugin&package-manager=maven&previous-version=1.23&new-version=1.24)](https://docs.github.com/en/github/managing-security-vulnerabilities/about-dependabot-security-updates#about-compatibility-scores)\n\nDependabot 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`.\n\n[//]: # (dependabot-automerge-start)\n[//]: # (dependabot-automerge-end)\n\n---\n\n
\nDependabot commands and options\n
\n\nYou can trigger Dependabot actions by commenting on this PR:\n- `@dependabot rebase` will rebase this PR\n- `@dependabot recreate` will recreate this PR, overwriting any edits that have been made to it\n- `@dependabot merge` will merge this PR after your CI passes on it\n- `@dependabot squash and merge` will squash and merge this PR after your CI passes on it\n- `@dependabot cancel merge` will cancel a previously requested merge and block automerging\n- `@dependabot reopen` will reopen this PR if it is closed\n- `@dependabot close` will close this PR and stop Dependabot recreating it. You can achieve the same result by closing it manually\n- `@dependabot show ignore conditions` will show all of the ignore conditions of the specified dependency\n- `@dependabot ignore major version` will close this group update PR and stop Dependabot creating any more for the specific dependency's major version (unless you unignore this specific dependency's major version or upgrade to it yourself)\n- `@dependabot ignore minor version` will close this group update PR and stop Dependabot creating any more for the specific dependency's minor version (unless you unignore this specific dependency's minor version or upgrade to it yourself)\n- `@dependabot ignore ` will close this group update PR and stop Dependabot creating any more for the specific dependency (unless you unignore this specific dependency or upgrade to it yourself)\n- `@dependabot unignore ` will remove all of the ignore conditions of the specified dependency\n- `@dependabot unignore ` will remove the ignore condition of the specified dependency and ignore conditions\n\n
\n\nFixes #1318\n\nCOPYBARA_INTEGRATE_REVIEW=https://github.com/google/truth/pull/1318 from google:dependabot/maven/dependencies-c2f2d57f42 4592942ea6d1ba188d6d933f9bbf06d24cfb1281\nPiperOrigin-RevId: 650240127","shortMessageHtmlLink":"Bump org.codehaus.mojo:animal-sniffer-maven-plugin from 1.23 to 1.24 …"}},{"before":null,"after":"4592942ea6d1ba188d6d933f9bbf06d24cfb1281","ref":"refs/heads/dependabot/maven/dependencies-c2f2d57f42","pushedAt":"2024-07-08T07:14:44.000Z","pushType":"branch_creation","commitsCount":0,"pusher":{"login":"dependabot[bot]","name":null,"path":"/apps/dependabot","primaryAvatarUrl":"https://avatars.githubusercontent.com/in/29110?s=80&v=4"},"commit":{"message":"Bump org.codehaus.mojo:animal-sniffer-maven-plugin\n\nBumps the dependencies group with 1 update: [org.codehaus.mojo:animal-sniffer-maven-plugin](https://github.com/mojohaus/animal-sniffer).\n\n\nUpdates `org.codehaus.mojo:animal-sniffer-maven-plugin` from 1.23 to 1.24\n- [Release notes](https://github.com/mojohaus/animal-sniffer/releases)\n- [Commits](https://github.com/mojohaus/animal-sniffer/compare/1.23...animal-sniffer-1.24)\n\n---\nupdated-dependencies:\n- dependency-name: org.codehaus.mojo:animal-sniffer-maven-plugin\n dependency-type: direct:production\n update-type: version-update:semver-minor\n dependency-group: dependencies\n...\n\nSigned-off-by: dependabot[bot] ","shortMessageHtmlLink":"Bump org.codehaus.mojo:animal-sniffer-maven-plugin"}},{"before":"acb921acdeb607db321d96f369fa9b63a711ec91","after":"e48fe36f55d4f4a2729447e12a5c073e8da46872","ref":"refs/heads/gh-pages","pushedAt":"2024-07-01T14:27:25.000Z","pushType":"push","commitsCount":1,"pusher":{"login":"github-actions[bot]","name":null,"path":"/apps/github-actions","primaryAvatarUrl":"https://avatars.githubusercontent.com/in/15368?s=80&v=4"},"commit":{"message":"Latest javadoc on successful CI build auto-pushed to gh-pages.","shortMessageHtmlLink":"Latest javadoc on successful CI build auto-pushed to gh-pages."}},{"before":"291ada8a0dff155b64dcabab8ab8dab238ad113a","after":null,"ref":"refs/heads/dependabot/maven/dependencies-f63bd35751","pushedAt":"2024-07-01T14:25:25.000Z","pushType":"branch_deletion","commitsCount":0,"pusher":{"login":"dependabot[bot]","name":null,"path":"/apps/dependabot","primaryAvatarUrl":"https://avatars.githubusercontent.com/in/29110?s=80&v=4"}},{"before":"2183a144db938b8d0e64503fa992c7ad24a9d875","after":"54e548c9fe9bfe9032f36ef7669230369e327687","ref":"refs/heads/master","pushedAt":"2024-07-01T14:25:16.000Z","pushType":"push","commitsCount":1,"pusher":{"login":"copybara-service[bot]","name":null,"path":"/apps/copybara-service","primaryAvatarUrl":"https://avatars.githubusercontent.com/in/44061?s=80&v=4"},"commit":{"message":"Bump the dependencies group with 2 updates\n\nBumps the dependencies group with 2 updates: [com.google.protobuf:protobuf-java](https://github.com/protocolbuffers/protobuf) and [org.apache.maven.plugins:maven-project-info-reports-plugin](https://github.com/apache/maven-project-info-reports-plugin).\n\nUpdates `com.google.protobuf:protobuf-java` from 4.27.1 to 4.27.2\n
\nCommits\n\n
\n
\n\nUpdates `org.apache.maven.plugins:maven-project-info-reports-plugin` from 3.6.0 to 3.6.1\n
\nCommits\n\n
\n
\n\nDependabot 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`.\n\n[//]: # (dependabot-automerge-start)\n[//]: # (dependabot-automerge-end)\n\n---\n\n
\nDependabot commands and options\n
\n\nYou can trigger Dependabot actions by commenting on this PR:\n- `@dependabot rebase` will rebase this PR\n- `@dependabot recreate` will recreate this PR, overwriting any edits that have been made to it\n- `@dependabot merge` will merge this PR after your CI passes on it\n- `@dependabot squash and merge` will squash and merge this PR after your CI passes on it\n- `@dependabot cancel merge` will cancel a previously requested merge and block automerging\n- `@dependabot reopen` will reopen this PR if it is closed\n- `@dependabot close` will close this PR and stop Dependabot recreating it. You can achieve the same result by closing it manually\n- `@dependabot show ignore conditions` will show all of the ignore conditions of the specified dependency\n- `@dependabot ignore major version` will close this group update PR and stop Dependabot creating any more for the specific dependency's major version (unless you unignore this specific dependency's major version or upgrade to it yourself)\n- `@dependabot ignore minor version` will close this group update PR and stop Dependabot creating any more for the specific dependency's minor version (unless you unignore this specific dependency's minor version or upgrade to it yourself)\n- `@dependabot ignore ` will close this group update PR and stop Dependabot creating any more for the specific dependency (unless you unignore this specific dependency or upgrade to it yourself)\n- `@dependabot unignore ` will remove all of the ignore conditions of the specified dependency\n- `@dependabot unignore ` will remove the ignore condition of the specified dependency and ignore conditions\n\n
\n\nFixes #1316\n\nCOPYBARA_INTEGRATE_REVIEW=https://github.com/google/truth/pull/1316 from google:dependabot/maven/dependencies-f63bd35751 291ada8a0dff155b64dcabab8ab8dab238ad113a\nPiperOrigin-RevId: 648361211","shortMessageHtmlLink":"Bump the dependencies group with 2 updates"}},{"before":null,"after":"291ada8a0dff155b64dcabab8ab8dab238ad113a","ref":"refs/heads/dependabot/maven/dependencies-f63bd35751","pushedAt":"2024-07-01T07:33:28.000Z","pushType":"branch_creation","commitsCount":0,"pusher":{"login":"dependabot[bot]","name":null,"path":"/apps/dependabot","primaryAvatarUrl":"https://avatars.githubusercontent.com/in/29110?s=80&v=4"},"commit":{"message":"Bump the dependencies group with 2 updates\n\nBumps the dependencies group with 2 updates: [com.google.protobuf:protobuf-java](https://github.com/protocolbuffers/protobuf) and [org.apache.maven.plugins:maven-project-info-reports-plugin](https://github.com/apache/maven-project-info-reports-plugin).\n\n\nUpdates `com.google.protobuf:protobuf-java` from 4.27.1 to 4.27.2\n- [Release notes](https://github.com/protocolbuffers/protobuf/releases)\n- [Changelog](https://github.com/protocolbuffers/protobuf/blob/main/protobuf_release.bzl)\n- [Commits](https://github.com/protocolbuffers/protobuf/commits)\n\nUpdates `org.apache.maven.plugins:maven-project-info-reports-plugin` from 3.6.0 to 3.6.1\n- [Commits](https://github.com/apache/maven-project-info-reports-plugin/compare/maven-project-info-reports-plugin-3.6.0...maven-project-info-reports-plugin-3.6.1)\n\n---\nupdated-dependencies:\n- dependency-name: com.google.protobuf:protobuf-java\n dependency-type: direct:production\n update-type: version-update:semver-patch\n dependency-group: dependencies\n- dependency-name: org.apache.maven.plugins:maven-project-info-reports-plugin\n dependency-type: direct:production\n update-type: version-update:semver-patch\n dependency-group: dependencies\n...\n\nSigned-off-by: dependabot[bot] ","shortMessageHtmlLink":"Bump the dependencies group with 2 updates"}},{"before":"f6253dd21ac06132a88f7ad23cf620ed40668af2","after":"acb921acdeb607db321d96f369fa9b63a711ec91","ref":"refs/heads/gh-pages","pushedAt":"2024-06-28T16:07:35.000Z","pushType":"push","commitsCount":1,"pusher":{"login":"github-actions[bot]","name":null,"path":"/apps/github-actions","primaryAvatarUrl":"https://avatars.githubusercontent.com/in/15368?s=80&v=4"},"commit":{"message":"Latest javadoc on successful CI build auto-pushed to gh-pages.","shortMessageHtmlLink":"Latest javadoc on successful CI build auto-pushed to gh-pages."}},{"before":"2183a144db938b8d0e64503fa992c7ad24a9d875","after":null,"ref":"refs/heads/test_457020479","pushedAt":"2024-06-28T16:05:30.000Z","pushType":"branch_deletion","commitsCount":0,"pusher":{"login":"copybara-service[bot]","name":null,"path":"/apps/copybara-service","primaryAvatarUrl":"https://avatars.githubusercontent.com/in/44061?s=80&v=4"}},{"before":"7e9fc7aec13385fdc34afc13db0220d99a9b6c5a","after":"2183a144db938b8d0e64503fa992c7ad24a9d875","ref":"refs/heads/master","pushedAt":"2024-06-28T16:05:28.000Z","pushType":"push","commitsCount":1,"pusher":{"login":"copybara-service[bot]","name":null,"path":"/apps/copybara-service","primaryAvatarUrl":"https://avatars.githubusercontent.com/in/44061?s=80&v=4"},"commit":{"message":"Migrate from legacy com.google.gwt to org.gwtproject.\n\norg.gwtproject already has a 2.11.0 release available, which I'm not upgrading to in this CL. I'll leave that to Dependabot (and future semi-automated Guava version bumps).\n\nSee https://github.com/google/auto/pull/1342#issuecomment-1165230080\n\nRELNOTES=n/a\nPiperOrigin-RevId: 647700630","shortMessageHtmlLink":"Migrate from legacy com.google.gwt to org.gwtproject."}},{"before":"8e5ae0b0c78c5c305e2776c936ee04d18373ccca","after":"2183a144db938b8d0e64503fa992c7ad24a9d875","ref":"refs/heads/test_457020479","pushedAt":"2024-06-28T16:05:27.000Z","pushType":"force_push","commitsCount":0,"pusher":{"login":"copybara-service[bot]","name":null,"path":"/apps/copybara-service","primaryAvatarUrl":"https://avatars.githubusercontent.com/in/44061?s=80&v=4"},"commit":{"message":"Migrate from legacy com.google.gwt to org.gwtproject.\n\norg.gwtproject already has a 2.11.0 release available, which I'm not upgrading to in this CL. I'll leave that to Dependabot (and future semi-automated Guava version bumps).\n\nSee https://github.com/google/auto/pull/1342#issuecomment-1165230080\n\nRELNOTES=n/a\nPiperOrigin-RevId: 647700630","shortMessageHtmlLink":"Migrate from legacy com.google.gwt to org.gwtproject."}},{"before":"91aa4eea86caaef2e0078d582cbe3511e6a38021","after":"8e5ae0b0c78c5c305e2776c936ee04d18373ccca","ref":"refs/heads/test_457020479","pushedAt":"2024-06-28T15:41:26.000Z","pushType":"force_push","commitsCount":0,"pusher":{"login":"copybara-service[bot]","name":null,"path":"/apps/copybara-service","primaryAvatarUrl":"https://avatars.githubusercontent.com/in/44061?s=80&v=4"},"commit":{"message":"Migrate from legacy com.google.gwt to org.gwtproject.\n\norg.gwtproject already has a 2.11.0 release available, which I'm not upgrading to in this CL. I'll leave that to Dependabot (and future semi-automated Guava version bumps).\n\nSee https://github.com/google/auto/pull/1342#issuecomment-1165230080\n\nRELNOTES=n/a\nPiperOrigin-RevId: 457020479","shortMessageHtmlLink":"Migrate from legacy com.google.gwt to org.gwtproject."}}],"hasNextPage":true,"hasPreviousPage":false,"activityType":"all","actor":null,"timePeriod":"all","sort":"DESC","perPage":30,"cursor":"djE6ks8AAAAEfkJXzQA","startCursor":null,"endCursor":null}},"title":"Activity · google/truth"}