Skip to content

Commit 57d59f7

Browse files
authored
Merge branch 'release-3.14' into jerel/query-return-deprecations
2 parents 1d1a592 + 96000b2 commit 57d59f7

File tree

2 files changed

+10
-3
lines changed

2 files changed

+10
-3
lines changed

.github/workflows/prerelease.yml

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -98,7 +98,12 @@ jobs:
9898

9999
- name: Tag release with next on npm
100100
if: steps.changesets.outcome == 'success'
101-
run: npm dist-tag add @apollo/client@${{ fromJson(steps.changesets.outputs.publishedPackages)[0].version }} next
101+
env:
102+
PUBLISHED: ${{ fromJson(steps.changesets.outputs.publishedPackages)[0].version }}
103+
run: |
104+
if NEXT=$(npm show @apollo/client@next version) node -e 'process.exit(require("semver").gt(process.env.PUBLISHED,process.env.NEXT)?0:1)'; then
105+
npm dist-tag add @apollo/client@${PUBLISHED} next;
106+
fi
102107
103108
- name: Send a Slack notification on publish
104109
if: steps.changesets.outcome == 'success'

ROADMAP.md

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

3-
**Last updated: 2025-06-11**
3+
**Last updated: 2025-06-25**
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

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

1818
### Apollo Client
1919

20-
#### 3.14.0 - July 3rd, 2025
20+
#### 3.14.0 - July 7th, 2025
2121
_Release candidate - June 27th, 2025_
2222

2323
- 4.0 compatibility release/deprecations
@@ -43,12 +43,14 @@ _No outstanding work_
4343
### Apollo Client DevTools
4444

4545
- Memory panel
46+
- Add compatibility for 4.0
4647

4748
_These changes will take longer than anticipated due to prioritization on Apollo Client 4.0_
4849

4950
### Apollo Client React Framework Integrations
5051

5152
- New/more robust documentation
53+
- Add compatibility for 4.0
5254

5355
**TanStack Start**
5456
- Support for Apollo Client Streaming in TanStack Router - will stay alpha

0 commit comments

Comments
 (0)