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 module github.com/slack-go/slack to v0.15.0 - autoclosed #75

Closed

Conversation

renovate[bot]
Copy link
Contributor

@renovate renovate bot commented Jul 22, 2022

This PR contains the following updates:

Package Change Age Adoption Passing Confidence
github.com/slack-go/slack v0.11.0 -> v0.15.0 age adoption passing confidence

Release Notes

slack-go/slack (github.com/slack-go/slack)

v0.15.0

Compare Source

[!WARNING]
This release includes a breaking change since the last release.

What's Changed

v0.15.0 is now available. It does contain minor breaking changes to two Block Kit elements along with a lot of new functionality.

Breaking Changes

Block Kit - Rich Text Section Date Element

If you are using the RichTextSectionDateElement block kit element, there is a new field Format which is now required. It previously did not exist, but was marked as required in the Block Kit Documentation. Similarly, the function NewRichTextSectionDateElement function signature has been updated to require the new parameter. While this may not have previously worked, the non-backwards compatible signature change prompts it to be identified as breaking change.

Block Kit - Rich Text input Block Element

If you are using the RichTextInputBlockElement block kit element, the InitialValue field type has been changed from string to *RichTextBlock to provide a more strongly typed experience. If you were previously passing a pre-formatted JSON object you will need to update your input to use the RichTextBlock struct instead.

Enhancements
Bug Fixes
Chores

New Contributors

Full Changelog: slack-go/slack@v0.14.0...v0.15.0

v0.14.0

Compare Source

What's Changed

v0.14.0 is now available. It contains no breaking changes but does include several pieces of new functionality and long-standing bug fixes.

Enhancements
Bug Fixes
Chores / Code Cleanup

New Contributors

Full Changelog: slack-go/slack@v0.13.1...v0.14.0

v0.13.1

Compare Source

What's Changed

v0.13.1 is now available. It contains no breaking changes but does expose some new fields previously unavailable.

Enhancements
Bug Fixes
Chores / Code Cleanup
Documentation Updates

New Contributors

Full Changelog: slack-go/slack@v0.13.0...v0.13.1

v0.13.0

Compare Source

[!WARNING]
This release includes a breaking change since the last release

What's Changed

Breaking changes
  • Expose team_id parameter for use with org-wide app by @​candiduslynx in https://github.com/slack-go/slack/pull/1283:
    Changed interface:
    Old New
    Client.GetBotInfo(bot string) (*Bot, error) Client.GetBotInfo(parameters GetBotInfoParameters) (*Bot, error)
    Client.GetBotInfoContext(ctx context.Context, bot string) Client.GetBotInfoContext(ctx context.Context, parameters GetBotInfoParameters)
    Client.GetTeamProfile() (*TeamProfile, error) GetTeamProfile(teamID ...string) (*TeamProfile, error)
    GetTeamProfileContext(ctx context.Context) (*TeamProfile, error) GetTeamProfileContext(ctx context.Context, teamID ...string) (*TeamProfile, error)
    Client.GetBillableInfo(user string) (map[string]BillingActive, error) Client.GetBillableInfo(params GetBillableInfoParams) (map[string]BillingActive, error)
    Client.GetBillableInfoContext(ctx context.Context, user string) (map[string]BillingActive, error) Client.GetBillableInfoContext(ctx context.Context, params GetBillableInfoParams) (map[string]BillingActive, error)
    Client.GetBillableInfoForTeam() (map[string]BillingActive, error) dropped, use Client.GetBillableInfo with empty params
    Client.GetBillableInfoForTeamContext(ctx context.Context) (map[string]BillingActive, error) dropped, use Client.GetBillableInfoContext with empty params
Bug fixes
Enhancements

New Contributors

Full Changelog: slack-go/slack@v0.12.5...v0.13.0

v0.12.5

Compare Source

What's Changed

BUGFIX - deal with "true", true, "false", false.

Full Changelog: slack-go/slack@v0.12.4...v0.12.5

v0.12.4: Non-breaking updates roll-up

Compare Source

What's Changed

New Contributors

Full Changelog: slack-go/slack@v0.12.3...v0.12.4

v0.12.3

Compare Source

What's Changed

Bug fixes
Security
Enhancements / Improvements

New Contributors

Full Changelog: slack-go/slack@v0.12.2...v0.12.3

v0.12.2

Compare Source

What's Changed

Bug fixes
Enhancements / Improvements
Misc

New Contributors

Full Changelog: slack-go/slack@v0.12.1...v0.12.2

v0.12.1

Compare Source

What's Changed

Enhancements

New Contributors

Full Changelog: slack-go/slack@v0.12.0...v0.12.1

v0.12.0

Compare Source

Thank you for all the contributions!

What's Changed

This release contains several backward incompatible changes.

Fixes
Enhancements

New Contributors

Full Changelog: slack-go/slack@v0.11.4...v0.12.0

v0.11.4

Compare Source

What's Changed

Enhancements
Fixes

New Contributors

Full Changelog: slack-go/slack@v0.11.3...v0.11.4

v0.11.3

Compare Source

What's Changed

Enhancements/Refactoring
Bugfixes
Docs
Misc

New Contributors

Full Changelog: slack-go/slack@v0.11.2...v0.11.3

v0.11.2

Compare Source

Thank you for all the contributions!

What's Changed

Enhancements
Fixes

New Contributors

Full Changelog: slack-go/slack@v0.11.1...v0.11.2

v0.11.1

Compare Source

Thank you for all the contributions!

What's Changed

Enhancements

New Contributors

Full Changelog: slack-go/slack@v0.11.0...v0.11.1


Configuration

📅 Schedule: Branch creation - At any time (no schedule defined), Automerge - At any time (no schedule defined).

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

