@weave-js/redis-transport 0.12.1 → 0.14.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.
package/CHANGELOG.md CHANGED
@@ -3,6 +3,30 @@
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
+ # [0.14.0](https://github.com/weave-microservices/weave/compare/@weave-js/redis-transport@0.12.1...@weave-js/redis-transport@0.14.0) (2023-05-04)
7
+
8
+
9
+ * Release Version 0.14.0 (#279) ([12a003c](https://github.com/weave-microservices/weave/commit/12a003c05b2960b20810fbbad496258b5d4b0606)), closes [#279](https://github.com/weave-microservices/weave/issues/279) [#276](https://github.com/weave-microservices/weave/issues/276) [#278](https://github.com/weave-microservices/weave/issues/278)
10
+
11
+
12
+ ### BREAKING CHANGES
13
+
14
+ * Removed http error codes from errors and added correct codes
15
+
16
+ * chore: published 0.13.0
17
+
18
+
19
+
20
+
21
+
22
+ # [0.13.0](https://github.com/weave-microservices/weave/compare/@weave-js/redis-transport@0.12.1...@weave-js/redis-transport@0.13.0) (2022-08-16)
23
+
24
+ **Note:** Version bump only for package @weave-js/redis-transport
25
+
26
+
27
+
28
+
29
+
6
30
  ## [0.12.1](https://github.com/weave-microservices/weave/compare/@weave-js/redis-transport@0.12.0...@weave-js/redis-transport@0.12.1) (2022-05-15)
7
31
 
8
32
  **Note:** Version bump only for package @weave-js/redis-transport
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@weave-js/redis-transport",
3
- "version": "0.12.1",
3
+ "version": "0.14.0",
4
4
  "description": "weave redis transport adapter module",
5
5
  "main": "lib/index.js",
6
6
  "scripts": {
@@ -20,10 +20,10 @@
20
20
  },
21
21
  "license": "MIT",
22
22
  "peerDependencies": {
23
- "@weave-js/core": ">=0.9.0"
23
+ "@weave-js/core": ">=0.13.0"
24
24
  },
25
25
  "devDependencies": {
26
- "@weave-js/core": "^0.12.1"
26
+ "@weave-js/core": "^0.14.0"
27
27
  },
28
28
  "jest": {
29
29
  "testEnvironment": "node",
@@ -33,8 +33,8 @@
33
33
  ]
34
34
  },
35
35
  "dependencies": {
36
- "@weave-js/utils": "^0.11.1",
36
+ "@weave-js/utils": "^0.13.0",
37
37
  "redis": "^3.1.2"
38
38
  },
39
- "gitHead": "3f9662a98caa08d32ba5a181cc5871318aaece23"
39
+ "gitHead": "c2f63481b2a72ae03a35682c9a6d12800f22dbf2"
40
40
  }
@@ -1,35 +0,0 @@
1
- {
2
- // Verwendet IntelliSense zum Ermitteln möglicher Attribute.
3
- // Zeigen Sie auf vorhandene Attribute, um die zugehörigen Beschreibungen anzuzeigen.
4
- // Weitere Informationen finden Sie unter https://go.microsoft.com/fwlink/?linkid=830387
5
- "version": "0.2.0",
6
- "configurations": [
7
-
8
- {
9
- "type": "node",
10
- "request": "launch",
11
- "name": "Jest All",
12
- "program": "${workspaceFolder}/node_modules/.bin/jest",
13
- "args": ["--runInBand"],
14
- "console": "integratedTerminal",
15
- "internalConsoleOptions": "neverOpen",
16
- "disableOptimisticBPs": true,
17
- "windows": {
18
- "program": "${workspaceFolder}/node_modules/jest/bin/jest",
19
- }
20
- },
21
- {
22
- "type": "node",
23
- "request": "launch",
24
- "name": "Jest Current File",
25
- "program": "${workspaceFolder}/node_modules/.bin/jest",
26
- "args": ["${relativeFile}"],
27
- "console": "integratedTerminal",
28
- "internalConsoleOptions": "neverOpen",
29
- "disableOptimisticBPs": true,
30
- "windows": {
31
- "program": "${workspaceFolder}/node_modules/jest/bin/jest",
32
- }
33
- }
34
- ]
35
- }