chore: bump up apollographql/apollo-ios version to v1.25.0 #13687
+2
−2
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
This PR contains the following updates:
from: "1.23.0"
->from: "1.25.0"
1.23.0
->1.25.0
Release Notes
apollographql/apollo-ios (apollographql/apollo-ios)
v1.25.0
Compare Source
Fixed
SelectionSet
Equality (#3579):SelectionSet
equality now uses a narrowly scoped algorithm that only compares fields in the underlying data that are relevant to theSelectionSet
. This fixes a bug where a fragment read back from the graph doesn't match one created in memory by ensuring that equality checks for a fragment do not consider fields that are not included in the fragment, even if they are present in the data. Previous equality checks would simply compare the underlyingDataDict
dictionary which was incorrect. See PR #771. Thank you to @potrebic for raising the issue.Note: This change is fixing a long-standing bug in
SelectionSet
equality, however it may highlight previously hidden equality issues and appear to be a bug. If you're convinced this new equality behaviour exposes a bug please open a new issue and we can discuss it.v1.24.0
Compare Source
New
@fieldPolicy
directive. (#735): Added a new@fieldPolicy
directive that can be used to configure cache keys for reading data from the cache prior to making a network request for an operation. Cache keys can also be configured programatically, for more information see documentation here.Improvement
SQLiteError
. (#755): Adding the raw sqlite result code as an associated value on enum cases ofSQLiteError
.RootSelectionSet
convenience initializer from inline fragment. (#748): Added a convenience initializer toRootSelectionSet
that allows it to be initialized directly from anInlineFragment
, simplifying the conversion process between fragments and root entity types.dependentKeys
inGraphQLResult
public. (#758): MakingdependentKeys
public allows for implementing customApolloStoreSubscribers
similar toGraphQLQueryWatcher
. Without this it's extremely difficult to know when to react to cache changes for a query. _Thank you to @chrsmys for the contribution.Fixed
clientVersion
build delimiter. (#721): This changes the version/build delimiter from a-
to a+
. This now matches the semver specification of that additional metadata.Configuration
📅 Schedule: Branch creation - At any time (no schedule defined), Automerge - At any time (no schedule defined).
🚦 Automerge: Disabled by config. Please merge this manually once you are satisfied.
♻ Rebasing: Whenever PR becomes conflicted, or you tick the rebase/retry checkbox.
🔕 Ignore: Close this PR and you won't be reminded about these updates again.
This PR was generated by Mend Renovate. View the repository job log.