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.100.2 - staging → master #9611

Merged
merged 2 commits into from
Aug 30, 2023
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
7 changes: 7 additions & 0 deletions packages/manager/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +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/).

## [2023-08-30] - v1.100.2

### Fixed:

- Extra API calls for Linode Configs ([#9609](https://github.com/linode/manager/pull/9609))


## [2023-08-22] - v1.100.1

### Fixed:
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.100.1",
"version": "1.100.2",
"private": true,
"bugs": {
"url": "https://github.com/Linode/manager/issues"
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -63,7 +63,8 @@ export const LinodeRow = (props: Props) => {

// TODO: VPC - later if there is a way to directly get a linode's vpc, replace this
const { data: configs, isLoading: configsLoading } = useAllLinodeConfigsQuery(
id
id,
flags.vpc
);
const vpcId = getVPCId(configs ?? []);
const { data: vpc, isLoading: vpcLoading } = useVPCQuery(
Expand Down