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 apps #1723

Merged
merged 1 commit into from
Feb 5, 2025
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
9 changes: 0 additions & 9 deletions .changeset/gold-dryers-talk.md

This file was deleted.

5 changes: 0 additions & 5 deletions .changeset/silly-months-clean.md

This file was deleted.

5 changes: 0 additions & 5 deletions .changeset/warm-meals-roll.md

This file was deleted.

10 changes: 10 additions & 0 deletions apps/avatax/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,15 @@
# app-avatax

## 1.12.8

### Patch Changes

- 899a0576: Changed behavior how tax rate is calculated. It was possible that AvaTax return a non-zero rate, while the actual tax was 0 (for example - product is normally taxable, but this transaction has tax exemption).

Previously, app returned original, non-zero tax rate as the response together with 0 tax.

Now, if taxableAmount or total net amount is 0, rate will be also zero

## 1.12.7

### Patch Changes
Expand Down
2 changes: 1 addition & 1 deletion apps/avatax/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "app-avatax",
"version": "1.12.7",
"version": "1.12.8",
"scripts": {
"build": " next build",
"check-types": "tsc --noEmit",
Expand Down
7 changes: 7 additions & 0 deletions apps/segment/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,12 @@
# segment

## 2.0.6

### Patch Changes

- 5cf7d541: Set Vercel function memory allocation to 256 MB and max duration to 15 seconds.
- fd3bb012: Added logger context and OTEL wrappers to tRPC API routes with Sentry support. After this change 5xx errors will be send to Sentry and we will see tRPC related endpoints in OTEL.

## 2.0.5

### Patch Changes
Expand Down
2 changes: 1 addition & 1 deletion apps/segment/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "segment",
"version": "2.0.5",
"version": "2.0.6",
"scripts": {
"build": "next build",
"check-types": "tsc --noEmit",
Expand Down
Loading