@profplum700/etsy-v3-api-client 2.3.5 → 2.3.12
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/CHANGELOG.md +21 -13
- package/package.json +4 -3
package/CHANGELOG.md
CHANGED
|
@@ -5,18 +5,26 @@ All notable changes to this project will be documented in this file.
|
|
|
5
5
|
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
|
|
6
6
|
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
|
|
7
7
|
|
|
8
|
-
## [Unreleased]
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
-
|
|
14
|
-
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
|
|
19
|
-
|
|
8
|
+
## [Unreleased]
|
|
9
|
+
|
|
10
|
+
### Fixed
|
|
11
|
+
- **@profplum700/etsy-nextjs**: Fixed "createContext is not a function" build error in Next.js API routes
|
|
12
|
+
- **BREAKING**: Main entry point (`@profplum700/etsy-nextjs`) now exports only server-side code
|
|
13
|
+
- Client-side exports (`EtsyNextClientProvider`, `useEtsyNextClient`) must be imported from `@profplum700/etsy-nextjs/client`
|
|
14
|
+
- This prevents React Context code from being bundled with API routes during Next.js build
|
|
15
|
+
- Server imports from both `@profplum700/etsy-nextjs` and `@profplum700/etsy-nextjs/server` work identically
|
|
16
|
+
- See MIGRATION.md for upgrade instructions
|
|
17
|
+
|
|
18
|
+
## [2.3.1] - 2025-11-07
|
|
19
|
+
|
|
20
|
+
### Fixed
|
|
21
|
+
- **@profplum700/etsy-react**: replaced `@testing-library/react-hooks` with `@testing-library/react` in tests to remove stale React 16/17 peer dependency warnings.
|
|
22
|
+
- **@profplum700/etsy-react**: introduced a dedicated build tsconfig and Rollup configuration tweaks to eliminate TypeScript plugin warnings during bundling.
|
|
23
|
+
|
|
24
|
+
### Changed
|
|
25
|
+
- Bumped the root workspace plus `@profplum700/etsy-react`, `@profplum700/etsy-admin-ui`, `@profplum700/etsy-nextjs`, and `@profplum700/etsy-cli` to version `2.3.1` to publish the fix consistently across the monorepo.
|
|
26
|
+
|
|
27
|
+
## [2.3.0] - 2025-01-06
|
|
20
28
|
|
|
21
29
|
### 🎉 PHASE 3: Ecosystem Integration
|
|
22
30
|
|
|
@@ -418,4 +426,4 @@ For upgrade instructions and breaking changes, see the [Migration Guide](./MIGRA
|
|
|
418
426
|
## Support
|
|
419
427
|
|
|
420
428
|
- For bug reports and feature requests, please use [GitHub Issues](https://github.com/profplum700/etsy-v3-api-client/issues)
|
|
421
|
-
- For questions and discussions, see [GitHub Discussions](https://github.com/profplum700/etsy-v3-api-client/discussions)
|
|
429
|
+
- For questions and discussions, see [GitHub Discussions](https://github.com/profplum700/etsy-v3-api-client/discussions)
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@profplum700/etsy-v3-api-client",
|
|
3
|
-
"version": "2.3.
|
|
3
|
+
"version": "2.3.12",
|
|
4
4
|
"type": "module",
|
|
5
5
|
"description": "JavaScript/TypeScript client for the Etsy Open API v3 with OAuth 2.0 authentication",
|
|
6
6
|
"main": "dist/index.cjs",
|
|
@@ -102,9 +102,10 @@
|
|
|
102
102
|
"@eslint/js": "^9.31.0"
|
|
103
103
|
},
|
|
104
104
|
"scripts": {
|
|
105
|
-
"build": "
|
|
105
|
+
"build": "node scripts/build-all.mjs",
|
|
106
106
|
"build:core": "rollup -c",
|
|
107
|
-
"build:packages": "
|
|
107
|
+
"build:packages": "node scripts/build-all.mjs",
|
|
108
|
+
"build:legacy": "pnpm run build:core && pnpm --filter './packages/*' --workspace-concurrency=1 run build",
|
|
108
109
|
"build:watch": "rollup -c --watch",
|
|
109
110
|
"test": "jest && pnpm --filter './packages/*' run test",
|
|
110
111
|
"test:core": "jest",
|