Skip to content

Commit

Permalink
[1.139.*] Pre-release merge (#581)
Browse files Browse the repository at this point in the history
  • Loading branch information
tramline-github[bot] authored Jun 5, 2024
2 parents f30633d + b0c6806 commit 0b140ba
Show file tree
Hide file tree
Showing 5 changed files with 15 additions and 8 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/code_quality_analysis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ jobs:
cache-read-only: true

- name: Initialize CodeQL
uses: github/codeql-action/init@f079b8493333aace61c81488f8bd40919487bd9f # v3.25.7
uses: github/codeql-action/init@2e230e8fe0ad3a14a340ad0815ddb96d599d2aff # v3.25.8
with:
languages: java
tools: latest
Expand All @@ -41,7 +41,7 @@ jobs:
./gradlew assembleDebug assembleInternal
- name: Perform CodeQL Analysis
uses: github/codeql-action/analyze@f079b8493333aace61c81488f8bd40919487bd9f # v3.25.7
uses: github/codeql-action/analyze@2e230e8fe0ad3a14a340ad0815ddb96d599d2aff # v3.25.8
with:
category: "/language:java"
mobsfscan:
Expand All @@ -62,6 +62,6 @@ jobs:
args: . --sarif --output results.sarif || true

- name: Upload mobsfscan report
uses: github/codeql-action/upload-sarif@f079b8493333aace61c81488f8bd40919487bd9f # v3.25.7
uses: github/codeql-action/upload-sarif@2e230e8fe0ad3a14a340ad0815ddb96d599d2aff # v3.25.8
with:
sarif_file: results.sarif
9 changes: 8 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,10 +7,16 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

## [Unreleased]

## [1.48.0] - 2024-06-05

### Added

- Swiping a post from left to right now offers a share action

### Fixed

- Try to workaround an infrequent crash when scrolling hottest/newest posts

### Changed

- Upgrade to Kotlin 2.0.0
Expand Down Expand Up @@ -432,7 +438,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

- Initial Play Store release

[Unreleased]: https://github.com/msfjarvis/compose-lobsters/compare/v1.47.0...HEAD
[Unreleased]: https://github.com/msfjarvis/compose-lobsters/compare/v1.48.0...HEAD
[1.48.0]: https://github.com/msfjarvis/compose-lobsters/compare/v1.47.0...v1.48.0
[1.47.0]: https://github.com/msfjarvis/compose-lobsters/compare/v1.46.0...v1.47.0
[1.46.0]: https://github.com/msfjarvis/compose-lobsters/compare/v1.45.0...v1.46.0
[1.45.0]: https://github.com/msfjarvis/compose-lobsters/compare/v1.44.0...v1.45.0
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -63,7 +63,7 @@ fun NetworkPosts(
LazyColumn(state = listState) {
items(
count = lazyPagingItems.itemCount,
key = lazyPagingItems.itemKey { it.shortId },
key = lazyPagingItems.itemKey { item -> "${item.shortId}-${item.hashCode()}" },
contentType = lazyPagingItems.itemContentType { "LobstersItem" },
) { index ->
val item = lazyPagingItems[index]
Expand Down
4 changes: 2 additions & 2 deletions android/version.properties
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
#
# This file was automatically generated by 'versioning-plugin'. DO NOT EDIT MANUALLY.
#
versioning-plugin.versionCode=14800
versioning-plugin.versionName=1.48.0-SNAPSHOT
versioning-plugin.versionCode=14900
versioning-plugin.versionName=1.49.0-SNAPSHOT
2 changes: 1 addition & 1 deletion gradle/libs.versions.toml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ junit = "5.10.2"
konvert = "3.2.1"
kotlin = "2.0.0"
kotlinResult = "2.0.0"
leakcanary = "3.0-alpha-7"
leakcanary = "3.0-alpha-8"
lifecycle = "2.8.1"
retrofit = "2.11.0"
richtext = "1.0.0-alpha01"
Expand Down

0 comments on commit 0b140ba

Please sign in to comment.