Skip to content

Commit 122874b

Browse files
Merge pull request #471 from apollographql/main
Create a new pull request by comparing changes across two branches
2 parents e7d1a5c + febe552 commit 122874b

File tree

41 files changed

+8948
-6135
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

41 files changed

+8948
-6135
lines changed

ROADMAP.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# 🔮 Apollo Client Ecosystem Roadmap
22

3-
**Last updated: 2025-12-17**
3+
**Last updated: 2026-01-07**
44

55
For up to date release notes, refer to the project's [Changelog](https://github.com/apollographql/apollo-client/blob/main/CHANGELOG.md).
66

@@ -19,7 +19,7 @@ For up to date release notes, refer to the project's [Changelog](https://github.
1919

2020
#### 4.1.0
2121

22-
_Release candidate - December 19th, 2025_
22+
_Release candidate - January 7th, 2026_
2323

2424
- Support for `@stream`
2525
- Add support for the `[email protected]` incremental delivery format
@@ -42,7 +42,7 @@ _No planned work_
4242

4343
### Apollo Client DevTools
4444

45-
_No planned work_
45+
- Support for inspecting Apollo Client instances in iframes
4646

4747
### Apollo Client React Framework Integrations
4848

config/jest.config.ts

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,6 @@ const defaults = {
2020
"ts-jest",
2121
{
2222
// just transpile, no type checking. We type-check in CI by running `tsc` directly.
23-
isolatedModules: true,
2423
tsconfig: join(import.meta.dirname, "..", "tsconfig.tests.json"),
2524
},
2625
],

docs/source/caching/advanced-topics.mdx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -92,7 +92,7 @@ You can also call `client.onResetStore` from your React components. This can be
9292
The `client.onResetStore` method's return value is a function you can call to unregister your callback:
9393
9494
```js {8-10,13}
95-
import { useApolloClient } from "@apollo/client";
95+
import { useApolloClient } from "@apollo/client/react";
9696

9797
function Foo() {
9898
const [reset, setReset] = useState(0);

docs/source/data/mutations.mdx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ If your application is built using TypeScript, we recommend reading the [TypeScr
2020
</Note>
2121

2222
This article assumes you're familiar with building basic GraphQL mutations. If you need a refresher, we recommend that you
23-
[read this guide](http://graphql.org/learn/queries/#mutations).
23+
[read this guide](https://graphql.org/learn/mutations/).
2424

2525
This article also assumes that you've already set up Apollo Client and have wrapped your React app in an `ApolloProvider` component. For help with those steps, [get started](../get-started/).
2626

docs/source/integrations/integrations.mdx

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -34,3 +34,7 @@ An [Ember](http://emberjs.com/) integration is maintained by Josemar Luedke ([@j
3434
Web components are the browser-built-in component APIs. They are defined in a framework-agnostic way, using either vanilla JS or libraries like [Lit](https://lit.dev) or [`hybrids`](https://hybrids.js.org).
3535

3636
- [apollo-elements](https://github.com/apollo-elements/apollo-elements) includes support for Lit, `gluon`, `hybrids`, and Polymer, as well as providing class mixin functions so you can integrate Apollo into vanilla elements or any other web component library. Apollo Elements is maintained by Benny Powers ([@bennypowers](https://github.com/bennypowers)).
37+
38+
## Orbit for Apollo Client
39+
40+
[Orbit for Apollo Client](https://wassim-k.github.io/apollo-orbit/) provides state management abstractions built on top of Apollo Client for React and Angular. [@wassim-k](https://github.com/wassim-k) created and maintains the project.

0 commit comments

Comments
 (0)