Skip to content

Commit 931e99d

Browse files
Merge branch 'develop' into UIE-10778-la-badge-fix
2 parents 243ac3c + f62fd99 commit 931e99d

53 files changed

Lines changed: 943 additions & 355 deletions

File tree

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

packages/api-v4/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,7 @@
4141
"unpkg": "./lib/index.global.js",
4242
"dependencies": {
4343
"@linode/validation": "workspace:*",
44-
"axios": "~1.13.5",
44+
"axios": "~1.15.0",
4545
"ipaddr.js": "^2.0.0",
4646
"yup": "^1.4.0"
4747
},

packages/api-v4/src/linodes/types.ts

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -653,6 +653,11 @@ export interface CreateLinodeRequest {
653653
* @default false
654654
*/
655655
backups_enabled?: boolean | null;
656+
/**
657+
* When deploying from an Image, this field is optional, otherwise it is ignored.
658+
* This is used to set the boot size for the newly-created Linode.
659+
*/
660+
boot_size?: null | number;
656661
/**
657662
* If it is deployed from an Image or a Backup and you wish it to remain offline after deployment, set this to false.
658663
*
@@ -694,6 +699,11 @@ export interface CreateLinodeRequest {
694699
* Must be empty if Linode is configured to use new Linode Interfaces.
695700
*/
696701
ipv4?: string[];
702+
/**
703+
* When deploying from an Image, this field is optional, otherwise it is ignored.
704+
* This is used to set the kernel type for the newly-created Linode.
705+
*/
706+
kernel?: null | string;
697707
/**
698708
* The Linode's label is for display purposes only.
699709
* If no label is provided for a Linode, a default will be assigned.
Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
---
2+
"@linode/manager": Upcoming Features
3+
---
4+
5+
Allow Creating Secure Linodes without Root Password ([#13516](https://github.com/linode/manager/pull/13516))
Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
---
2+
"@linode/manager": Upcoming Features
3+
---
4+
5+
Private Image Sharing: implement Select Images table on Share Group Create page ([#13567](https://github.com/linode/manager/pull/13567))
Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
---
2+
"@linode/manager": Upcoming Features
3+
---
4+
5+
Private Image Sharing: include public images in images table in Linode Rebuild dialog ([#13568](https://github.com/linode/manager/pull/13568))
Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
---
2+
"@linode/manager": Tests
3+
---
4+
5+
Mock private image sharing flag to be disabled in Image tests ([#13572](https://github.com/linode/manager/pull/13572))
Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
---
2+
"@linode/manager": Upcoming Features
3+
---
4+
5+
Add databaseValkey feature flag ([#13573](https://github.com/linode/manager/pull/13573))
Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
---
2+
"@linode/manager": Fixed
3+
---
4+
5+
Destination Form: adjust tooltips' icons positions for Akamai Object Storage destination ([#13574](https://github.com/linode/manager/pull/13574))

packages/manager/cypress/e2e/core/account/restricted-user-details-pages.spec.ts

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -106,6 +106,7 @@ describe('restricted user details pages', () => {
106106
mockAppendFeatureFlags({
107107
apl: false,
108108
dbaasV2: { beta: false, enabled: false },
109+
privateImageSharing: false,
109110
});
110111
});
111112

packages/manager/cypress/e2e/core/images/create-image.spec.ts

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,5 @@
11
import { authenticate } from 'support/api/authentication';
2+
import { mockAppendFeatureFlags } from 'support/intercepts/feature-flags';
23
import { ui } from 'support/ui';
34
import { cleanUp } from 'support/util/cleanup';
45
import { createTestLinode } from 'support/util/linodes';
@@ -12,6 +13,10 @@ describe('create image (e2e)', () => {
1213
cleanUp(['linodes', 'images']);
1314
});
1415

16+
beforeEach(() => {
17+
mockAppendFeatureFlags({ privateImageSharing: false });
18+
});
19+
1520
it('create image from a linode', () => {
1621
cy.tag('method:e2e');
1722
const label = randomLabel();

0 commit comments

Comments
 (0)