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

build(deps): bump the npm_and_yarn group across 1 directory with 7 updates #2

Closed

Conversation

dependabot[bot]
Copy link

@dependabot dependabot bot commented on behalf of github Jan 10, 2025

Bumps the npm_and_yarn group with 6 updates in the / directory:

Package From To
dot-prop 3.0.0 5.3.0
@commitlint/cli 8.3.6 19.6.1
braces 2.3.2 3.0.3
lint-staged 8.2.1 15.3.0
flat 4.1.1 5.0.2
mocha 6.2.3 11.0.1

Updates dot-prop from 3.0.0 to 5.3.0

Release notes

Sourced from dot-prop's releases.

v5.3.0

  • Make .delete() return a boolean (#66) 24916ff

sindresorhus/dot-prop@v5.2.0...v5.3.0

v5.2.0

  • Allow specifying undefined as the object for .get() and .has() (#58) a6be343

sindresorhus/dot-prop@v5.1.1...v5.2.0

v5.1.1

  • Prevent setting/getting some problematic path components 3039c8c
  • TypeScript - Fix return type for undefined defaultValue (#56) e0f8abf

sindresorhus/dot-prop@v5.1.0...v5.1.1

v5.1.0

Maintenance release to update dependencies. No user-facing changes.

sindresorhus/dot-prop@v5.0.1...v5.1.0

v5.0.1

  • Fix TypeScript 3.5 compatibility 9c1ef03

sindresorhus/dot-prop@v5.0.0...v5.0.1

v5.0.0

Breaking:

  • Require Node.js 8 a19fd41

Enhancements:

  • Add TypeScript definition (#52) 5dbf51c

sindresorhus/dot-prop@v4.2.0...v5.0.0

v4.2.1

Commits

Updates @commitlint/cli from 8.3.6 to 19.6.1

Release notes

Sourced from @​commitlint/cli's releases.

v19.6.1

19.6.1 (2024-12-15)

Bug Fixes

Chore & docs

New Contributors

Full Changelog: conventional-changelog/commitlint@v19.6.0...v19.6.1

v19.6.0

19.6.0 (2024-11-19)

Features

Chore, Docs, etc

Full Changelog: conventional-changelog/commitlint@v19.5.0...v19.6.0

New Contributors

... (truncated)

Changelog

Sourced from @​commitlint/cli's changelog.

19.6.1 (2024-12-15)

Note: Version bump only for package @​commitlint/cli

19.6.0 (2024-11-19)

Note: Version bump only for package @​commitlint/cli

19.5.0 (2024-09-11)

Features

19.4.1 (2024-08-28)

Note: Version bump only for package @​commitlint/cli

19.4.0 (2024-08-07)

Features

19.3.0 (2024-04-23)

Note: Version bump only for package @​commitlint/cli

... (truncated)

Commits

Updates braces from 2.3.2 to 3.0.3

Changelog

Sourced from braces's changelog.

Release history

All notable changes to this project will be documented in this file.

The format is based on Keep a Changelog and this project adheres to Semantic Versioning.

  • Changelogs are for humans, not machines.
  • There should be an entry for every single version.
  • The same types of changes should be grouped.
  • Versions and sections should be linkable.
  • The latest version comes first.
  • The release date of each versions is displayed.
  • Mention whether you follow Semantic Versioning.

Changelog entries are classified using the following labels (from keep-a-changelog):

  • Added for new features.
  • Changed for changes in existing functionality.
  • Deprecated for soon-to-be removed features.
  • Removed for now removed features.
  • Fixed for any bug fixes.
  • Security in case of vulnerabilities.

[3.0.0] - 2018-04-08

v3.0 is a complete refactor, resulting in a faster, smaller codebase, with fewer deps, and a more accurate parser and compiler.

Breaking Changes

  • The undocumented .makeRe method was removed
  • Require Node.js >= 8.3

Non-breaking changes

  • Caching was removed
Commits

Updates lint-staged from 8.2.1 to 15.3.0

Release notes

Sourced from lint-staged's releases.

v15.3.0

Minor Changes

  • #1495 e69da9e Thanks @​iiroj! - Added more info to the debug logs so that "environment" info doesn't need to be added separately to GitHub issues.

  • #1493 fa0fe98 Thanks @​iiroj! - Added more help messages around the automatic git stash that lint-staged creates as a backup (by default). The console output also displays the short git hash of the stash so that it's easier to recover lost files in case some fatal errors are encountered, or the process is killed before completing.

    For example:

    % npx lint-staged
    ✔ Backed up original state in git stash (20addf8)
    ✔ Running tasks for staged files...
    ✔ Applying modifications from tasks...
    ✔ Cleaning up temporary files...
    

    where the backup can be seen with git show 20addf8, or git stash list:

    % git stash list
    stash@{0}: lint-staged automatic backup (20addf8)
    

v15.2.11

Patch Changes

  • #1484 bcfe309 Thanks @​wormsik! - Escape paths containing spaces when using the "shell" option.

  • #1487 7dd8caa Thanks @​iiroj! - Do not treat submodule root paths as "staged files". This caused lint-staged to fail to a Git error when only updating the revision of a submodule.

v15.2.10

Patch Changes

v15.2.9

Patch Changes

  • #1463 b69ce2d Thanks @​iiroj! - Set the maximum number of event listeners to the number of tasks. This should silence the console warning MaxListenersExceededWarning: Possible EventEmitter memory leak detected.

v15.2.8

Patch Changes

  • f0480f0 Thanks @​iiroj! - In the previous version the native git rev-parse --show-toplevel command was taken into use for resolving the current git repo root. This version switched the --show-toplevel flag with --show-cdup, because on Git installed via MSYS2 the former was returning absolute paths that do not work with Node.js child_process. The new flag returns a path relative to the working directory, avoiding the issue.

    The GitHub Actions workflow has been updated to install Git via MSYS2, to ensure better future compatibility; using the default Git binary in the GitHub Actions runner was working correctly even with MSYS2.

v15.2.7

Patch Changes

  • #1440 a51be80 Thanks @​iiroj! - In the previous version the native git rev-parse --show-toplevel command was taken into use for resolving the current git repo root. This version drops the --path-format=absolute option to support earlier git versions since it's also the default behavior. If you are still having trouble, please try upgrading git to the latest version.

v15.2.6

... (truncated)

Changelog

Sourced from lint-staged's changelog.

15.3.0

Minor Changes

  • #1495 e69da9e Thanks @​iiroj! - Added more info to the debug logs so that "environment" info doesn't need to be added separately to GitHub issues.

  • #1493 fa0fe98 Thanks @​iiroj! - Added more help messages around the automatic git stash that lint-staged creates as a backup (by default). The console output also displays the short git hash of the stash so that it's easier to recover lost files in case some fatal errors are encountered, or the process is killed before completing.

    For example:

    % npx lint-staged
    ✔ Backed up original state in git stash (20addf8)
    ✔ Running tasks for staged files...
    ✔ Applying modifications from tasks...
    ✔ Cleaning up temporary files...
    

    where the backup can be seen with git show 20addf8, or git stash list:

    % git stash list
    stash@{0}: lint-staged automatic backup (20addf8)
    

15.2.11

Patch Changes

  • #1484 bcfe309 Thanks @​wormsik! - Escape paths containing spaces when using the "shell" option.

  • #1487 7dd8caa Thanks @​iiroj! - Do not treat submodule root paths as "staged files". This caused lint-staged to fail to a Git error when only updating the revision of a submodule.

15.2.10

Patch Changes

15.2.9

Patch Changes

  • #1463 b69ce2d Thanks @​iiroj! - Set the maximum number of event listeners to the number of tasks. This should silence the console warning MaxListenersExceededWarning: Possible EventEmitter memory leak detected.

15.2.8

Patch Changes

  • f0480f0 Thanks @​iiroj! - In the previous version the native git rev-parse --show-toplevel command was taken into use for resolving the current git repo root. This version switched the --show-toplevel flag with --show-cdup, because on Git installed via MSYS2 the former was returning absolute paths that do not work with Node.js child_process. The new flag returns a path relative to the working directory, avoiding the issue.

... (truncated)

Commits
  • 703002a chore(changeset): release
  • 4cee7d8 build(dependencies): update dependencies
  • ef9b02d Merge pull request #1495 from lint-staged/debug-info
  • e69da9e feat: add more info to debug logs, remove "environment" requirement from issu...
  • 1b36f55 docs: combine changesets
  • 6c9ab40 Merge pull request #1493 from lint-staged/help-messages
  • 22fe89d feat: add unique hash to backup stash message
  • c52cc92 docs: add a caution message about git stash
  • fa0fe98 feat: update first task message based on backup status
  • 7bd0447 feat: display "git stash list" message when restoring original state is skipped
  • Additional commits viewable in compare view

Updates yargs-parser from 10.1.0 to 13.1.2

Changelog

Sourced from yargs-parser's changelog.

15.0.0 (2019-10-07)

Features

  • rework collect-unknown-options into unknown-options-as-args, providing more comprehensive functionality (ef771ca)

BREAKING CHANGES

  • rework collect-unknown-options into unknown-options-as-args, providing more comprehensive functionality

14.0.0 (2019-09-06)

Bug Fixes

  • boolean arrays with default values (#185) (7d42572)
  • boolean now behaves the same as other array types (#184) (17ca3bd)
  • eatNargs() for 'opt.narg === 0' and boolean typed options (#188) (c5a1db0)
  • maybeCoerceNumber now takes precedence over coerce return value (#182) (2f26436)
  • take into account aliases when appending arrays from config object (#199) (f8a2d3f)

Features

  • add configuration option to "collect-unknown-options" (#181) (7909cc4)
  • maybeCoerceNumber() now takes into account arrays (#187) (31c204b)

BREAKING CHANGES

  • unless "parse-numbers" is set to "false", arrays of numeric strings are now parsed as numbers, rather than strings.
  • we have dropped the broken "defaulted" functionality; we would like to revisit adding this in the future.
  • maybeCoerceNumber now takes precedence over coerce return value (#182)

13.1.1 (2019-06-10)

Bug Fixes

  • convert values to strings when tokenizing (#167) (57b7883)
  • nargs should allow duplicates when duplicate-arguments-array=false (#164) (47ccb0b)
  • should populate "_" when given config with "short-option-groups" false (#179) (6055974)

13.1.0 (2019-05-05)

... (truncated)

Commits
Maintainer changes

This version was pushed to npm by oss-bot, a new releaser for yargs-parser since your current version.


Updates flat from 4.1.1 to 5.0.2

Commits
  • e5ffd66 Release 5.0.2
  • fdb79d5 Update dependencies, refresh lockfile, format with standard.
  • e52185d Test against node 14 in CI.
  • 0189cb1 Avoid arrow function syntax.
  • f25d3a1 Release 5.0.1
  • 54cc7ad use standard formatting
  • 779816e drop dependencies
  • 2eea6d3 Bump lodash from 4.17.15 to 4.17.19
  • a61a554 Bump acorn from 7.1.0 to 7.4.0
  • 20ef0ef Fix prototype pollution on unflatten
  • Additional commits viewable in compare view

Updates mocha from 6.2.3 to 11.0.1

Release notes

Sourced from mocha's releases.

v11.0.1

11.0.1 (2024-12-02)

🌟 Features

📚 Documentation

  • fix examples for linkPartialObjects methods (#5255) (34e0e52)

v11.0.0 Prerelease

11.0.0 (2024-11-11)

⚠ BREAKING CHANGES

  • adapt new engine range for Mocha 11 (#5216)

🌟 Features

🩹 Fixes

📚 Documentation

v10.8.2

10.8.2 (2024-10-30)

🩹 Fixes

  • support errors with circular dependencies in object values with --parallel (#5212) (ba0fefe)
  • test link in html reporter (#5224) (f054acc)

📚 Documentation

  • indicate 'exports' interface does not work in browsers (#5181) (14e640e)

... (truncated)

Changelog

Sourced from mocha's changelog.

11.0.1 (2024-12-02)

🌟 Features

📚 Documentation

  • fix examples for linkPartialObjects methods (#5255) (34e0e52)

11.0.0 (2024-11-11)

⚠ BREAKING CHANGES

  • adapt new engine range for Mocha 11 (#5216)

🌟 Features

🩹 Fixes

📚 Documentation

10.8.2 (2024-10-30)

🩹 Fixes

  • support errors with circular dependencies in object values with --parallel (#5212) (ba0fefe)
  • test link in html reporter (#5224) (f054acc)

📚 Documentation

  • indicate 'exports' interface does not work in browsers (#5181) (14e640e)

🧹 Chores

  • fix docs builds by re-adding eleventy and ignoring gitignore again (#5240) (881e3b0)

🤖 Automation

  • deps: bump the github-actions group with 1 update (#5132) (e536ab2)

10.8.1 (2024-10-29)

... (truncated)

Commits
Maintainer changes

This version was pushed to npm by voxpelli, a new releaser for mocha since your current version.


Dependabot will resolve any conflicts with this PR as long as you don't alter it yourself. You can also trigger a rebase manually by commenting @dependabot rebase.


Dependabot commands and options

You can trigger Dependabot actions by commenting on this PR:

  • @dependabot rebase will rebase this PR
  • @dependabot recreate will recreate this PR, overwriting any edits that have been made to it
  • @dependabot merge will merge this PR after your CI passes on it
  • @dependabot squash and merge will squash and merge this PR after your CI passes on it
  • @dependabot cancel merge will cancel a previously requested merge and block automerging
  • @dependabot reopen will reopen this PR if it is closed
  • @dependabot close will close this PR and stop Dependabot recreating it. You can achieve the same result by closing it manually
  • @dependabot show <dependency name> ignore conditions will show all of the ignore conditions of the specified dependency
  • @dependabot ignore <dependency name> major version will close this group update PR and stop Dependabot creating any more for the specific dependency's major version (unless you unignore this specific dependency's major version or upgrade to it yourself)
  • @dependabot ignore <dependency name> minor version will close this group update PR and stop Dependabot creating any more for the specific dependency's minor version (unless you unignore this specific dependency's minor version or upgrade to it yourself)
  • @dependabot ignore <dependency name> will close this group update PR and stop Dependabot creating any more for the specific dependency (unless you unignore this specific dependency or upgrade to it yourself)
  • @dependabot unignore <dependency name> will remove all of the ignore conditions of the specified dependency
  • @dependabot unignore <dependency name> <ignore condition> will remove the ignore condition of the specified dependency and ignore conditions
    You can disable automated security fix PRs for this repo from the Security Alerts page.

…dates

Bumps the npm_and_yarn group with 6 updates in the / directory:

| Package | From | To |
| --- | --- | --- |
| [dot-prop](https://github.com/sindresorhus/dot-prop) | `3.0.0` | `5.3.0` |
| [@commitlint/cli](https://github.com/conventional-changelog/commitlint/tree/HEAD/@commitlint/cli) | `8.3.6` | `19.6.1` |
| [braces](https://github.com/micromatch/braces) | `2.3.2` | `3.0.3` |
| [lint-staged](https://github.com/lint-staged/lint-staged) | `8.2.1` | `15.3.0` |
| [flat](https://github.com/hughsk/flat) | `4.1.1` | `5.0.2` |
| [mocha](https://github.com/mochajs/mocha) | `6.2.3` | `11.0.1` |



Updates `dot-prop` from 3.0.0 to 5.3.0
- [Release notes](https://github.com/sindresorhus/dot-prop/releases)
- [Commits](sindresorhus/dot-prop@v3.0.0...v5.3.0)

Updates `@commitlint/cli` from 8.3.6 to 19.6.1
- [Release notes](https://github.com/conventional-changelog/commitlint/releases)
- [Changelog](https://github.com/conventional-changelog/commitlint/blob/master/@commitlint/cli/CHANGELOG.md)
- [Commits](https://github.com/conventional-changelog/commitlint/commits/v19.6.1/@commitlint/cli)

Updates `braces` from 2.3.2 to 3.0.3
- [Changelog](https://github.com/micromatch/braces/blob/master/CHANGELOG.md)
- [Commits](https://github.com/micromatch/braces/commits/3.0.3)

Updates `lint-staged` from 8.2.1 to 15.3.0
- [Release notes](https://github.com/lint-staged/lint-staged/releases)
- [Changelog](https://github.com/lint-staged/lint-staged/blob/master/CHANGELOG.md)
- [Commits](lint-staged/lint-staged@v8.2.1...v15.3.0)

Updates `yargs-parser` from 10.1.0 to 13.1.2
- [Release notes](https://github.com/yargs/yargs-parser/releases)
- [Changelog](https://github.com/yargs/yargs-parser/blob/main/docs/CHANGELOG-full.md)
- [Commits](https://github.com/yargs/yargs-parser/commits)

Updates `flat` from 4.1.1 to 5.0.2
- [Release notes](https://github.com/hughsk/flat/releases)
- [Commits](hughsk/flat@4.1.1...5.0.2)

Updates `mocha` from 6.2.3 to 11.0.1
- [Release notes](https://github.com/mochajs/mocha/releases)
- [Changelog](https://github.com/mochajs/mocha/blob/main/CHANGELOG.md)
- [Commits](mochajs/mocha@v6.2.3...v11.0.1)

---
updated-dependencies:
- dependency-name: dot-prop
  dependency-type: indirect
  dependency-group: npm_and_yarn
- dependency-name: "@commitlint/cli"
  dependency-type: direct:development
  dependency-group: npm_and_yarn
- dependency-name: braces
  dependency-type: indirect
  dependency-group: npm_and_yarn
- dependency-name: lint-staged
  dependency-type: direct:development
  dependency-group: npm_and_yarn
- dependency-name: yargs-parser
  dependency-type: indirect
  dependency-group: npm_and_yarn
- dependency-name: flat
  dependency-type: indirect
  dependency-group: npm_and_yarn
- dependency-name: mocha
  dependency-type: direct:development
  dependency-group: npm_and_yarn
...

Signed-off-by: dependabot[bot] <[email protected]>
Copy link
Author

dependabot bot commented on behalf of github Jan 10, 2025

Looks like these dependencies are updatable in another way, so this is no longer needed.

@dependabot dependabot bot closed this Jan 10, 2025
@dependabot dependabot bot deleted the dependabot/npm_and_yarn/npm_and_yarn-1212351d0b branch January 10, 2025 03:03
ping-ci pushed a commit that referenced this pull request Jan 10, 2025
## 1.0.0 (2025-01-10)

### ⚠ BREAKING CHANGES

* **core:** We only support v18+ of Node and v20+ of semantic-release now. semantic-release library introduced a new version v20 which introduces several breaking changes, including but not limited Node v18 as requirement. More information can be found [here](https://github.com/semantic-release/semantic-release/releases/tag/v20.0.0).
* Drops support for Node 10. semantic-release-slack-bot supports Node 14+ from this version.
* Drops support for Node 8. semantic-release-slack-bot supports Node 10+ from this version.

### Features

* add maxLength option ([juliuscc#27](https://github.com/pinginc/semantic-release-slack-bot/issues/27)) e4000b2, closes juliuscc#26
* add onFail and onSuccess template options c075e91
* add option to specify slack app name ([juliuscc#83](https://github.com/pinginc/semantic-release-slack-bot/issues/83)) 89ee876
* add option to specify slack icon ([juliuscc#80](https://github.com/pinginc/semantic-release-slack-bot/issues/80)) 47952b0
* Add packageName as a config option ([juliuscc#34](https://github.com/pinginc/semantic-release-slack-bot/issues/34)) bf323ca
* Add possibility to provide onSuccess function ([juliuscc#53](https://github.com/pinginc/semantic-release-slack-bot/issues/53)) 1cb7fab
* add slackWebhook as configuration option ([juliuscc#17](https://github.com/pinginc/semantic-release-slack-bot/issues/17)) d3df2b4, closes juliuscc#16
* add support for token/channel option ([juliuscc#79](https://github.com/pinginc/semantic-release-slack-bot/issues/79)) aa1eef6, closes juliuscc#73
* Added a new message form that is published upon a build failure. 6f4afc6
* Added a nicer looking web page. 96b73ad
* Added integration with slack d541e59
* Added option to disable notifications 1117583
* allow to have a custom configuration per branches ([juliuscc#63](https://github.com/pinginc/semantic-release-slack-bot/issues/63)) cab5394
* allow to override slack channel when using webhook ([juliuscc#81](https://github.com/pinginc/semantic-release-slack-bot/issues/81)) 83b4699
* allows a custom environment variable name for Slack webhook ([juliuscc#36](https://github.com/pinginc/semantic-release-slack-bot/issues/36)) a8bec27
* **core:** upgrade semantic-release to version v20 ([juliuscc#104](https://github.com/pinginc/semantic-release-slack-bot/issues/104)) 54ee3bd, closes juliuscc#103
* Empty commit to trigger major release 526e3ef
* **Error message:** Improve error message with a good description a5f7a7b
* Finalized notification messages b8ade21
* implement automatic conversion of Release Notes from Markdown to Slack Markdown f7b1955
* Include package name in notification 20e7a62
* **Logger:** Added logger c22afba
* Made button icon better aligned 3b1e420
* Made index page nice f424e7f
* Nicer error message 2e4a1c2
* Nicer slack message 8ef7a68
* **Notifications:** Added text for notification 1084b5e
* OWL-2911: fork project ([#3](#3)) faee31d
* **templating:** Merged changes with new templating system and updated some details 90d01b6, closes #2
* update semantic release version ([juliuscc#85](https://github.com/pinginc/semantic-release-slack-bot/issues/85)) 4a31a5f

### Bug Fixes

* add keyword (but actually force ci to publish) 07b918d
* add protocol to url starting with git@ ([juliuscc#31](https://github.com/pinginc/semantic-release-slack-bot/issues/31)) 8baf727
* Added a favicon 8c806ea
* Added immediate logging of api exceptions 5679b4e, closes juliuscc#19
* Added verifyCondition hook to check for the correct environment variable aa82207, closes #1
* adjust ci f12f7e9
* Avoid truncating in the middle of markdown ([juliuscc#20](https://github.com/pinginc/semantic-release-slack-bot/issues/20)) bc373f9
* bump peer dependency ([juliuscc#38](https://github.com/pinginc/semantic-release-slack-bot/issues/38)) 6103a60
* bumps semantic-release requirement to <19 ([juliuscc#77](https://github.com/pinginc/semantic-release-slack-bot/issues/77)) 8d844ec
* **ci:** Added checkout to deploy 8b7ffd6
* **ci:** Restored cached filed before deploying e106418
* **ci:** test2 f9df42f
* **ci:** Tried fixing a ci config bug 5c1aea9
* **dependencies:** Added missing dependency 93b12f4
* Fix dependencies 7956978
* Fixed how messages are truncated acec2b5, closes juliuscc#19
* Fixed spelling of JSON fb558a1
* **getrepoinfo:** fix for other TLD checking in repo url ([juliuscc#33](https://github.com/pinginc/semantic-release-slack-bot/issues/33)) 22d83db
* make ci work 818fe92
* minor refactor d3e66f2
* npm audit fix 3f1956e
* **package.json:** Made project public 4430fae
* remove hashtag from version number ([juliuscc#94](https://github.com/pinginc/semantic-release-slack-bot/issues/94)) 7795cda, closes juliuscc#93
* rename wrongly named file 7383085
* repo_url typo e30d3a1
* simplify code and add tests ([juliuscc#22](https://github.com/pinginc/semantic-release-slack-bot/issues/22)) cff4304
* slack token missing bearer prefix ([juliuscc#84](https://github.com/pinginc/semantic-release-slack-bot/issues/84)) 1d410f7
* slackToken based message returns a JSON object ([juliuscc#89](https://github.com/pinginc/semantic-release-slack-bot/issues/89)) e85e59c
* **success:** Fixed linting error in success 4e7c7ed
* support more vendors ([juliuscc#25](https://github.com/pinginc/semantic-release-slack-bot/issues/25)) c0c378a
* **template:** fix replacement of a multiple occurence of the same variable ([juliuscc#46](https://github.com/pinginc/semantic-release-slack-bot/issues/46)) 73c2238
* **test:** test1 02af17f
* Truncate release notes on "onSuccessTemplate" ([juliuscc#23](https://github.com/pinginc/semantic-release-slack-bot/issues/23)) ad3b0af, closes juliuscc#21
* truncated release notes > 3000 chars b5a861c
* Update creation of tag link in default success template ([juliuscc#90](https://github.com/pinginc/semantic-release-slack-bot/issues/90)) 9f4c735, closes juliuscc#82
* update peer dependency to allow future semantic release versions ([juliuscc#108](https://github.com/pinginc/semantic-release-slack-bot/issues/108)) 4a89801
* updated green color 7b63086
* upgrade micromatch ([juliuscc#123](https://github.com/pinginc/semantic-release-slack-bot/issues/123)) 34e721a
* use package_name on fail message ([juliuscc#109](https://github.com/pinginc/semantic-release-slack-bot/issues/109)) 214aef0
* Used the linter c4c0f3d
* **verify-conditions:** Added check for non existant package name dc5f1c1, closes #4

### Other

* Add possibility to turn off truncation ([juliuscc#52](https://github.com/pinginc/semantic-release-slack-bot/issues/52)) 32cf994
* Add screenshot e785e3a
* add semantic release 8c20cb5
* Add slack badge 4726b05
* Added a lint stage to the ci 57bf855
* Added colaborator to license 30f6fd5
* Added lambda and redirect page d1089d2
* Added printers with all valid properties b925a19
* Added security related instructions 297f9ca
* Added stuff a7eea92
* Added two better screenshots 9e6208c
* append Template to options 899ba64
* Bump dependencies ([juliuscc#55](https://github.com/pinginc/semantic-release-slack-bot/issues/55)) 3c499f3
* bump slackify-markdown ([juliuscc#69](https://github.com/pinginc/semantic-release-slack-bot/issues/69)) c8cb52b
* Create PRIVACY.md d47e989
* feat(ci): aa6a5f5
* Finalized truncation of too long messages 53b563f
* fix circleci badge link d32447b
* fixed old title dc897d9
* Fixes nicer indentation in code snippets 1b0af6a
* github_path > repo_path + added repo_url 907d2d8
* Initial commit 390f1bb
* Makes code in Readme.md nicer 8e55982
* Merge branch 'AndrewLeedham-master' 329c85a
* Merge branch 'master' of github.com:juliuscc/semantic-release-slack-bot ce4c896
* Merge pull request [juliuscc#11](https://github.com/pinginc/semantic-release-slack-bot/issues/11) from juliuscc/dependabot/npm_and_yarn/lodash.template-4.5.0 83cb943
* Merge pull request [#5](#5) from thopaw/fix-message-length 3c5a70d
* Merge remote-tracking branch 'origin/master' 9f415b3
* **naming:** Rename test files ([juliuscc#54](https://github.com/pinginc/semantic-release-slack-bot/issues/54)) be18847
* npm init 2b6c206
* **prettier:** changes tab indentation to 2 space indentation ([juliuscc#32](https://github.com/pinginc/semantic-release-slack-bot/issues/32)) f1aa538
* **Readme.md:** First draft of readme 49ec79d
* **readme:** add templating options 7efa3e2
* **Readme:** Added build status shield 8f3ba60
* **Readme:** Minor update on readme to make more idiomatic 5d330dc
* **Reamde:** Made docs look nicer cb4e01f
* refactored lambda script 9947f86
* Removed comments 2612c08
* Removed comments 9c98379
* Removed trash 4ed30aa
* Removed unnecessary log line. 37e0df5, closes juliuscc#43
* Rename wiki/index.html to docs/index.html 14db594
* **slackChannel:**  missing # in slackChannel ([juliuscc#100](https://github.com/pinginc/semantic-release-slack-bot/issues/100)) e7d1c4d
* test a6d9916
* Update README.md 41a32e1
* Update README.md 63582af
* Upload screenshot 6946c87
* Uppdated deployment URL 3ffea71
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
dependencies Adds or updates dependencies
Development

Successfully merging this pull request may close these issues.

0 participants