Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 6 additions & 0 deletions .changeset/restore-cjs-loadable-deps.md

Copy link
Copy Markdown
Member Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

📚 note: This is returned from the most recent #2713 in hopes the next release will find our expected versions and not skip patches.

Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
---
"@slack/web-api": patch
"@slack/webhook": patch
---

fix: revert internal packages requiring esm loading for backward compatible support ([#2711](https://github.com/slackapi/node-slack-sdk/issues/2711))
6 changes: 3 additions & 3 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ jobs:
name: Changelog
runs-on: ubuntu-latest
outputs:
hasChangesets: ${{ steps.changesets.outputs.hasChangesets }}
hasChangesets: ${{ steps.changesets.outputs.has-changesets }}
releaseExists: ${{ steps.published.outputs.exists }}
permissions:
contents: write
Expand Down Expand Up @@ -59,7 +59,7 @@ jobs:

- name: Check if publish is needed
id: published
if: steps.changesets.outputs.hasChangesets == 'false'
if: steps.changesets.outputs.has-changesets == 'false'
run: |
EXISTS=true
for PKG in $(npm query .workspace | jq -r '.[].name'); do
Expand Down Expand Up @@ -138,7 +138,7 @@ jobs:
echo "message=$(echo "$PUBLISHED_PACKAGES" | jq -r '[.[] | "\(.name)@\(.version)"] | join(", ")')" >> "$GITHUB_OUTPUT"
echo "action_url=$(echo "$PUBLISHED_PACKAGES" | jq -r '[.[] | "https://github.com/${{ github.repository }}/releases/tag/\(.name)@\(.version)"] | join(", ")')" >> "$GITHUB_OUTPUT"
env:
PUBLISHED_PACKAGES: ${{ steps.changesets.outputs.publishedPackages }}
PUBLISHED_PACKAGES: ${{ steps.changesets.outputs.published-packages }}

- name: Notify Slack
if: steps.changesets.outputs.published == 'true'
Expand Down
2 changes: 1 addition & 1 deletion docs/english/reference/web-api/index.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# @slack/web-api v8.1.1
# @slack/web-api v8.1.0

## Enumerations

Expand Down
2 changes: 1 addition & 1 deletion docs/english/reference/webhook/index.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# @slack/webhook v8.0.2
# @slack/webhook v8.0.1

## Enumerations

Expand Down
4 changes: 2 additions & 2 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

6 changes: 0 additions & 6 deletions packages/web-api/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,11 +1,5 @@
# @slack/web-api

## 8.1.1

### Patch Changes

- aef66ac: fix: revert internal packages requiring esm loading for backward compatible support ([#2711](https://github.com/slackapi/node-slack-sdk/issues/2711))

## 8.1.0

### Minor Changes
Expand Down
2 changes: 1 addition & 1 deletion packages/web-api/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@slack/web-api",
"version": "8.1.1",
"version": "8.1.0",
"description": "Official library for using the Slack Platform's Web API",
"author": "Slack Technologies, LLC",
"license": "MIT",
Expand Down
6 changes: 0 additions & 6 deletions packages/webhook/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,11 +1,5 @@
# @slack/webhook

## 8.0.2

### Patch Changes

- aef66ac: fix: revert internal packages requiring esm loading for backward compatible support ([#2711](https://github.com/slackapi/node-slack-sdk/issues/2711))

## 8.0.1

### Patch Changes
Expand Down
2 changes: 1 addition & 1 deletion packages/webhook/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@slack/webhook",
"version": "8.0.2",

Copy link
Copy Markdown
Member Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

🐷 note: This returns to the current latest. I'm not wishing to skip versions if the tag never landed!

"version": "8.0.1",
"description": "Official library for using the Slack Platform's Incoming Webhooks",
"author": "Slack Technologies, LLC",
"license": "MIT",
Expand Down