Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Release v1.110.2 - stagingmaster #10131

Merged
merged 4 commits into from
Jan 31, 2024
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
6 changes: 6 additions & 0 deletions packages/manager/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,13 @@ All notable changes to this project will be documented in this file.

The format is based on [Keep a Changelog](http://keepachangelog.com/) and this project adheres to [Semantic Versioning](http://semver.org/).

## [2024-01-31] - v1.110.2

### Changed:
- Remove VPC beta feedback link

## [2024-01-31] - v1.110.1

### Changed:
- Updated VPC flag for primary navigation

Expand Down
2 changes: 1 addition & 1 deletion packages/manager/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
"name": "linode-manager",
"author": "Linode",
"description": "The Linode Manager website",
"version": "1.110.1",
"version": "1.110.2",
"private": true,
"type": "module",
"bugs": {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -11,11 +11,7 @@ import { DocumentTitleSegment } from 'src/components/DocumentTitle';
import { EntityHeader } from 'src/components/EntityHeader/EntityHeader';
import { ErrorState } from 'src/components/ErrorState/ErrorState';
import { LandingHeader } from 'src/components/LandingHeader';
import {
VPC_DOCS_LINK,
VPC_FEEDBACK_FORM_URL,
VPC_LABEL,
} from 'src/features/VPCs/constants';
import { VPC_DOCS_LINK, VPC_LABEL } from 'src/features/VPCs/constants';
import { useRegionsQuery } from 'src/queries/regions';
import { useVPCQuery } from 'src/queries/vpcs';
import { truncate } from 'src/utilities/truncate';
Expand Down Expand Up @@ -112,7 +108,6 @@ const VPCDetail = () => {
labelOptions: { noCap: true },
pathname: `/vpcs/${vpc.label}`,
}}
betaFeedbackLink={VPC_FEEDBACK_FORM_URL}
docsLabel="Docs"
docsLink={VPC_DOCS_LINK}
/>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -13,11 +13,7 @@ import { TableCell } from 'src/components/TableCell';
import { TableHead } from 'src/components/TableHead';
import { TableRow } from 'src/components/TableRow';
import { TableSortCell } from 'src/components/TableSortCell';
import {
VPC_DOCS_LINK,
VPC_FEEDBACK_FORM_URL,
VPC_LABEL,
} from 'src/features/VPCs/constants';
import { VPC_DOCS_LINK, VPC_LABEL } from 'src/features/VPCs/constants';
import { useOrder } from 'src/hooks/useOrder';
import { usePagination } from 'src/hooks/usePagination';
import { useVPCsQuery } from 'src/queries/vpcs';
Expand Down Expand Up @@ -96,7 +92,6 @@ const VPCLanding = () => {
return (
<>
<LandingHeader
betaFeedbackLink={VPC_FEEDBACK_FORM_URL}
createButtonText="Create VPC"
docsLink={VPC_DOCS_LINK}
onButtonClick={createVPC}
Expand Down
Loading