Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
21 commits
Select commit Hold shift + click to select a range
3cb75f6
Add the react, app-connect, and localizaton packages.
wcole1-godaddy Oct 6, 2025
e1a18b7
Changeset description
wcole1-godaddy Oct 6, 2025
80bc99b
Updating package versions.
wcole1-godaddy Oct 6, 2025
39c0c74
fix(app-connect): use req.path instead of req.url for canonical strin…
wcole1-godaddy Oct 6, 2025
cf96a6b
fix(root): ensure packages are built before running tests
wcole1-godaddy Oct 6, 2025
6ab4ac8
Remove .DS_Store files and add to .gitignore
wcole1-godaddy Oct 9, 2025
e3d6935
Update README.md
wcole1-godaddy Oct 13, 2025
c498818
Update packages/react/package.json
wcole1-godaddy Oct 13, 2025
34f1228
address pr feedback
wcole1-godaddy Oct 13, 2025
3943954
Remove internal references and update to public registry
wcole1-godaddy Oct 13, 2025
e423ac3
Remove .DS_Store files
wcole1-godaddy Oct 13, 2025
3248099
Remove dev and test environment references from README
wcole1-godaddy Oct 16, 2025
0fffcf4
Remove HOST lookup.
wcole1-godaddy Oct 22, 2025
fffb252
Update @godaddy/react changelog
wcole1-godaddy Oct 22, 2025
20297cf
Address some more PR feedback
wcole1-godaddy Oct 22, 2025
9c4a713
Merge main into godaddy-dev-js-libraries
wcole1-godaddy Oct 22, 2025
ee80427
Update lockfile
wcole1-godaddy Oct 22, 2025
699730c
add licenses to each package
wcole1-godaddy Oct 24, 2025
d25775f
chore: Remove unnecessary .DS_Store files from packages and subdirect…
rmarkins-godaddy Oct 24, 2025
33bfacd
Merge branch 'main' into godaddy-dev-js-libraries
wcole1-godaddy Oct 27, 2025
b3b744d
Revise AGENTS.md to enhance clarity and detail on monorepo usage, com…
wcole1-godaddy Oct 27, 2025
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
32 changes: 32 additions & 0 deletions .changeset/olive-bars-change.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,32 @@
---
"@godaddy/localizations": major
"@godaddy/app-connect": major
"@godaddy/react": major
---

This marks the first stable major release of our GoDaddy JavaScript libraries, representing a significant milestone in our platform development.

A comprehensive React component library for GoDaddy checkout experiences, featuring:

- Complete checkout session management with GraphQL integration
- Support for multiple payment providers (Stripe, PayPal)
- Comprehensive checkout features including billing/shipping addresses, tips, promotions, and tax collection
- Multi-environment support (dev, ote, prod, test)
- Built with modern React patterns using Radix UI components and Tailwind CSS

Internationalization support for GoDaddy checkout components:

- Structured localization framework covering all checkout aspects
- Initial French (France) localization with comprehensive translation coverage
- Extensible architecture for adding additional locales
- Seamless integration with the React component library

Essential platform integration tools for GoDaddy app developers:

- Cryptographic request verification using ECDSA-P256-SHA256
- Webhook subscription verification with HMAC-SHA256
- Framework-specific adapters for Express.js and Next.js
- Comprehensive error handling following GoDaddy standards
- Environment-based configuration support

These packages provide the foundation for building robust, secure, and internationalized applications on the GoDaddy platform.
13 changes: 13 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -33,3 +33,16 @@ node_modules

# Turbo artifacts
.turbo

dist

# Playwright
/test-results/
/playwright-report/
/blob-report/
/playwright/.cache/

schema.graphql

# macOS
.DS_Store
Loading