Latest Threat Research:SANDWORM_MODE: Shai-Hulud-Style npm Worm Hijacks CI Workflows and Poisons AI Toolchains.Details
Socket
Book a DemoInstallSign in
Socket

stomper

Package Overview
Dependencies
Maintainers
2
Versions
15
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

stomper - npm Package Compare versions

Comparing version
0.3.0
to
0.2.9
+9
-19
lib/stomper.egg-info/PKG-INFO
Metadata-Version: 1.1
Name: stomper
Version: 0.3.0
Version: 0.2.9
Summary: This is a transport neutral client implementation of the STOMP protocol.

@@ -86,4 +86,9 @@ Home-page: https://github.com/oisinmulvihill/stomper

This is the default version of the of STOMP used in stomper versions 0.3.x.
Ralph Bean has worked to add support for this version of STOMP. This will
become the default protocol used in stomper 0.3.x releases.
For now it can be used as follows::
import stomper.stomp_11 as stomper
* https://stomp.github.io/stomp-specification-1.1.html

@@ -94,9 +99,5 @@

This is no longer the default protocol version. To use it you can import it as
follows::
This is the default version of the of STOMP used in stomper versions 0.2.x.
The default will change in stomper versions 0.3.x.
import stomper.stomp_10 as stomper
This is the default version used in stomper version 0.2.x.
* https://stomp.github.io/stomp-specification-1.0.html

@@ -108,12 +109,2 @@

0.3.0
~~~~~
This release makes STOMP v1.1 the default protocol. To stick with STOMP v1.0
you can continue to use stomper v0.2.9 or change the import in your code to::
import stomper.stomp_10 as stomper
**Note** Any fixes to STOMP v1.0 will only be applied to version >= 0.3.
0.2.9

@@ -123,3 +114,2 @@ ~~~~~

Thanks to Ralph Bean for contributing the new protocol 1.1 support:
* https://github.com/oisinmulvihill/stomper/issues/6

@@ -126,0 +116,0 @@ * https://github.com/oisinmulvihill/stomper/pull/7

@@ -1,2 +0,4 @@

from stomp_11 import (
# TODO, someday switch this to stomp_11 when we trust that it works and is
# backwards compatible.
from stomp_10 import (
Engine,

@@ -8,3 +10,2 @@ Frame,

ack,
nack,
begin,

@@ -11,0 +12,0 @@ commit,

@@ -22,3 +22,3 @@ """

import stomper.stomp_10 as stomper
import stomper

@@ -25,0 +25,0 @@

@@ -22,4 +22,3 @@ """

import stomper
#.stomp_11 as stomper
import stomper.stomp_11 as stomper

@@ -26,0 +25,0 @@

Metadata-Version: 1.1
Name: stomper
Version: 0.3.0
Version: 0.2.9
Summary: This is a transport neutral client implementation of the STOMP protocol.

@@ -86,4 +86,9 @@ Home-page: https://github.com/oisinmulvihill/stomper

This is the default version of the of STOMP used in stomper versions 0.3.x.
Ralph Bean has worked to add support for this version of STOMP. This will
become the default protocol used in stomper 0.3.x releases.
For now it can be used as follows::
import stomper.stomp_11 as stomper
* https://stomp.github.io/stomp-specification-1.1.html

@@ -94,9 +99,5 @@

This is no longer the default protocol version. To use it you can import it as
follows::
This is the default version of the of STOMP used in stomper versions 0.2.x.
The default will change in stomper versions 0.3.x.
import stomper.stomp_10 as stomper
This is the default version used in stomper version 0.2.x.
* https://stomp.github.io/stomp-specification-1.0.html

@@ -108,12 +109,2 @@

0.3.0
~~~~~
This release makes STOMP v1.1 the default protocol. To stick with STOMP v1.0
you can continue to use stomper v0.2.9 or change the import in your code to::
import stomper.stomp_10 as stomper
**Note** Any fixes to STOMP v1.0 will only be applied to version >= 0.3.
0.2.9

@@ -123,3 +114,2 @@ ~~~~~

Thanks to Ralph Bean for contributing the new protocol 1.1 support:
* https://github.com/oisinmulvihill/stomper/issues/6

@@ -126,0 +116,0 @@ * https://github.com/oisinmulvihill/stomper/pull/7

@@ -78,4 +78,9 @@ =======

This is the default version of the of STOMP used in stomper versions 0.3.x.
Ralph Bean has worked to add support for this version of STOMP. This will
become the default protocol used in stomper 0.3.x releases.
For now it can be used as follows::
import stomper.stomp_11 as stomper
* https://stomp.github.io/stomp-specification-1.1.html

@@ -86,9 +91,5 @@

This is no longer the default protocol version. To use it you can import it as
follows::
This is the default version of the of STOMP used in stomper versions 0.2.x.
The default will change in stomper versions 0.3.x.
import stomper.stomp_10 as stomper
This is the default version used in stomper version 0.2.x.
* https://stomp.github.io/stomp-specification-1.0.html

@@ -100,12 +101,2 @@

0.3.0
~~~~~
This release makes STOMP v1.1 the default protocol. To stick with STOMP v1.0
you can continue to use stomper v0.2.9 or change the import in your code to::
import stomper.stomp_10 as stomper
**Note** Any fixes to STOMP v1.0 will only be applied to version >= 0.3.
0.2.9

@@ -115,3 +106,2 @@ ~~~~~

Thanks to Ralph Bean for contributing the new protocol 1.1 support:
* https://github.com/oisinmulvihill/stomper/issues/6

@@ -118,0 +108,0 @@ * https://github.com/oisinmulvihill/stomper/pull/7

@@ -14,3 +14,3 @@ """

ProjectUrl = "https://github.com/oisinmulvihill/stomper"
Version = '0.3.0'
Version = '0.2.9'
Author = 'Oisin Mulvihill'

@@ -17,0 +17,0 @@ AuthorEmail = 'oisin dot mulvihill at gmail com'