Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
11 changes: 11 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,17 @@

PUT_CHANGELOG_HERE

# v1.0.0-beta.0
_2025-11-26_

- Add a publish argument to `CacheManager`/`ApolloStore` write operations (#265)
- Add `ReadOnlyNormalizedCache.sizeOfRecord` (#118)
- Disallow the same db file name to be used multiple times at the same time (#139)
- Use a mutex in `MemoryCache` even when there is no `nextCache` (#259)
- Default to a 4 MiB cursor window size (#268)
- Add some pagination validation (#261)
- Don't crash when encountering unknown fields (#258)

# v1.0.0-alpha.8
_2025-11-06_

Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -36,6 +36,6 @@ The Kdoc API reference can be found at:<br/>

## ⚠️ Disclaimer

During the alpha phase, the API is still subject to change, although we will try to make changes in non-breaking ways.
During the beta phase, the API is still subject to change, although we will try to make changes in non-breaking ways.

For now it is recommended to experiment with this library in non-critical projects/modules, or behind a feature flag.
2 changes: 1 addition & 1 deletion Writerside/topics/welcome.md
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ are added here instead. In the future, the main repository version will be depre

## Use in your project

> During the alpha phase, the API is still subject to change, although we will try to make changes in non-breaking ways.
> During the beta phase, the API is still subject to change, although we will try to make changes in non-breaking ways.
> For now it is recommended to experiment with this library in non-critical projects/modules, or behind a feature flag.

{style="warning"}
Expand Down
2 changes: 1 addition & 1 deletion Writerside/v.list
Original file line number Diff line number Diff line change
Expand Up @@ -2,5 +2,5 @@
<!DOCTYPE vars SYSTEM "https://resources.jetbrains.com/writerside/1.0/vars.dtd">
<vars>
<var name="product" value="Writerside" />
<var name="latest_version" instance="doc" value="1.0.0-alpha.8" />
<var name="latest_version" instance="doc" value="1.0.0-beta.0" />
</vars>
2 changes: 1 addition & 1 deletion librarian.root.properties
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ kdoc.olderVersions=
kdoc.artifactId=kdoc

pom.groupId=com.apollographql.cache
pom.version=1.0.0-alpha.9-SNAPSHOT
pom.version=1.0.0-beta.0
pom.description=Apollo Kotlin Normalized Cache
pom.vcsUrl=https://github.com/apollographql/apollo-kotlin-normalized-cache
pom.developer=Apollo Kotlin Normalized Cache contributors
Expand Down