@feathersjs/transport-commons 5.0.0-pre.34 → 5.0.0-pre.36

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 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
+ # [5.0.0-pre.36](https://github.com/feathersjs/feathers/compare/v5.0.0-pre.35...v5.0.0-pre.36) (2023-01-29)
7
+
8
+ **Note:** Version bump only for package @feathersjs/transport-commons
9
+
10
+ # [5.0.0-pre.35](https://github.com/feathersjs/feathers/compare/v5.0.0-pre.34...v5.0.0-pre.35) (2023-01-12)
11
+
12
+ ### Features
13
+
14
+ - **generators:** Move core code generators to shared generators package ([#2982](https://github.com/feathersjs/feathers/issues/2982)) ([0328d22](https://github.com/feathersjs/feathers/commit/0328d2292153870bc43958f73d2c6f288a8cec17))
15
+
6
16
  # [5.0.0-pre.34](https://github.com/feathersjs/feathers/compare/v5.0.0-pre.33...v5.0.0-pre.34) (2022-12-14)
7
17
 
8
18
  ### Bug Fixes
package/LICENSE CHANGED
@@ -1,6 +1,6 @@
1
1
  The MIT License (MIT)
2
2
 
3
- Copyright (c) 2022 Feathers
3
+ Copyright (c) 2023 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
package/README.md CHANGED
@@ -8,6 +8,6 @@
8
8
 
9
9
  ## License
10
10
 
11
- Copyright (c) 2022 [Feathers contributors](https://github.com/feathersjs/feathers/graphs/contributors)
11
+ Copyright (c) 2023 [Feathers contributors](https://github.com/feathersjs/feathers/graphs/contributors)
12
12
 
13
13
  Licensed under the [MIT license](LICENSE).
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@feathersjs/transport-commons",
3
3
  "description": "Shared functionality for websocket providers",
4
- "version": "5.0.0-pre.34",
4
+ "version": "5.0.0-pre.36",
5
5
  "homepage": "https://feathersjs.com",
6
6
  "main": "lib/",
7
7
  "types": "lib/",
@@ -33,7 +33,7 @@
33
33
  },
34
34
  "scripts": {
35
35
  "prepublish": "npm run compile",
36
- "pack": "npm pack --pack-destination ../cli/test/build",
36
+ "pack": "npm pack --pack-destination ../generators/test/build",
37
37
  "compile": "shx rm -rf lib/ && tsc && npm run pack",
38
38
  "test": "npm run mocha",
39
39
  "mocha": "mocha --config ../../.mocharc.json --recursive test/**.test.ts test/**/*.test.ts"
@@ -54,9 +54,9 @@
54
54
  "*.js"
55
55
  ],
56
56
  "dependencies": {
57
- "@feathersjs/commons": "^5.0.0-pre.34",
58
- "@feathersjs/errors": "^5.0.0-pre.34",
59
- "@feathersjs/feathers": "^5.0.0-pre.34",
57
+ "@feathersjs/commons": "^5.0.0-pre.36",
58
+ "@feathersjs/errors": "^5.0.0-pre.36",
59
+ "@feathersjs/feathers": "^5.0.0-pre.36",
60
60
  "encodeurl": "^1.0.2",
61
61
  "lodash": "^4.17.21"
62
62
  },
@@ -64,11 +64,11 @@
64
64
  "@types/encodeurl": "^1.0.0",
65
65
  "@types/lodash": "^4.14.191",
66
66
  "@types/mocha": "^10.0.1",
67
- "@types/node": "^18.11.10",
68
- "mocha": "^10.1.0",
67
+ "@types/node": "^18.11.18",
68
+ "mocha": "^10.2.0",
69
69
  "shx": "^0.3.4",
70
70
  "ts-node": "^10.9.1",
71
- "typescript": "^4.9.3"
71
+ "typescript": "^4.9.4"
72
72
  },
73
- "gitHead": "42cca600d00f0b3b9d89fa79be30fcd46bc50132"
73
+ "gitHead": "9a107b463cc80d7f3c28553c908987e05b0b634a"
74
74
  }