rascal 20.1.0 → 20.1.1

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
@@ -1,5 +1,8 @@
1
1
  # Change Log
2
2
 
3
+ ## 20.1.1
4
+ - npm search algorithm has changed. Updating metadata accordingly.
5
+
3
6
  ## 20.1.0
4
7
  - Ignore and remove immediateNack header based on the xDeath header. See https://github.com/onebeyond/rascal/issues/237
5
8
 
package/README.md CHANGED
@@ -1,6 +1,6 @@
1
- # Rascal
1
+ # Rascal - A RabbitMQ / AMQP Client
2
2
 
3
- Rascal is a rich pub/sub wrapper around [amqplib](https://www.npmjs.com/package/amqplib).
3
+ Rascal is an advanced RabbitMQ / AMQP client built on [amqplib](https://www.npmjs.com/package/amqplib).
4
4
 
5
5
  [![NPM version](https://img.shields.io/npm/v/rascal.svg?style=flat-square)](https://www.npmjs.com/package/rascal)
6
6
  [![NPM downloads](https://img.shields.io/npm/dm/rascal.svg?style=flat-square)](https://www.npmjs.com/package/rascal)
@@ -12,7 +12,7 @@ Rascal is a rich pub/sub wrapper around [amqplib](https://www.npmjs.com/package/
12
12
 
13
13
  ## About
14
14
 
15
- Rascal is a rich pub/sub wrapper for the excellent [amqplib](https://www.npmjs.com/package/amqplib). One of the best things about amqplib is that it doesn't make assumptions about how you use it. Another is that it doesn't attempt to abstract away [AMQP Concepts](https://www.rabbitmq.com/tutorials/amqp-concepts.html). As a result the library offers a great deal of control and flexibility, but the onus is on you adopt appropriate patterns and configuration. You need to be aware that:
15
+ Rascal is an advanced RabbitMQ / AMQP client built on [amqplib](https://www.npmjs.com/package/amqplib). One of the best things about amqplib is that it doesn't make assumptions about how you use it. Another is that it doesn't attempt to abstract away [AMQP Concepts](https://www.rabbitmq.com/tutorials/amqp-concepts.html). As a result the library offers a great deal of control and flexibility, but the onus is on you adopt appropriate patterns and configuration. You need to be aware that:
16
16
 
17
17
  - Messages are not persistent by default and will be lost if your broker restarts
18
18
  - Messages that crash your app will be infinitely retried
@@ -601,7 +601,7 @@ Running automated tests against shared queues and exchanges is problematic. Mess
601
601
  }
602
602
  ```
603
603
 
604
- If you specify `"namespace" :true` Rascal will prefix the queues and exchanges it creates with a uuid. Alternatively you can specify your own namespace, `"namespace": "foo"`. Namespaces are also if you want to use a single vhost locally but multiple vhosts in other environments.
604
+ If you specify `"namespace" :true` Rascal will prefix the queues and exchanges it creates with a uuid. Alternatively you can specify your own namespace, `"namespace": "foo"`. Namespaces may also be helpful if you want to use a single vhost locally but multiple vhosts in other environments.
605
605
 
606
606
  #### Exchanges
607
607
 
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "rascal",
3
- "version": "20.1.0",
4
- "description": "A config driven wrapper for amqplib supporting multi-host connections, automatic error recovery, redelivery flood protection, transparent encryption / decryption, channel pooling and publication timeouts",
3
+ "version": "20.1.1",
4
+ "description": "An advanced RabbitMQ / AMQP client built on amqplib",
5
5
  "main": "index.js",
6
6
  "dependencies": {
7
7
  "async": "^3.2.4",
@@ -47,13 +47,10 @@
47
47
  "**/*.js": "eslint --fix"
48
48
  },
49
49
  "keywords": [
50
- "amqplib",
51
- "amqp",
52
50
  "rabbitmq",
53
- "callback",
54
- "promise",
55
- "await",
56
- "async"
51
+ "rabbit",
52
+ "amqplib",
53
+ "amqp"
57
54
  ],
58
55
  "repository": {
59
56
  "type": "git",