Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Update @slack/client to the latest version 🚀 #3

Open
wants to merge 1 commit into
base: master
Choose a base branch
from

Conversation

greenkeeper[bot]
Copy link

@greenkeeper greenkeeper bot commented Mar 8, 2018

☝️ Greenkeeper’s updated Terms of Service will come into effect on April 6th, 2018.

Version 4.0.0 of @slack/client was just published.

Dependency @slack/client
Current Version 3.16.0
Type dependency

The version 4.0.0 is not covered by your current version range.

If you don’t accept this pull request, your project will work just like it did before. However, you might be missing out on a bunch of new features, fixes and/or performance improvements from the dependency update.

It might be worth looking into these changes and trying to get this project onto the latest version of @slack/client.

If you have a solid test suite and good coverage, a passing build is a strong indicator that you can take advantage of these changes directly by merging the proposed change into your project. If the build fails or you don’t have such unconditional trust in your tests, this branch is a great starting point for you to work on the update.


Release Notes v4.0.0

Breaking Changes If you are upgrading from a previous version, follow our comprehensive
Migration Guide to learn how to transport
your app into the new, shiny, future!

WebClient

  • New apiCall(method, options) public API for making generic Web API calls.
  • Improved logging
  • Improved error management
  • Configuration for custom http Agent
  • Custom TLS configuration
  • Tons of performance improvements

RTMClient

  • Improved message queuing - No need to wait for client to connect before sending a message.
  • Lifecycle events driven by an all-new state machine
  • New keep-alive algorithm
  • Improved logging
  • Improved error management
  • Configuration for custom http Agent
  • Custom TLS configuration
  • Tons of performance improvements

General

  • TypeScript declarations available for all APIs 🎉
  • Updates all dependencies to their latest version
  • Drops support for node versions less than 6.0
Commits

The new version differs by 65 commits.

  • ce06b1e Merge pull request #473 from slackapi/dev-v4
  • cbd9d21 Merge branch 'master' into dev-v4
  • 8fac7d5 v4.0.0
  • b4f4f8b generate documentation
  • fa70a8d IncomingWebhook implementation
  • d621134 remove examples dir, export declaration files
  • 81d9b04 updates readme and guides for new API
  • 8db2e2c updates documentation generation instructions
  • fdf7b51 update finity, remove superfluous comments from jsdoc
  • 45cf343 basic doc generation is working
  • 8e4ae7e Merge branch 'dev-v4' into ts2jsdoc
  • 4ae19d5 adds TLSOptions, new RTMClient events for parity
  • cae00fa POC
  • abe015b adds migration guide content for WebClient
  • b8b4c63 code organization and pulling out comments to build the migration guide

There are 65 commits in total.

See the full diff

FAQ and help

There is a collection of frequently asked questions. If those don’t help, you can always ask the humans behind Greenkeeper.


Your Greenkeeper bot 🌴

greenkeeper bot added a commit that referenced this pull request Mar 15, 2018
@greenkeeper
Copy link
Author

greenkeeper bot commented Mar 15, 2018

Version 4.0.1 just got published.

Update to this version instead 🚀

