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

[chore] Remove beta carrier metadata #296

Merged
merged 2 commits into from
Dec 4, 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
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
2 changes: 1 addition & 1 deletion examples
Submodule examples updated 515 files

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.