Releases: kamilkisiela/apollo-angular
Releases · kamilkisiela/apollo-angular
apollo-angular@7.1.2
Patch Changes
- #2289
d78cc8d
Thanks @richard-elastique! - Don't require a dependency on
React
apollo-angular@7.1.1
Minor changes
- #2226 Thanks @alessbell! - Exposes
watchFragment
method on theApolloBase
class.
Patch Changes
- #2286
dbd4f68
Thanks @PowerKiKi! - Permissions for release provenance
apollo-angular@7.0.2
Patch Changes
-
#2259
78f319a
Thanks @PowerKiKi! - dependencies updates:- Updated dependency
@angular/core@^17.0.0 || ^18.0.0
↗︎
(from^17.0.0
, inpeerDependencies
)
- Updated dependency
-
#2259
97fba6a
Thanks @PowerKiKi! - dependencies updates:- Updated dependency
@angular/core@^17.0.0 || ^18.0.0
↗︎
(from^17.0.0
, inpeerDependencies
)
- Updated dependency
-
#2259
29b9fdc
Thanks @PowerKiKi! - Allow Angular 18
apollo-angular@7.0.1
Patch Changes
- #2252
67ba1e8
Thanks @PowerKiKi! - ApolloClient does not delay the application becoming stable
apollo-angular@7.0.0
Major Changes
-
#2225
712205f
Thanks @PowerKiKi! - BREAKING use Typescript strict modeThis is breaking because:
ApolloBase.client
throws an error if no client has been created beforehand. The behavior now
matches the typing that always declared a client existed. In most cases, you should pass either
apolloOptions
orapolloNamedOptions
toApollo.constructor
to create the client immediately
upon construction.ApolloBase.query()
,ApolloBase.mutate()
andApolloBase.subscribe()
all have a new constraint
onV
. If you inherit from this class, you might need to adjust your typing.- Classes that inherit
Query
,Mutation
andSubscription
must declare thedocument
member.
This requirement always existed at runtime but was not enforced at compile time until now. If you
generated code, you have nothing to do. QueryRef.getLastResult()
andQueryRef.getLastError()
might returnundefined
. This was always
the case, but was typed incorrectly until now.pickFlag()
was dropped without any replacement.createPersistedQueryLink()
requires options. This was always the case but was typed incorrectly
until now.
apollo-angular@6.0.0
Major Changes
- #2093
fbd86daf
Thanks @PowerKiKi! - - Add Angular 17 Support- Drop support for Angular 14, 15 and 16
- Support for
ng add
schematics for standalone apps or module apps
Patch Changes
- #2093
e0bec09a
Thanks @PowerKiKi! - dependencies updates:- Updated dependency
@angular/core@^17.0.0
↗︎ (from
^14.0.0 || ^15.0.0 || ^16.0.0
, inpeerDependencies
)
- Updated dependency
apollo-angular@5.0.2
apollo-angular@5.0.1
Patch Changes
- #2065
78947ba5
Thanks @PowerKiKi! - dependencies updates:- Updated dependency
tslib@^2.6.2
↗︎ (from
^2.0.0
, independencies
)
- Updated dependency
apollo-angular@5.0.0
Major Changes
-
#2010
ea8b7034
Thanks @HendrikJanssen! - Support Angular 16This is a breaking change because support for node v14 must be dropped to follow Angular 16
requirements.