create-feathers 5.0.33 → 6.0.0-pre.0

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.
Files changed (3) hide show
  1. package/CHANGELOG.md +10 -0
  2. package/LICENSE +1 -2
  3. package/package.json +6 -3
package/CHANGELOG.md CHANGED
@@ -3,6 +3,16 @@
3
3
  All notable changes to this project will be documented in this file.
4
4
  See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
5
5
 
6
+ # [6.0.0-pre.0](https://github.com/feathersjs/feathers/compare/v5.0.34...v6.0.0-pre.0) (2025-08-30)
7
+
8
+ ### Features
9
+
10
+ - V6 packages refactor ([#3596](https://github.com/feathersjs/feathers/issues/3596)) ([364aab5](https://github.com/feathersjs/feathers/commit/364aab563542fc9d6dd96c1f5f48b146727d7d1e))
11
+
12
+ ## [5.0.34](https://github.com/feathersjs/feathers/compare/v5.0.33...v5.0.34) (2025-05-03)
13
+
14
+ **Note:** Version bump only for package create-feathers
15
+
6
16
  ## [5.0.33](https://github.com/feathersjs/feathers/compare/v5.0.32...v5.0.33) (2025-02-24)
7
17
 
8
18
  **Note:** Version bump only for package create-feathers
package/LICENSE CHANGED
@@ -1,6 +1,6 @@
1
1
  The MIT License (MIT)
2
2
 
3
- Copyright (c) 2024 Feathers Contributors
3
+ Copyright (c) 2025 Feathers Contributors
4
4
 
5
5
  Permission is hereby granted, free of charge, to any person obtaining a copy
6
6
  of this software and associated documentation files (the "Software"), to deal
@@ -19,4 +19,3 @@ AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
19
19
  LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
20
20
  OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
21
21
  SOFTWARE.
22
-
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "create-feathers",
3
3
  "description": "Create a new Feathers application",
4
- "version": "5.0.33",
4
+ "version": "6.0.0-pre.0",
5
5
  "homepage": "https://feathersjs.com",
6
6
  "bin": {
7
7
  "create-feathers": "./bin/create-feathers.js"
@@ -48,7 +48,10 @@
48
48
  "access": "public"
49
49
  },
50
50
  "dependencies": {
51
- "@feathersjs/cli": "^5.0.33"
51
+ "@feathersjs/cli": "^5.0.34"
52
52
  },
53
- "gitHead": "7094b3f569b12d817f9fb4be2144342d331878f4"
53
+ "gitHead": "9a11776aa26f56a4b448e3c0d25b90e661830ebf",
54
+ "devDependencies": {
55
+ "vitest": "^3.2.4"
56
+ }
54
57
  }