Skip to content

Commit 5e9237d

Browse files
authored
Merge pull request #41671 from github/repo-sync
Repo sync
2 parents e1e4109 + 68fa878 commit 5e9237d

File tree

8 files changed

+280
-117
lines changed

8 files changed

+280
-117
lines changed

data/tables/copilot/model-supported-clients.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -32,10 +32,10 @@
3232
- name: Claude Opus 4.5
3333
dotcom: true
3434
vscode: true
35-
vs: false
36-
eclipse: false
37-
xcode: false
38-
jetbrains: false
35+
vs: true
36+
eclipse: true
37+
xcode: true
38+
jetbrains: true
3939

4040
- name: Claude Sonnet 4
4141
dotcom: true

package-lock.json

Lines changed: 40 additions & 40 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -213,7 +213,7 @@
213213
"mdast-util-to-hast": "^13.2.1",
214214
"mdast-util-to-markdown": "2.1.2",
215215
"mdast-util-to-string": "^4.0.0",
216-
"next": "^16.0.1",
216+
"next": "^16.0.7",
217217
"ora": "^9.0.0",
218218
"parse5": "7.1.2",
219219
"quick-lru": "7.0.1",

src/landings/components/bespoke/BespokeLanding.tsx

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,7 @@ import { LandingHero } from '@/landings/components/shared/LandingHero'
44
import { ArticleGrid } from '@/landings/components/shared/LandingArticleGridWithFilter'
55
import { UtmPreserver } from '@/frame/components/UtmPreserver'
66
import { LandingCarousel } from '@/landings/components/shared/LandingCarousel'
7+
import { useMultiQueryParams } from '@/search/components/hooks/useMultiQueryParams'
78

89
export const BespokeLanding = () => {
910
const {
@@ -16,6 +17,10 @@ export const BespokeLanding = () => {
1617
includedCategories,
1718
landingType,
1819
} = useLandingContext()
20+
const { params, updateParams } = useMultiQueryParams({
21+
useHistory: true,
22+
excludeFromHistory: ['articles-filter'],
23+
})
1924

2025
return (
2126
<DefaultLayout>
@@ -29,6 +34,8 @@ export const BespokeLanding = () => {
2934
tocItems={tocItems}
3035
includedCategories={includedCategories}
3136
landingType={landingType}
37+
params={params}
38+
updateParams={updateParams}
3239
/>
3340
</div>
3441
</div>

src/landings/components/discovery/DiscoveryLanding.tsx

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,7 @@ import { LandingHero } from '@/landings/components/shared/LandingHero'
44
import { ArticleGrid } from '@/landings/components/shared/LandingArticleGridWithFilter'
55
import { LandingCarousel } from '@/landings/components/shared/LandingCarousel'
66
import { UtmPreserver } from '@/frame/components/UtmPreserver'
7+
import { useMultiQueryParams } from '@/search/components/hooks/useMultiQueryParams'
78

89
export const DiscoveryLanding = () => {
910
const {
@@ -16,6 +17,10 @@ export const DiscoveryLanding = () => {
1617
includedCategories,
1718
landingType,
1819
} = useLandingContext()
20+
const { params, updateParams } = useMultiQueryParams({
21+
useHistory: true,
22+
excludeFromHistory: ['articles-filter'],
23+
})
1924

2025
return (
2126
<DefaultLayout>
@@ -28,6 +33,8 @@ export const DiscoveryLanding = () => {
2833
tocItems={tocItems}
2934
includedCategories={includedCategories}
3035
landingType={landingType}
36+
params={params}
37+
updateParams={updateParams}
3138
/>
3239
</div>
3340
</div>

0 commit comments

Comments
 (0)