Release Notes v4.0.1
  • Fixes crash in projects where "name" or "version" were not defined in the package.json file (#478) - thanks @wilhelmklopp @clavin @aoberoi
  • Fixes IncomingWebhook.send() to parse the response as text instead of JSON (#477) - thanks @aoberoi
  • Allows IncomingWebhook to be initialized without defaults (#479) - thanks @aoberoi
  • Allows WebClient to be initialized without a token in TypeScript (#482) - thanks @aoberoi
  • Allows unspecificed arguments to be used with WebClient method aliases and apiCall() (#484) - thanks @clavin
  • Exports method argument types as top level exports in the type declarations (#483) - thanks @aoberoi
  • Fixes inaccurate property type for as_user in ChatPostMessageArguments (#475) - thanks @harveyr
  • Improves the OAuthAccessArguments and OAuthTokenArguments types (#481) - thanks @aoberoi
Commits

The new version differs by 28 commits.

  • a206c3e Merge pull request #506 from slackapi/rel-v4.0.1
  • 8ce3b61 v4.0.1
  • 6902c4e Merge pull request #503 from aoberoi/oauth-argument-types
  • 501b0af update for boolean flag quirk
  • 945439a Merge pull request #504 from aoberoi/remove-pjson
  • 8e4da08 removes pjson and directly requires package.json, fixes #478
  • 7f8e5b7 more tightly specifies OAuthAccessArguments and OAuthTokenArguments, fixes #481
  • dee4b03 Merge pull request #502 from aoberoi/export-method-argument-types
  • 5ce84bb exports method argument types, fixes #483
  • 805dd6f Merge pull request #499 from aoberoi/webclient-no-token
  • 9d0801c remove nyc from integration tests, it broke codecov
  • 93d8350 allow integration test cases to take up to 4s before timing out
  • 99db715 allow WebClient token to be undefined, fixes #482
  • 70b2d74 lintstaged ignores test typescript
  • e6580bb adds typings-tester, and failing test for WebClient without token

There are 28 commits in total.

See the full diff

greenkeeper bot added a commit that referenced this pull request Mar 23, 2018
@greenkeeper
Copy link
Author

greenkeeper bot commented Mar 23, 2018

Version 4.1.0 just got published.

Update to this version instead 🚀

Release Notes v4.1.0
  • IncomingWebhook.send() works with both callbacks and Promises (#508) - thanks @clavin
  • Completes type defintions for all WebClient method arguments (#512) - thanks @clavin
  • Allows files.upload to work with Buffers (in addition to ReadableStreams) (#500) - thanks @KharitonOff
  • Allows any WebClient methods argument to work with binary types (#519) - thanks @clavin and @aoberoi
  • Fails when WebClient.apiCall() options don't look like the right type (#522) - thanks @aoberoi
  • Fixes TypeScript compile errors in node >=6 <=8 related to callbackify (#518) - thanks @aoberoi
  • Fixes mismatched parenthesis in RTMClient usage example documentation (#511) - thanks @parthsr
  • Adds examples directory back to the repository (#520) - thanks @aoberoi
Commits

The new version differs by 41 commits.

  • 3bed1fc Merge pull request #523 from slackapi/rel-v4.1.0
  • 8f541d1 v4.1.0
  • bc36e4b Merge branch 'master' into rel-v4.1.0
  • b3eabbf Merge pull request #522 from aoberoi/apicall-detect-bad-arguments
  • 36dc334 WebClient.apiCall() will detect some types of bad arguments, fixes #521
  • 7bf45d1 WIP v4.1.0
  • d42a3e5 Merge pull request #520 from aoberoi/restore-examples
  • 7246076 include examples of SDK usage, fixes #474
  • e9a5e2d Merge pull request #519 from aoberoi/clavin-feat-webclient-binary-data
  • 7a97825 always have a filename attribute for binary content in a multipart/form-data body
  • 5f00431 generalize the argument name in tests, be more specific about when filename is in a different part of the multipart body
  • aefe461 an alternative that doesn't involve creating a WebClientBinaryData class, fixes #452
  • b957324 Merge pull request #518 from aoberoi/tslib-node-dep
  • b940bee move @types/node from devDependencies to dependencies
  • e46bab9 Merge pull request #516 from aoberoi/KharitonOff-fix-issue-307

There are 41 commits in total.

See the full diff

greenkeeper bot added a commit that referenced this pull request Apr 26, 2018
@greenkeeper
Copy link
Author

greenkeeper bot commented Apr 26, 2018

Version 4.2.0 just got published.

Update to this version instead 🚀

Release Notes v4.2.0
  • Allows mrkdwn_in and callback_id fields in message attachments for formatting on attachment fields (#528) - thanks @DominikPalo
  • Fixes optionality of validate argument for channels.join method (#530) - thanks @DominikPalo
  • Adds the users.conversations method (#532) - thanks @DominikPalo
  • Fixes overwriting of default parameters after send() call (#535) - thanks @franckbrignoli
  • Fixes and adds logging for unexpected websocket close in StateMachine (#537) - thanks @shanedewael
Commits

The new version differs by 21 commits.

  • 7906dc9 Merge pull request #539 from shanedewael/rel-v4.2.0
  • 8bea620 v4.2.0
  • 7cef7ec Merge pull request #537 from shanedewael/fix-statemachine-websocket-close
  • 2c21341 Typescript line length
  • 7ba34d8 Add flags and emit event after client.off() call
  • 72c0525 Add logic for websocket close in handshaking
  • 017ef50 Merge pull request #535 from franckbrignoli/fix-issue-534
  • ef12abb Add test
  • d1354be fix issue #534: default params must not be overwritten
  • 62dfd81 Merge pull request #532 from DominikPalo/feature/add_users_cinversations_method
  • 6262e94 Merge pull request #528 from DominikPalo/master
  • b331a6f Fix type of 'types' field
  • dc22f29 Add the users.conversations method
  • 951fe41 Remove the unnecessary field 'attachment_type'
  • fb19909 Merge pull request #530 from DominikPalo/fix_channels_join_args

There are 21 commits in total.

See the full diff

greenkeeper bot added a commit that referenced this pull request May 11, 2018
@greenkeeper
Copy link
Author

greenkeeper bot commented May 11, 2018

Version 4.2.1 just got published.

Update to this version instead 🚀

Commits

The new version differs by 22 commits.

  • cf663c7 v4.2.1
  • 1722ed5 Merge pull request #555 from aoberoi/rtmclient-wsclose-in-connecting
  • c0fd185 fix string concatenation
  • fa99e28 add websocket close handlers for connecting:authenticated state, stop keepalive during reconnection
  • 6675917 Merge pull request #554 from aoberoi/webclient-response-scopes
  • 65ef2b5 fixes type in x-oauth-scopes response header name
  • 290ea7a Merge pull request #551 from DominikPalo/feature/fix-attachment-action-types
  • f5a4541 Fix a few inconsistencies in the interface for interactive message actions
  • 6317d8c Merge pull request #549 from DominikPalo/feature/missing-dialog-properties
  • 2bbb510 Fix semicolons
  • 3f5ffba Add missing properties for a dialog select element
  • eb4e64d Merge pull request #6 from slackapi/master
  • fbf1ae5 Merge pull request #543 from eletype/master
  • 0e2353c Merge pull request #544 from aoberoi/remove-packagelock
  • 624534b resolves security warnings

There are 22 commits in total.

See the full diff

greenkeeper bot added a commit that referenced this pull request May 12, 2018
@greenkeeper
Copy link
Author

greenkeeper bot commented May 12, 2018

Version 4.2.2 just got published.

Update to this version instead 🚀

greenkeeper bot added a commit that referenced this pull request Jun 5, 2018
@greenkeeper
Copy link
Author

greenkeeper bot commented Jun 5, 2018

Version 4.3.0 just got published.

Update to this version instead 🚀

Commits

The new version differs by 20 commits.

  • 008402b Merge pull request #574 from slackapi/rel-v4.3.0
  • 4b50d20 v4.3.0
  • 24488bb Merge pull request #573 from ggruiz/master
  • f10a0f8 remove 'only'
  • 623c003 make test for platform errors better
  • d8ab1ab catch errors on platform
  • 8d8a115 Merge pull request #570 from ggruiz/master
  • 51c0074 add log testing
  • 7086db2 fix line length for lint
  • 983f42f Merge branch 'coverage/webclient-rate-limit-test'
  • 97e2456 Merge pull request #567 from christophehurpeau/patch-1
  • a920440 modifies rate limit handling functionality, adds tests for it
  • 2cbf2ea Merge pull request #568 from ggruiz/master
  • c3b5ae8 add CursorPaginationEnabled
  • 28b96e7 add apps.permissions.resources.list, apps.permissions.scopes.list [#565]

There are 20 commits in total.

See the full diff

greenkeeper bot added a commit that referenced this pull request Jun 7, 2018
@greenkeeper
Copy link
Author

greenkeeper bot commented Jun 7, 2018

Version 4.3.1 just got published.

Update to this version instead 🚀

Release Notes v4.3.1
  • Fixes an issue where RTMClient would crash after its connection was interrupted because upon reconnection the connection monitoring code would improperly handle new messages as pongs. (#578) - thanks @aoberoi.
Commits

The new version differs by 7 commits.

  • 5f8abc9 v4.3.1
  • 3c8789a Merge pull request #578 from aoberoi/keepalive-inconsistency-issues
  • 265aa97 upgrade ws, stop monitoring on recommend reconnect
  • 5b4f91b add some logging
  • af9b713 improve jsdoc with argument descriptions (linter complained)
  • 22dfc6f recommendReconnect is not optional
  • 1f49016 KeepAlive: adds handling for cases when monitoring may be stopped before the

See the full diff

greenkeeper bot added a commit that referenced this pull request Aug 11, 2018
@greenkeeper
Copy link
Author

greenkeeper bot commented Aug 11, 2018

Version 4.4.0 just got published.

Update to this version instead 🚀

Release Notes Release v4.4.0

New Features

  • Workspace apps can now call methods on behalf of users for methods which require the X-Slack-User header. When
    calling one of these methods, specify the user ID in the new on_behalf_of option. - thanks @aoberoi (#609)
  • The new rejectRateLimitedCalls option in the WebClient constructor allows you to customize how you'd like to handle
    rate limiting. If you set it to true, the WebClient will not attempt to retry an API call for you, and will instead
    return an error with a code property set to the value ErrorCode.RateLimitedError. - thanks @aoberoi (#599)
  • Automatic pagination for cursor-based pagination enabled methods: It's always recommended to perform
    pagination using the cursor and limit options directly, but if you don't pass either when calling a method, the
    WebClient will automatically iterate through all the pages and returned a merged result. - thanks @aoberoi (#596)
  • The WebClient will warn when calling deprecated methods (files.comments.add and files.comments.edit) - thanks @aoberoi (#604)

Bug fixes and more

  • Fixes the crash when RTMClient#disconnect() was called from the connecting state - thanks @aoberoi (#603)
  • Fixes an issue where uploading a file without a token fails in WebClient with an unrelated error - thanks @aoberoi (#587)
  • Resolves an issue where your app requires a newer version of @types/node than this package specifies - thanks @aoberoi (#605)
  • Fixes the Dialog.selected_options type definition - thanks @harveyr (#588)
  • Adds information, fixes syntax issues, and corrects typos in the documentation - thanks @chris-peterson, @jd0920 (#584, #600, #601)
  • Tests against node v10 in Travis - thanks @aoberoi (#606)
Commits

The new version differs by 56 commits.

  • b207d88 Merge pull request #613 from aoberoi/rel-v4.4.0
  • 86d4727 v4.4.0
  • da4b0ec Merge pull request #609 from aoberoi/user-data-api
  • c1bdf0f grammar
  • 4045fda add docs for on_behalf_of
  • 5b0dddf convert user perspective option name from actor to on_behalf_of
  • 7138b83 implement actor enabled methods, fixes #608
  • 842c7a7 Merge pull request #605 from aoberoi/broad-types-node
  • cd2c068 copy the util.callbackify types into this package, so we don't depend on @types/node version as much
  • 4820c11 Merge branch 'master' into broad-types-node
  • ac5ff8c Merge pull request #604 from aoberoi/warn-file-threads
  • 81625a4 Merge pull request #606 from aoberoi/test-node-10
  • cd53dcf adds node v10 to travis test matrix, fixes #575
  • ea19b46 loosens type constraint on @types/node, fixes #582
  • a5e77be add tests

There are 56 commits in total.

See the full diff

greenkeeper bot added a commit that referenced this pull request Aug 25, 2018
@greenkeeper
Copy link
Author

greenkeeper bot commented Aug 25, 2018

Version 4.5.0 just got published.

Update to this version instead 🚀

Release Notes v4.5.0

New Features

  • RTMClient.start() now returns a Promise that resolves with the data emitted with the authenticated event - thanks @clavin (#611)
  • Adds the state property to the type definition of Dialog - thanks @DominikPalo (#619)

Bug Fixes

  • Fixes an issue where RTMClient did not emit the "disconnected" event when it fails to connect - thanks @clavin (#610)

Other

  • Replaces the got dependency with axios - thanks @aoberoi (#620)
Commits

The new version differs by 16 commits.

  • e95f59c Merge pull request #623 from aoberoi/rel-v4.5.0
  • fde80c7 v4.5.0
  • fc6371c Merge pull request #611 from clavin/issue-198-rtm-start-promise
  • ddadd39 Make disconnected event arg more verbose
  • 4ea73ad Merge pull request #620 from aoberoi/replace-got-with-axios
  • df2786d add test for IncomingWebhook for failing with request error
  • a917ec7 add test for agent option as boolean
  • 8d9e24b add test for multiple custom agents by scheme
  • 861305c add method description
  • 40bb61c Replace dependency got with axios
  • 050cbfa purge outdated comments
  • d98aef7 Merge pull request #619 from DominikPalo/feature/dialog-state
  • 7d01010 Add the "state" property to the dialog interface
  • 3053334 Merge pull request #7 from slackapi/master
  • 92ea097 Add RTM start & disconnect Promises

There are 16 commits in total.

See the full diff

greenkeeper bot added a commit that referenced this pull request Aug 30, 2018
@greenkeeper
Copy link
Author

greenkeeper bot commented Aug 30, 2018

Version 4.6.0 just got published.

Update to this version instead 🚀

Release Notes v4.6.0

New Features

Commits

The new version differs by 39 commits.

  • 934a4fd Merge pull request #626 from shanedewael/rel-v4.6.0
  • 38b4ca8 v4.6.0
  • d76a7be Merge pull request #625 from slackapi/feat-short-lived-tokens
  • bbcb2ef refresh when the token is undefined
  • 09f09cb Merge remote-tracking branch 'origin/master' into feat-short-lived-tokens
  • d90a568 Merge pull request #624 from aoberoi/add-token-refresh
  • f5109e1 Merge branch 'feat-short-lived-tokens' into add-token-refresh
  • ed5ac1f Merge pull request #622 from shanedewael/token_refresh_documentation
  • 9727297 Merge remote-tracking branch 'aoberoi/add-token-refresh' into add-token-refresh
  • ddb039c refresh concurrency test
  • ed9e237 Remove incorrect test
  • 93bb531 token_refresh emit test
  • e233513 Add manual setting token tests
  • 22a309d Merge remote-tracking branch 'aoberoi/add-token-refresh' into add-token-refresh
  • 8914848 working on a queuing test

There are 39 commits in total.

See the full diff

greenkeeper bot added a commit that referenced this pull request Oct 2, 2018
@greenkeeper
Copy link
Author

greenkeeper bot commented Oct 2, 2018

Update to this version instead 🚀

Release Notes for v4.7.0

New Features

  • You can now specify HTTP headers you'd like to include on all requests from WebClient. Just pass a headers option
    to the constructor. Thanks @ethan0920 (#629).

Bug fixes

  • Fixes a bug when specifying the agent option on WebClient using an agent from https-proxy-agent.
    Thanks @aoberoi (#645).

Documentation improvements

Commits

The new version differs by 20 commits.

  • 9153ce0 Merge pull request #646 from aoberoi/rel-v4.7.0
  • b72984c fix typo in release notes
  • eb3a87f v4.7.0
  • 6a37f3d Merge pull request #645 from aoberoi/fix-642
  • 59f8b7b Merge pull request #644 from aoberoi/docs-typescript
  • 18053d7 fix typo
  • 480ef7b use a looser check in isAgent, fixes #642
  • 434e565 adds typescript-specific docs (fixes #612, fixes #615)
  • 148c94c Merge pull request #641 from smaeda-ks/smaeda-ks/doc/fix-web-client-pages
  • 89299f7 Fix pagination sample code
  • 759bfa6 Merge pull request #637 from jharrilim/patch-1
  • 8880ed4 Update getting_started.md
  • 34c4150 Merge pull request #631 from aoberoi/fix-618
  • c2f5955 clarifies calling methods with no required options and using callbacks, fixes #618
  • 96933ac Merge pull request #629 from ethan0920/jd0920-static-headers

There are 20 commits in total.

See the full diff

greenkeeper bot added a commit that referenced this pull request Oct 3, 2018
@greenkeeper
Copy link
Author

greenkeeper bot commented Oct 3, 2018

Update to this version instead 🚀

Release Notes for v4.8.0

New Features

  • The IncomingWebhook constructor now has an agent option. It works exactly like the agent option from WebClient. It's very useful for setting a proxy for requests using packages like https-proxy-agent or tunnel. Thanks @romanbalayan (#640)

Documentation improvements

  • Fixes the TypeScript lib configuration instructions for versions 3.1 and above. Thanks @melisdogan (#650).
Commits

The new version differs by 18 commits.

  • 92730aa Merge pull request #651 from aoberoi/rel-v4.8.0
  • 59eb00b v4.8.0
  • 26337d3 Merge pull request #640 from romanbalayan/feature-issue-636
  • d17132c update console log message from 'token' to 'url'
  • 235dbec Move agentCheck and mapping to util
  • d6121a3 Add test spec on webhook for multiple schema agent support
  • fbf1e3c Format issue. Add email address to git commit
  • 6fa85f1 Modify Incoming webhook spec for custom agent param
  • e656d54 Change description of example file
  • 1a51358 Add example usage of custom agent for incoming webhooks, using https-proxy-agent and tunnel
  • acd57e7 Add implementation of custom agent on IncomingWebhook. Accepts custom agent on constructor.
  • 3ab54de Merge pull request #650 from melisdogan/fix-typescript-doc
  • eeddfd1 Removed the redundant section
  • d26bbd6 Removed mention of es2018.asynciterable
  • 4bd5f6a Merge pull request #648 from aoberoi/ignore-doc-deps

There are 18 commits in total.

See the full diff

greenkeeper bot added a commit that referenced this pull request Feb 13, 2019
@greenkeeper
Copy link
Author

greenkeeper bot commented Feb 13, 2019

Update to this version instead 🚀

Commits

The new version differs by 60 commits.

  • e4bf6a0 Merge pull request #700 from shanedewael/v4.9.0
  • d33b7f8 v4.9.0
  • b2133f0 Merge pull request #698 from aoberoi/prep-v5-deprecations
  • c4d8061 Merge branch 'master' into prep-v5-deprecations
  • 21cc97e Merge pull request #688 from shanedewael/add-block-kit-support
  • e35433d add deprecation information to doc comments
  • 860bb91 indentation, spelling, and moving legacy functionality to the bottom of the page
  • bafcf29 remove attempt at taking Logger instead of LoggerFunc
  • 2dd1837 Merge branch 'master' into prep-v5-deprecations
  • 0b050fa clean up
  • 1cae411 warns when using the deprecated token refresh. see #696
  • 627d769 adds test for warning when calling API method with callback
  • 1eaa1e8 warns when api methods are called with a callback, related: #691
  • 5a0ea7f Make changes
  • d9399c7 verbatim not parse

There are 60 commits in total.

See the full diff

greenkeeper bot added a commit that referenced this pull request Feb 27, 2019
@greenkeeper
Copy link
Author

greenkeeper bot commented Feb 27, 2019

  • The dependency @slack/client was updated from 3.16.0 to 4.10.0.

Update to this version instead 🚀

Release Notes for Release v4.10.0
  • Adds deprecation warnings for usage of a logging function. Use a Logger object instead. (#703) - thanks @aoberoi
Commits

The new version differs by 33 commits.

  • c640509 Merge pull request #711 from aoberoi/rel-v4.10.0
  • 5ffdd96 v4.10.0
  • a7b8682 Update web_client.md
  • 6b1af92 Merge pull request #703 from aoberoi/accept-logger-object-option
  • 0bff647 make ConsoleLogger compatible with node < 8
  • 6d54f96 Merge branch 'master' into accept-logger-object-option
  • 4d532fa remove unnecessary condition
  • 374fd1e Merge pull request #702 from aoberoi/docs-updates
  • 503e793 addressing comments from @shanedewael
  • 8066a42 tiny memory optimization
  • b2701f9 taking @shanedewael's suggestions on docs edits
  • f434f68 resolve security issue in dev dependency nyc
  • 2f576da addressing @shanedewael's comments
  • a0c0298 generate docs
  • 16e5697 updating documentation

There are 33 commits in total.

See the full diff

greenkeeper bot added a commit that referenced this pull request Mar 8, 2019
@greenkeeper
Copy link
Author

greenkeeper bot commented Mar 8, 2019

  • The dependency @slack/client was updated from 3.16.0 to 4.11.0.

Update to this version instead 🚀

Release Notes for Release v4.11.0
  • Deprecates auto-pagination. (#721) - thanks @aoberoi
  • Changes log level of failed requests from DEBUG to WARN. (#718) - thanks @aoberoi
  • Fixes bug where http_proxy and https_proxy environment variables unexpectedly interact with WebClient and
    RTMClient configuration. (#672) - thanks @aoberoi
  • Fixes tests for IncomingWebhook agent option. (#719) - thanks @aoberoi
  • Updates dependencies. (#725) - thanks @aoberoi
Commits

The new version differs by 18 commits.

  • 1d40496 Merge pull request #727 from aoberoi/rel-v4.11.0
  • 1cc1a72 v4.11.0
  • ff75c31 Merge pull request #726 from aoberoi/fix-718
  • 0c64ce5 Merge pull request #725 from aoberoi/update-deps
  • 27ef07d mocha configs
  • 75a013f changes request failures to warn level log, fixes #718
  • 284f096 update development dependencies
  • 4b67aa8 update runtime deps. only major change is p-retry, but code is
  • 62849bf update p-cancelable
  • e650d63 Merge pull request #724 from aoberoi/deprecate-auto-pagination
  • 7fb6457 deprecates auto-pagination, fixes #721
  • e62f4e5 Merge pull request #719 from aoberoi/fix-incoming-webhook-agent-test
  • af5842e Merge pull request #720 from aoberoi/proxy-testing
  • 2ef09df clean up comments
  • 4b81bfd disables automatic proxy detection, fixes #672

There are 18 commits in total.

See the full diff

greenkeeper bot added a commit that referenced this pull request Mar 19, 2019
@greenkeeper
Copy link
Author

greenkeeper bot commented Mar 19, 2019

  • The dependency @slack/client was updated from 3.16.0 to 4.12.0.

Update to this version instead 🚀

Release Notes for v4.12.0
  • Adds support for scheduled messages (#743)
  • Changes p-cancelable version to ~1.0.0 to fix type errors (#743)
Commits

The new version differs by 7 commits.

  • e16a5d1 Merge pull request #744 from shanedewael/4.12.0
  • 8d8a3a5 v4.12.0
  • 91050ef Merge pull request #743 from shanedewael/add-scheduled-messages-support
  • 156ae36 Update src/methods.ts
  • abea79f Update src/WebClient.ts
  • ab87aec Change pcancelable to v1 because of types
  • 43de90e Add scheduled message support

See the full diff

greenkeeper bot added a commit that referenced this pull request Mar 29, 2019
@greenkeeper
Copy link
Author

greenkeeper bot commented Mar 29, 2019

Update to this version instead 🚀

Release Notes for Node Slack SDK v5.0.0

This meta-release marks the beginning of a new organizational structure for the code related to each of Slack's official Node.js packages.

Major version releases

The following packages have changes listed in their release notes:

See the migration guide for information about how to update your app from a previous version.

No new release

Commits

The new version differs by 291 commits.

  • 891307e Publish
  • 55624fd lerna generated SHAs
  • a76b3ee Merge pull request #756 from slackapi/dev-v5
  • 09d6d6f fix a typescript issue from changing from type aliases to interfaces
  • 4d3133c remove package locks from examples
  • c3e5c8b update examples for testing
  • d40c883 remove file accidentally added in merge
  • 0d1cd79 Merge branch 'master' into dev-v5
  • b6dc555 Merge pull request #755 from aoberoi/find-and-replace
  • 65788d2 Merge pull request #754 from shanedewael/local-development-tutorial
  • 81be95b its amazing what you can find with a little find and replace
  • 8c98232 Consolidate cta
  • 53861c9 Update docs/_tutorials/local_development.md
  • 74b8e77 Update docs/_tutorials/local_development.md
  • 200a430 Update docs/_tutorials/local_development.md

There are 250 commits in total.

See the full diff

greenkeeper bot added a commit that referenced this pull request Apr 18, 2019
@greenkeeper
Copy link
Author

greenkeeper bot commented Apr 18, 2019

Update to this version instead 🚀

Commits

The new version differs by 24 commits.

  • 0a53364 Publish
  • 53c26f1 Merge pull request #777 from aoberoi/lerna-remove-versions-on-private-packages
  • e9062be remove versions on private packages to prevent automatic versions and tags on those packages
  • ce7daeb Merge pull request #774 from aoberoi/issue-773
  • 5ea5f14 Merge pull request #776 from aoberoi/issue-772
  • 68845d5 adds a README for @slack/client
  • e754103 Merge pull request #771 from aoberoi/issue-765
  • ce59849 fixes broken links to local development tutorial
  • d035bad fixes import error in @slack/webhook README
  • f697bc6 Merge pull request #768 from the6thm0nth/fix-typo
  • fdb151c fix typo: web-api -> rtm-api on README.md
  • 961f9d8 Merge pull request #763 from slackapi/fix-broken-links
  • 3a32c51 add missing extends WebAPICallOptions to some arguments interfaces
  • 19db04b Fix links on README
  • e178328 Merge pull request #764 from slackapi/fix_image_paths

There are 24 commits in total.

See the full diff

greenkeeper bot added a commit that referenced this pull request Jul 26, 2019
@greenkeeper
Copy link
Author

greenkeeper bot commented Jul 26, 2019

Update to this version instead 🚀

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Projects
None yet
Development

Successfully merging this pull request may close these issues.

0 participants