Skip to content
This repository was archived by the owner on Mar 11, 2026. It is now read-only.

chore(deps): update dependency @google-cloud/pubsub to ^0.23.0#367

Merged
JustinBeckwith merged 1 commit intomasterfrom
renovate/google-cloud-pubsub-0.x
Jan 18, 2019
Merged

chore(deps): update dependency @google-cloud/pubsub to ^0.23.0#367
JustinBeckwith merged 1 commit intomasterfrom
renovate/google-cloud-pubsub-0.x

Conversation

@renovate
Copy link
Copy Markdown
Contributor

@renovate renovate Bot commented Jan 18, 2019

This PR contains the following updates:

Package Type Update Change References
@​google-cloud/pubsub devDependencies minor ^0.22.0 -> ^0.23.0 source

Release Notes

googleapis/nodejs-pubsub

v0.23.0

Compare Source

01-16-2019 13:09 PST

This release has breaking changes.

BREAKING: Topic#publisher() has been removed in favor of Topic#publish() (#​426)

Before

const publisher = topic.publisher(publishOptions);
await publisher.publish(Buffer.from('Hello, world!'));

After

topic.setPublishOptions(publishOptions);
await topic.publish(Buffer.from('Hello, world!'));
BREAKING: Subscription options have changed. (#​388)

Before

const subscription = topic.subscription('my-sub', {
  batching: {
    maxMilliseconds: 100,
  },
  flowControl: {
    maxBytes: os.freem() * 0.2,
    maxMessages: 100,
  },
  maxConnections: 5,
});

After

const subscription = topic.subscription('my-sub', {
  ackDeadline: 10,
  batching: {
    callOptions: {}, // gax call options
    maxMessages: 3000,
    maxMilliseconds: 100,
  },
  flowControl: {
    allowExcessMessages: true,
    maxBytes: os.freem() * 0.2,
    maxExtension: Infinity,
    maxMessages: 100
  },
  streamingOptions: {
    highWaterMark: 0,
    maxStreams: 5, // formerly known as maxConnections
    timeout: 60000 * 5, // 5 minutes
  }
});
New Features
  • feat(topic): create method for publishing json (#​430)
Dependencies
Documentation
  • docs(samples): correct publish retry settings (#​419)
  • docs: sync generated grpc message type docs
  • fix(docs): remove unused long running operations and IAM types
  • fix: modernize the sample tests (#​414)
Internal / Testing Changes
  • chore: update subscriber gapic
  • fix: add getSubscriberStub to synth file (#​425)
  • build: check broken links in generated docs (#​416)
  • chore(build): inject yoshi automation key (#​410)
  • chore: fix publish.sh permission +x (#​406)
  • fix(build): fix Kokoro release script (#​404)

Renovate configuration

📅 Schedule: "after 9am and before 3pm" (UTC).

🚦 Automerge: Disabled by config. Please merge this manually once you are satisfied.

♻️ Rebasing: Whenever PR is stale, or if you modify the PR title to begin with "rebase!".

🔕 Ignore: Close this PR and you won't be reminded about this update again.


  • If you want to rebase/retry this PR, check this box

This PR has been generated by Renovate Bot. View repository job log here.

@googlebot googlebot added the cla: yes This human has signed the Contributor License Agreement. label Jan 18, 2019
@JustinBeckwith JustinBeckwith added the kokoro:force-run Add this label to force Kokoro to re-run the tests. label Jan 18, 2019
@kokoro-team kokoro-team removed the kokoro:force-run Add this label to force Kokoro to re-run the tests. label Jan 18, 2019
@JustinBeckwith JustinBeckwith merged commit 2f0f992 into master Jan 18, 2019
@renovate renovate Bot deleted the renovate/google-cloud-pubsub-0.x branch January 18, 2019 17:52
Sign up for free to subscribe to this conversation on GitHub. Already have an account? Sign in.

Labels

cla: yes This human has signed the Contributor License Agreement.

Projects

None yet

Development

Successfully merging this pull request may close these issues.

3 participants