Commit graph

2984 commits

Author SHA1 Message Date
329322e8f3 chore: mark test resources as vendored 2024-10-17 15:13:37 +05:30
55cae9107d fix(deps): upgrade androidx.compose:compose-bom to 2024.10.00 2024-10-17 14:52:59 +05:30
renovate[bot]
f9f71315b0
fix(deps): update androidx 2024-10-16 20:00:28 +00:00
renovate[bot]
a1a51d3fea
fix(deps): update haze to v0.9.0-beta04.1 2024-10-16 16:27:22 +00:00
renovate[bot]
795759eded
fix(deps): update haze to v0.9.0-beta04 2024-10-16 08:41:45 +00:00
renovate[bot]
f5e8fab444
fix(deps): update dependency io.sentry.android.gradle:io.sentry.android.gradle.gradle.plugin to v4.12.0 2024-10-16 02:45:39 +00:00
renovate[bot]
43c4201fee
chore(deps): update plugin licensee to v1.12.0 2024-10-15 21:59:06 +00:00
renovate[bot]
53cf1e65fe
fix(deps): update dependency com.diffplug.spotless:spotless-plugin-gradle to v7.0.0.beta3 2024-10-15 20:54:30 +00:00
renovate[bot]
2dfc3414b5
fix(deps): update dependency com.slack.lint:slack-lint-checks to v0.8.2 2024-10-15 01:59:13 +00:00
renovate[bot]
c2256acc2a
chore(deps): update github/codeql-action action to v3.26.13 2024-10-14 21:47:14 +00:00
renovate[bot]
720ddbce38
chore(deps): update agp to v8.7.1 2024-10-14 19:39:44 +00:00
66331d21de
chore: refresh changelog
Signed-off-by: Harsh Shandilya <me@msfjarvis.dev>
2024-10-12 01:39:34 +05:30
renovate[bot]
b2c278428a
chore(deps): update plugin ksp to v2.0.21-1.0.25 2024-10-11 06:18:18 +00:00
renovate[bot]
75dd48b0dc
chore(deps): update kotlin and compose to v2.0.21 2024-10-10 10:34:09 +00:00
renovate[bot]
70a47e7162
fix(deps): update sentry to v7.15.0 (#679)
This PR contains the following updates:

| Package | Change | Age | Adoption | Passing | Confidence |
|---|---|---|---|---|---|
|
[io.sentry:sentry-bom](https://redirect.github.com/getsentry/sentry-java)
| `7.14.0` -> `7.15.0` |
[![age](https://developer.mend.io/api/mc/badges/age/maven/io.sentry:sentry-bom/7.15.0?slim=true)](https://docs.renovatebot.com/merge-confidence/)
|
[![adoption](https://developer.mend.io/api/mc/badges/adoption/maven/io.sentry:sentry-bom/7.15.0?slim=true)](https://docs.renovatebot.com/merge-confidence/)
|
[![passing](https://developer.mend.io/api/mc/badges/compatibility/maven/io.sentry:sentry-bom/7.14.0/7.15.0?slim=true)](https://docs.renovatebot.com/merge-confidence/)
|
[![confidence](https://developer.mend.io/api/mc/badges/confidence/maven/io.sentry:sentry-bom/7.14.0/7.15.0?slim=true)](https://docs.renovatebot.com/merge-confidence/)
|
|
[io.sentry:sentry-android](https://redirect.github.com/getsentry/sentry-java)
| `7.14.0` -> `7.15.0` |
[![age](https://developer.mend.io/api/mc/badges/age/maven/io.sentry:sentry-android/7.15.0?slim=true)](https://docs.renovatebot.com/merge-confidence/)
|
[![adoption](https://developer.mend.io/api/mc/badges/adoption/maven/io.sentry:sentry-android/7.15.0?slim=true)](https://docs.renovatebot.com/merge-confidence/)
|
[![passing](https://developer.mend.io/api/mc/badges/compatibility/maven/io.sentry:sentry-android/7.14.0/7.15.0?slim=true)](https://docs.renovatebot.com/merge-confidence/)
|
[![confidence](https://developer.mend.io/api/mc/badges/confidence/maven/io.sentry:sentry-android/7.14.0/7.15.0?slim=true)](https://docs.renovatebot.com/merge-confidence/)
|

---

### Release Notes

<details>
<summary>getsentry/sentry-java (io.sentry:sentry-bom)</summary>

###
[`v7.15.0`](https://redirect.github.com/getsentry/sentry-java/blob/HEAD/CHANGELOG.md#7150)

[Compare
Source](https://redirect.github.com/getsentry/sentry-java/compare/7.14.0...7.15.0)

##### Features

- Add support for `feedback` envelope header item type
([#&#8203;3687](https://redirect.github.com/getsentry/sentry-java/pull/3687))
- Add breadcrumb.origin field
([#&#8203;3727](https://redirect.github.com/getsentry/sentry-java/pull/3727))
- Session Replay: Add options to selectively mask/unmask views captured
in replay. The following options are available:
([#&#8203;3689](https://redirect.github.com/getsentry/sentry-java/pull/3689))
- `android:tag="sentry-mask|sentry-unmask"` in XML or
`view.setTag("sentry-mask|sentry-unmask")` in code tags
- if you already have a tag set for a view, you can set a tag by id:
`<tag android:id="@&#8203;id/sentry_privacy"
android:value="mask|unmask"/>` in XML or
`view.setTag(io.sentry.android.replay.R.id.sentry_privacy,
"mask|unmask")` in code
- `view.sentryReplayMask()` or `view.sentryReplayUnmask()` extension
functions
- mask/unmask `View`s of a certain type by adding fully-qualified
classname to one of the lists
`options.experimental.sessionReplay.addMaskViewClass()` or
`options.experimental.sessionReplay.addUnmaskViewClass()`. Note, that
all of the view subclasses/subtypes will be masked/unmasked as well
- For example, (this is already a default behavior) to mask all
`TextView`s and their subclasses (`RadioButton`, `EditText`, etc.):
`options.experimental.sessionReplay.addMaskViewClass("android.widget.TextView")`
- If you're using code obfuscation, adjust your proguard-rules
accordingly, so your custom view class name is not minified
- Session Replay: Support Jetpack Compose masking
([#&#8203;3739](https://redirect.github.com/getsentry/sentry-java/pull/3739))
- To selectively mask/unmask
[@&#8203;Composables](https://redirect.github.com/Composables), use
`Modifier.sentryReplayMask()` and `Modifier.sentryReplayUnmask()`
modifiers
- Session Replay: Mask `WebView`, `VideoView` and
`androidx.media3.ui.PlayerView` by default
([#&#8203;3775](https://redirect.github.com/getsentry/sentry-java/pull/3775))

##### Fixes

- Avoid stopping appStartProfiler after application creation
([#&#8203;3630](https://redirect.github.com/getsentry/sentry-java/pull/3630))
- Session Replay: Correctly detect dominant color for `TextView`s with
Spans
([#&#8203;3682](https://redirect.github.com/getsentry/sentry-java/pull/3682))
- Fix ensure Application Context is used even when SDK is initialized
via Activity Context
([#&#8203;3669](https://redirect.github.com/getsentry/sentry-java/pull/3669))
- Fix potential ANRs due to `Calendar.getInstance` usage in Breadcrumbs
constructor
([#&#8203;3736](https://redirect.github.com/getsentry/sentry-java/pull/3736))
- Fix potential ANRs due to default integrations
([#&#8203;3778](https://redirect.github.com/getsentry/sentry-java/pull/3778))
- Lazily initialize heavy `SentryOptions` members to avoid ANRs on app
start
([#&#8203;3749](https://redirect.github.com/getsentry/sentry-java/pull/3749))

*Breaking changes*:

- `options.experimental.sessionReplay.errorSampleRate` was renamed to
`options.experimental.sessionReplay.onErrorSampleRate`
([#&#8203;3637](https://redirect.github.com/getsentry/sentry-java/pull/3637))
- Manifest option `io.sentry.session-replay.error-sample-rate` was
renamed to `io.sentry.session-replay.on-error-sample-rate`
([#&#8203;3637](https://redirect.github.com/getsentry/sentry-java/pull/3637))
- Change `redactAllText` and `redactAllImages` to `maskAllText` and
`maskAllImages`
([#&#8203;3741](https://redirect.github.com/getsentry/sentry-java/pull/3741))

</details>

---

### Configuration

📅 **Schedule**: Branch creation - At any time (no schedule defined),
Automerge - At any time (no schedule defined).

🚦 **Automerge**: Enabled.

♻ **Rebasing**: Whenever PR is behind base branch, or you tick the
rebase/retry checkbox.

🔕 **Ignore**: Close this PR and you won't be reminded about these
updates again.

---

- [ ] <!-- rebase-check -->If you want to rebase/retry this PR, check
this box

---

This PR was generated by [Mend Renovate](https://mend.io/renovate/).
View the [repository job
log](https://developer.mend.io/github/msfjarvis/compose-lobsters).

<!--renovate-debug:eyJjcmVhdGVkSW5WZXIiOiIzOC4xMTQuMCIsInVwZGF0ZWRJblZlciI6IjM4LjExNC4wIiwidGFyZ2V0QnJhbmNoIjoibWFpbiIsImxhYmVscyI6W119-->

---------

Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
Co-authored-by: Harsh Shandilya <me@msfjarvis.dev>
2024-10-10 08:13:53 +00:00
renovate[bot]
3c9ce1d9b3
chore(deps): update actions/upload-artifact action to v4.4.3 2024-10-09 19:56:47 +00:00
6c012f93ce fix(common): restore support for collapsing child comments
Fixes: 86400c352b ("feat(comments): remember comment collapsed state")
2024-10-09 11:46:01 +05:30
renovate[bot]
43b6f9411e
chore(deps): update actions/upload-artifact action to v4.4.2 2024-10-08 19:35:24 +00:00
renovate[bot]
9cc6570693
chore(deps): update github/codeql-action action to v3.26.12 2024-10-08 00:28:30 +00:00
renovate[bot]
e8e1bc6be6
chore(deps): update actions/upload-artifact action to v4.4.1 2024-10-07 22:22:13 +00:00
renovate[bot]
4ec6efe4ff
chore(deps): update actions/checkout action to v4.2.1 2024-10-07 19:12:07 +00:00
renovate[bot]
a111289c85
chore(deps): update dependency de.mannodermaus.android-junit5 to v1.11.2.0 2024-10-05 04:27:53 +00:00
renovate[bot]
f33b3e784c
fix(deps): update haze to v0.9.0-beta03 2024-10-05 00:10:42 +00:00
renovate[bot]
1c1e69c184
chore(deps): update plugin dependencyanalysis to v2.1.4 2024-10-04 21:30:14 +00:00
d4fffee328 Merge branch 'remember-comment-collapsed-tate'
* remember-comment-collapsed-tate:
  feat(comments): remember comment collapsed state
2024-10-05 00:44:47 +05:30
renovate[bot]
812da8dd3d
fix(deps): update junit5 monorepo to v5.11.2 2024-10-04 14:30:33 +00:00
Ruben Quadros
86400c352b feat(comments): remember comment collapsed state
Remember the comment expanded/collapsed state when scrolling. Previously,
the state was remembered inside the `Node` composable. When the users scroll,
and `Node` re-composes, the state was being reset.

In this commit, we add the collapsed state into the `CommentNode`. This makes
sure that the state is retained even when the UI is re-composed.
2024-10-04 19:51:39 +05:30
0b549dde2d chore: refresh Lint baselines 2024-10-04 12:36:48 +05:30
62ac78bad6 fix(api): fix AvoidUsingNotNullOperator lint 2024-10-04 12:36:48 +05:30
c72ba1ab97 fix(build): avoid most project isolation violations 2024-10-04 12:25:04 +05:30
renovate[bot]
0151a4d1d6 fix(deps): update dependency com.slack.lint:slack-lint-checks to v0.8.1 2024-10-04 11:46:58 +05:30
renovate[bot]
8ccad5e259
chore(deps): update plugin dependencyanalysis to v2.1.3 2024-10-04 04:12:32 +00:00
renovate[bot]
aec252ed0a
chore(deps): update github/codeql-action action to v3.26.11 2024-10-03 21:59:49 +00:00
renovate[bot]
00c75588cd
chore(deps): update plugin dependencyanalysis to v2.1.2 2024-10-03 16:49:26 +00:00
renovate[bot]
61203b350a
fix(deps): update dependency com.slack.lint:slack-lint-checks to v0.8.0 2024-10-03 01:26:28 +00:00
renovate[bot]
498b165b68
fix(deps): update dependency com.slack.lint.compose:compose-lint-checks to v1.4.1 2024-10-02 22:18:37 +00:00
renovate[bot]
ea710454f4
fix(deps): update androidx 2024-10-02 18:46:21 +00:00
7d31979221 refactor(android): workaround ContentEmitterReturningValues lint 2024-10-02 20:26:04 +05:30
fc45376b39 fix(ci): remove deprecated option 2024-10-02 17:08:11 +05:30
renovate[bot]
e081e79820 fix(deps): update dependency com.slack.lint.compose:compose-lint-checks to v1.4.0
(cherry picked from commit 8c417f2400)
2024-10-02 17:08:11 +05:30
renovate[bot]
4a0786e9cb fix(deps): update haze to v0.9.0-beta02
(cherry picked from commit 0c8602230a)
2024-10-02 17:08:11 +05:30
d50e0e99b3 fix(build): enable Compose Compiler feature flags 2024-10-02 17:08:11 +05:30
bee721d9d8 fix(build): remove deprecated ComposeOptions 2024-10-02 01:23:53 +05:30
renovate[bot]
e00d6e5819
chore(deps): update agp to v8.7.0 2024-10-01 18:46:29 +00:00
renovate[bot]
9e4172baca
chore(deps): update github/codeql-action action to v3.26.10 2024-09-30 15:32:50 +00:00
renovate[bot]
1ba7c1a306
chore(deps): update plugin dependencyanalysis to v2.1.1 2024-09-28 00:50:36 +00:00
renovate[bot]
d27d1cbb56
chore(deps): update actions/checkout action to v4.2.0 2024-09-25 19:16:50 +00:00
renovate[bot]
490fbb5eb7
fix(deps): update junit5 monorepo to v5.11.1 2024-09-25 09:10:05 +00:00
renovate[bot]
65984053e1
chore(deps): update github/codeql-action action to v3.26.9 2024-09-24 20:01:34 +00:00
renovate[bot]
0a2879646c
chore(deps): update actions/setup-java action to v4.4.0 2024-09-24 14:30:41 +00:00