Skip to content

Commit

Permalink
- Remove beta carrier metadata service, unit tests, cassettes
Browse files Browse the repository at this point in the history
  • Loading branch information
nwithan8 committed Dec 4, 2023
1 parent 407f8dd commit 0f39736
Show file tree
Hide file tree
Showing 6 changed files with 1 addition and 322 deletions.
1 change: 1 addition & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,7 @@
- Removes `withCarbonOffset` parameter from `create`, `buy`, and `regenerateRates` functions of the Shipment service as EasyPost now offers Carbon Neutral shipments by default for free
- Removes the undocumented `createAndBuy` function from the Batch service. The proper usage is to create a batch first and buy it separately
- Changes return type of `all()` in webhook service from `WebhookCollection` to `a list of webhooks`
- `BetaCarrierMetadata` service has been removed. Please use `CarrierMetadata` instead.

## v6.9.1 (2023-11-16)

Expand Down
69 changes: 0 additions & 69 deletions src/main/java/com/easypost/service/BetaCarrierMetadataService.java

This file was deleted.

2 changes: 0 additions & 2 deletions src/main/java/com/easypost/service/EasyPostClient.java
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,6 @@ public class EasyPostClient {
public final AddressService address;
public final ApiKeyService apiKey;
public final BatchService batch;
public final BetaCarrierMetadataService betaCarrierMetadata;
public final BetaReferralCustomerService betaReferralCustomer;
public final BetaRateService betaRate;
public final BillingService billing;
Expand Down Expand Up @@ -130,7 +129,6 @@ public EasyPostClient(String apiKey, int connectTimeoutMilliseconds, int readTim
this.address = new AddressService(this);
this.apiKey = new ApiKeyService(this);
this.batch = new BatchService(this);
this.betaCarrierMetadata = new BetaCarrierMetadataService(this);
this.betaReferralCustomer = new BetaReferralCustomerService(this);
this.betaRate = new BetaRateService(this);
this.billing = new BillingService(this);
Expand Down

This file was deleted.

This file was deleted.

63 changes: 0 additions & 63 deletions src/test/java/com/easypost/BetaCarrierMetadataTest.java

This file was deleted.

0 comments on commit 0f39736

Please sign in to comment.