Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 4 additions & 4 deletions data/tables/copilot/model-supported-clients.yml
Original file line number Diff line number Diff line change
Expand Up @@ -32,10 +32,10 @@
- name: Claude Opus 4.5
dotcom: true
vscode: true
vs: false
eclipse: false
xcode: false
jetbrains: false
vs: true
eclipse: true
xcode: true
jetbrains: true

- name: Claude Sonnet 4
dotcom: true
Expand Down
80 changes: 40 additions & 40 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -213,7 +213,7 @@
"mdast-util-to-hast": "^13.2.1",
"mdast-util-to-markdown": "2.1.2",
"mdast-util-to-string": "^4.0.0",
"next": "^16.0.1",
"next": "^16.0.7",
"ora": "^9.0.0",
"parse5": "7.1.2",
"quick-lru": "7.0.1",
Expand Down
7 changes: 7 additions & 0 deletions src/landings/components/bespoke/BespokeLanding.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,7 @@ import { LandingHero } from '@/landings/components/shared/LandingHero'
import { ArticleGrid } from '@/landings/components/shared/LandingArticleGridWithFilter'
import { UtmPreserver } from '@/frame/components/UtmPreserver'
import { LandingCarousel } from '@/landings/components/shared/LandingCarousel'
import { useMultiQueryParams } from '@/search/components/hooks/useMultiQueryParams'

export const BespokeLanding = () => {
const {
Expand All @@ -16,6 +17,10 @@ export const BespokeLanding = () => {
includedCategories,
landingType,
} = useLandingContext()
const { params, updateParams } = useMultiQueryParams({
useHistory: true,
excludeFromHistory: ['articles-filter'],
})

return (
<DefaultLayout>
Expand All @@ -29,6 +34,8 @@ export const BespokeLanding = () => {
tocItems={tocItems}
includedCategories={includedCategories}
landingType={landingType}
params={params}
updateParams={updateParams}
/>
</div>
</div>
Expand Down
7 changes: 7 additions & 0 deletions src/landings/components/discovery/DiscoveryLanding.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,7 @@ import { LandingHero } from '@/landings/components/shared/LandingHero'
import { ArticleGrid } from '@/landings/components/shared/LandingArticleGridWithFilter'
import { LandingCarousel } from '@/landings/components/shared/LandingCarousel'
import { UtmPreserver } from '@/frame/components/UtmPreserver'
import { useMultiQueryParams } from '@/search/components/hooks/useMultiQueryParams'

export const DiscoveryLanding = () => {
const {
Expand All @@ -16,6 +17,10 @@ export const DiscoveryLanding = () => {
includedCategories,
landingType,
} = useLandingContext()
const { params, updateParams } = useMultiQueryParams({
useHistory: true,
excludeFromHistory: ['articles-filter'],
})

return (
<DefaultLayout>
Expand All @@ -28,6 +33,8 @@ export const DiscoveryLanding = () => {
tocItems={tocItems}
includedCategories={includedCategories}
landingType={landingType}
params={params}
updateParams={updateParams}
/>
</div>
</div>
Expand Down
Loading