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
11 changes: 7 additions & 4 deletions packages/manager/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,11 @@ 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/).

## [2025-10-28] - v1.153.2

### Changed:

- Linode invoice US address ([#13019](https://github.com/linode/manager/pull/13019))

## [2025-10-22] - v1.153.1

Expand All @@ -15,12 +20,11 @@ The format is based on [Keep a Changelog](http://keepachangelog.com/) and this p

## [2025-10-21] - v1.153.0


### Added:

- Volume attached to state ([#12903](https://github.com/linode/manager/pull/12903))
- Profile Update client side validation ([#12963](https://github.com/linode/manager/pull/12963))
- IAM DX: useDelegationRole hook ([#12979](https://github.com/linode/manager/pull/12979))
- IAM DX: useDelegationRole hook ([#12979](https://github.com/linode/manager/pull/12979))

### Changed:

Expand Down Expand Up @@ -69,7 +73,6 @@ The format is based on [Keep a Changelog](http://keepachangelog.com/) and this p

## [2025-10-07] - v1.152.0


### Added:

- IAM RBAC: disable fields in the drawer ([#12892](https://github.com/linode/manager/pull/12892))
Expand All @@ -88,7 +91,7 @@ The format is based on [Keep a Changelog](http://keepachangelog.com/) and this p
- Getting started link on the volume details page ([#12904](https://github.com/linode/manager/pull/12904))
- ACLP: update default `ACLP Time Range Picker Preset` to `1 hour` ([#12915](https://github.com/linode/manager/pull/12915))
- Check Region VPC availability for IPv6 prefix lengths instead of hardcoded prefix lengths ([#12919](https://github.com/linode/manager/pull/12919))
- IAM Delegation: remove ProxyUserTable ([#12921](https://github.com/linode/manager/pull/12921))
- IAM Delegation: remove ProxyUserTable ([#12921](https://github.com/linode/manager/pull/12921))
- Add padding inside the ManagedDashboardCard component ([#12923](https://github.com/linode/manager/pull/12923))
- Assorted VPC IPv4 and VPC IPv6 copy ([#12924](https://github.com/linode/manager/pull/12924))
- IAM RBAC: replace grants with usePermission hook in Linodes ([#12932](https://github.com/linode/manager/pull/12932))
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.153.1",
"version": "1.153.2",
"private": true,
"type": "module",
"bugs": {
Expand Down
22 changes: 11 additions & 11 deletions packages/manager/src/features/Billing/PdfGenerator/utils.test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -74,20 +74,20 @@ describe('getRemitAddress', () => {
expect(result.entity).toBe('Linode');
});

it('should return Linode address with Akamai entity when country is US and using Akamai billing', () => {
const result = getRemitAddress('US', true);
expect(result).toEqual(ADDRESSES.linode);
expect(result.entity).toBe('Akamai Technologies, Inc.');
});
it('should return Akamai US address when country is CA or US and using Akamai billing', () => {
const result1 = getRemitAddress('CA', true);
expect(result1).toEqual(ADDRESSES.akamai.us);

it('should return Akamai US address when country is CA and using Akamai billing', () => {
const result = getRemitAddress('CA', true);
expect(result).toEqual(ADDRESSES.akamai.us);
const result2 = getRemitAddress('US', true);
expect(result2).toEqual(ADDRESSES.akamai.us);
});

it('should return Linode address when country is CA and not using Akamai billing', () => {
const result = getRemitAddress('CA', false);
expect(result).toEqual(ADDRESSES.linode);
it('should return Linode address when country is CA or US and not using Akamai billing', () => {
const result1 = getRemitAddress('CA', false);
expect(result1).toEqual(ADDRESSES.linode);

const result2 = getRemitAddress('US', false);
expect(result2).toEqual(ADDRESSES.linode);
});

it('should return Akamai international address for other countries when using Akamai billing', () => {
Expand Down
9 changes: 3 additions & 6 deletions packages/manager/src/features/Billing/PdfGenerator/utils.ts
Original file line number Diff line number Diff line change
Expand Up @@ -440,13 +440,10 @@ export const getRemitAddress = (country: string, isAkamaiBilling: boolean) => {
if (!isAkamaiBilling) {
return ADDRESSES.linode;
}
// M3-6218: Temporarily change "Remit To" address for US customers back to the Philly address
if (country === 'US') {
ADDRESSES.linode.entity = 'Akamai Technologies, Inc.';
return ADDRESSES.linode;
}
if (['CA'].includes(country)) {

if (['CA', 'US'].includes(country)) {
return ADDRESSES.akamai.us;
}

return ADDRESSES.akamai.international;
};
Loading