Skip to content

Commit 8ac1927

Browse files
authored
Merge branch 'main' into devin/1769798148-update-sdk-metadata-features
2 parents 7e03964 + d165789 commit 8ac1927

File tree

4 files changed

+10
-3
lines changed

4 files changed

+10
-3
lines changed

.release-please-manifest.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"lib/java-server-sdk-otel": "0.2.0",
33
"lib/java-server-sdk-redis-store": "3.1.0",
4-
"lib/shared/common": "2.2.0",
4+
"lib/shared/common": "2.2.1",
55
"lib/shared/internal": "1.6.1",
66
"lib/shared/test-helpers": "2.1.0",
77
"lib/sdk/server": "7.10.2"

lib/shared/common/CHANGELOG.md

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,13 @@
22

33
All notable changes to the project will be documented in this file. This project adheres to [Semantic Versioning](http://semver.org).
44

5+
## [2.2.1](https://github.com/launchdarkly/java-core/compare/launchdarkly-java-sdk-common-2.2.0...launchdarkly-java-sdk-common-2.2.1) (2026-01-30)
6+
7+
8+
### Bug Fixes
9+
10+
* Change IterableAsyncQueue to public access modifier ([#122](https://github.com/launchdarkly/java-core/issues/122)) ([88c4ae0](https://github.com/launchdarkly/java-core/commit/88c4ae00c258c3030bc8e6bf761f26d9ec857941))
11+
512
## [2.2.0](https://github.com/launchdarkly/java-core/compare/launchdarkly-java-sdk-common-2.1.2...launchdarkly-java-sdk-common-2.2.0) (2026-01-30)
613

714

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
11
#x-release-please-start-version
2-
version=2.2.0
2+
version=2.2.1
33
#x-release-please-end

lib/shared/common/src/main/java/com/launchdarkly/sdk/collections/IterableAsyncQueue.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@
1717
*
1818
* @param <T> the type of elements held in this queue
1919
*/
20-
class IterableAsyncQueue<T> {
20+
public class IterableAsyncQueue<T> {
2121
private final Object lock = new Object();
2222
private final LinkedList<T> queue = new LinkedList<>();
2323

0 commit comments

Comments
 (0)