Rebasing: Whenever PR becomes conflicted, or you tick the rebase/retry checkbox.

🔕 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 was generated by Mend Renovate. View the repository job log.

@renovate renovate bot requested a review from karl-johan-grahn as a code owner July 22, 2022 00:49
@renovate renovate bot force-pushed the renovate/github.aaakk.us.kg-slack-go-slack-0.x branch from 67a19e5 to 06f4810 Compare July 25, 2022 11:06
@renovate renovate bot changed the title Update module github.com/slack-go/slack to v0.11.1 Update module github.com/slack-go/slack to v0.11.2 Jul 25, 2022
@renovate renovate bot changed the title Update module github.com/slack-go/slack to v0.11.2 Update module github.com/slack-go/slack to v0.11.3 Sep 11, 2022
@renovate renovate bot force-pushed the renovate/github.aaakk.us.kg-slack-go-slack-0.x branch from 06f4810 to 48c914d Compare September 11, 2022 17:14
@renovate renovate bot force-pushed the renovate/github.aaakk.us.kg-slack-go-slack-0.x branch from 48c914d to b10361f Compare November 20, 2022 16:40
@renovate renovate bot changed the title Update module github.com/slack-go/slack to v0.11.3 Update module github.com/slack-go/slack to v0.11.4 Nov 20, 2022
@renovate renovate bot changed the title Update module github.com/slack-go/slack to v0.11.4 Update module github.com/slack-go/slack to v0.12.1 Mar 17, 2023
@renovate renovate bot force-pushed the renovate/github.aaakk.us.kg-slack-go-slack-0.x branch from b10361f to c33953d Compare March 17, 2023 03:53
@renovate renovate bot changed the title Update module github.com/slack-go/slack to v0.12.1 Update module github.com/slack-go/slack to v0.12.2 Apr 17, 2023
@renovate renovate bot force-pushed the renovate/github.aaakk.us.kg-slack-go-slack-0.x branch from c33953d to 8e4c404 Compare April 17, 2023 11:08
@renovate renovate bot force-pushed the renovate/github.aaakk.us.kg-slack-go-slack-0.x branch from 8e4c404 to 6ab40ea Compare June 19, 2023 17:03
@renovate renovate bot changed the title Update module github.com/slack-go/slack to v0.12.2 Update module github.com/slack-go/slack to v0.12.3 Aug 24, 2023
@renovate renovate bot force-pushed the renovate/github.aaakk.us.kg-slack-go-slack-0.x branch from 6ab40ea to b3cad76 Compare August 24, 2023 19:21
@renovate renovate bot changed the title Update module github.com/slack-go/slack to v0.12.3 Update module github.com/slack-go/slack to v0.12.3 - autoclosed Oct 23, 2023
@renovate renovate bot closed this Oct 23, 2023
@renovate renovate bot deleted the renovate/github.aaakk.us.kg-slack-go-slack-0.x branch October 23, 2023 10:18
@renovate renovate bot changed the title Update module github.com/slack-go/slack to v0.12.3 - autoclosed Update module github.com/slack-go/slack to v0.12.3 Oct 23, 2023
@renovate renovate bot reopened this Oct 23, 2023
@renovate renovate bot restored the renovate/github.aaakk.us.kg-slack-go-slack-0.x branch October 23, 2023 15:15
@renovate renovate bot changed the title Update module github.com/slack-go/slack to v0.12.3 Update module github.com/slack-go/slack to v0.12.4 Feb 16, 2024
@renovate renovate bot force-pushed the renovate/github.aaakk.us.kg-slack-go-slack-0.x branch from b3cad76 to 83704eb Compare February 16, 2024 13:52
@renovate renovate bot changed the title Update module github.com/slack-go/slack to v0.12.4 Update module github.com/slack-go/slack to v0.12.5 Feb 26, 2024
@renovate renovate bot force-pushed the renovate/github.aaakk.us.kg-slack-go-slack-0.x branch from 83704eb to d8fb84e Compare February 26, 2024 13:55
@renovate renovate bot force-pushed the renovate/github.aaakk.us.kg-slack-go-slack-0.x branch from d8fb84e to 9453c76 Compare May 16, 2024 15:58
@renovate renovate bot changed the title Update module github.com/slack-go/slack to v0.12.5 Update module github.com/slack-go/slack to v0.13.0 May 16, 2024
@renovate renovate bot force-pushed the renovate/github.aaakk.us.kg-slack-go-slack-0.x branch from 9453c76 to 1c4b212 Compare July 16, 2024 20:36
@renovate renovate bot changed the title Update module github.com/slack-go/slack to v0.13.0 Update module github.com/slack-go/slack to v0.13.1 Jul 16, 2024
@renovate renovate bot force-pushed the renovate/github.aaakk.us.kg-slack-go-slack-0.x branch from 1c4b212 to 5ec5f2f Compare August 15, 2024 19:10
@renovate renovate bot changed the title Update module github.com/slack-go/slack to v0.13.1 Update module github.com/slack-go/slack to v0.14.0 Aug 15, 2024
@renovate renovate bot force-pushed the renovate/github.aaakk.us.kg-slack-go-slack-0.x branch from 5ec5f2f to a2a52bc Compare October 14, 2024 19:42
@renovate renovate bot changed the title Update module github.com/slack-go/slack to v0.14.0 Update module github.com/slack-go/slack to v0.15.0 Oct 14, 2024
@renovate renovate bot changed the title Update module github.com/slack-go/slack to v0.15.0 Update module github.com/slack-go/slack to v0.15.0 - autoclosed Nov 22, 2024
@renovate renovate bot closed this Nov 22, 2024
@renovate renovate bot deleted the renovate/github.aaakk.us.kg-slack-go-slack-0.x branch November 22, 2024 15:06
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

0 participants