This project is mirrored from https://github.com/nats-io/nats.go.
Pull mirroring updated .
- May 26, 2022
-
-
Ivan Kozlovic authored
Release v1.16.0
-
Ivan Kozlovic authored
Signed-off-by: Ivan Kozlovic <ivan@synadia.com>
-
- May 25, 2022
-
-
Ivan Kozlovic authored
[ADDED] Stream RePublish and some ConsumerConfig new fields
-
Ivan Kozlovic authored
Namely for pull consumers: ability to override the replica count or storage type: ``` // Generally inherited by parent stream and other markers, now can be configured directly. Replicas int `json:"num_replicas"` // Force memory storage. MemoryStorage bool `json:"mem_storage,omitempty"` ``` For the stream, this new StreamConfig option: ``` // Allow republish of the message after being sequenced and stored. RePublish *SubjectMapping `json:"republish,omitempty"` ``` Where SubjectMapping is: ``` // SubjectMapping allows a source subject to be mapped to a destination subject for republishing. type SubjectMapping struct { Source string `json:"src,omitempty"` Destination string `json:"dest"` } ``` Signed-off-by: Ivan Kozlovic <ivan@synadia.com>
-
- May 10, 2022
-
-
Ivan Kozlovic authored
Add WS ProxyPath option
-
Ido Gold authored
-
- May 06, 2022
-
-
Phil Pennock authored
-
- May 05, 2022
-
-
Phil Pennock authored
Fix a spelling mistake which made it through to go docs. gospel 1.13.0 is now out, and it added features which let us remove some old words (eg, pluralizations of types we define), but it also errored out on seeing a comment in .words which used to be acceptable. So remove comments from .words and introduce .words.readme instead. We lose the section-introducer comments. Which is a shame.
-
- May 04, 2022
-
-
Ivan Kozlovic authored
Release v1.15.0
-
Ivan Kozlovic authored
Signed-off-by: Ivan Kozlovic <ivan@synadia.com>
-
Ido Gold authored
-
- May 03, 2022
-
-
Waldemar Quevedo authored
js: handle 408 fetch requests pending status
-
Waldemar Quevedo authored
Skip 408 errors thrown to client no wait + expires requests Signed-off-by: Waldemar Quevedo <wally@nats.io>
-
Ido Gold authored
-
Ido Gold authored
-
Ido Gold authored
-
- Apr 16, 2022
-
-
Ivan Kozlovic authored
Updated server version and adjusted tests
-
Ivan Kozlovic authored
Signed-off-by: Ivan Kozlovic <ivan@synadia.com>
-
Ivan Kozlovic authored
Change expected last sequence pub options to pointers
-
- Apr 15, 2022
-
-
Byron Ruth authored
Signed-off-by: Byron Ruth <b@devel.io>
-
- Apr 14, 2022
-
-
Byron Ruth authored
This allows for differentiating between the zero value and whether it was intentionally set to a sequence of zero. Signed-off-by: Byron Ruth <b@devel.io>
-
- Apr 12, 2022
-
-
Colin Sullivan authored
Add a MaxBytes configuration option to the Object Store
-
Colin Sullivan authored
Signed-off-by: Colin Sullivan <colin@synadia.com>
-
- Apr 08, 2022
-
-
Ivan Kozlovic authored
Release v1.14.0
-
Ivan Kozlovic authored
Signed-off-by: Ivan Kozlovic <ivan@synadia.com>
-
- Apr 07, 2022
-
-
Ivan Kozlovic authored
Proposal: Conditional delete and purge for KV
-
Ivan Kozlovic authored
Update usage for demo servers
-
Derek Collison authored
Signed-off-by: Derek Collison <derek@nats.io>
-
Ivan Kozlovic authored
Add a standard subscription [ci-skip]
-
Colin Sullivan authored
Signed-off-by: Colin Sullivan <colin@synadia.com>
-
Colin Sullivan authored
Signed-off-by: Colin Sullivan <colin@synadia.com>
-
- Apr 05, 2022
-
-
Waldemar Quevedo authored
Add test that disables reconnect buf
-
Waldemar Quevedo authored
Signed-off-by: Waldemar Quevedo <wally@nats.io>
-
- Apr 04, 2022
-
-
Ivan Kozlovic authored
Added BackOff helper method to set backoff through subOpts
-
Ivan Kozlovic authored
[FIXED] JetStream: check stream and consumer names
-
Ivan Kozlovic authored
Many APIs were not properly checking that the stream and/or consumer names were provided and valid (no "." in them), which could lead to requests being sent on a subject that the server has no interest on and no response was therefore sent to the client library, which would fail with a timeout/context deadline. Signed-off-by: Ivan Kozlovic <ivan@synadia.com>
-
Steve Hoeksema authored
-
- Mar 29, 2022
-
-
Waldemar Quevedo authored
Set async pub ack inflight pending default to 4K, add StallWait option.
-
Waldemar Quevedo authored
Signed-off-by: Waldemar Quevedo <wally@nats.io>
-
Waldemar Quevedo authored
Add ClientTrace struct for JS tracing
-