Iulian Onofrei
8f2bd49ddd
Fix typo in README
2021-11-11 10:33:51 -08:00
dependabot[bot]
55f09d4beb
⬆️ (deps): Bump danger from 8.4.1 to 8.4.2
...
Bumps [danger](https://github.com/danger/danger ) from 8.4.1 to 8.4.2.
- [Release notes](https://github.com/danger/danger/releases )
- [Changelog](https://github.com/danger/danger/blob/master/CHANGELOG.md )
- [Commits](https://github.com/danger/danger/compare/8.4.1...8.4.2 )
---
updated-dependencies:
- dependency-name: danger
dependency-type: direct:production
update-type: version-update:semver-patch
...
Signed-off-by: dependabot[bot] <support@github.com>
2021-11-11 10:25:12 -08:00
Ben Chatelain
9da3c3a1f7
Merge pull request #428 from mas-cli/monterey
...
🐛 Allow redownloads on macOS 12 Monterey
2021-11-03 19:32:02 -06:00
Chris Araman
73f2ca58d8
⚠️ Remove warning
2021-11-03 16:03:54 -07:00
Chris Araman
a499822dd8
🐛 Allow redownloads on macOS 12
2021-11-03 14:11:13 -07:00
Chris Araman
c7a104a250
🐛 Disable account
command on macOS 12
...
Documents #417 .
2021-11-03 14:11:12 -07:00
Chris Araman
4660b4505b
🐛 Disable purchase
command on macOS 10.15
...
Documents #289 .
2021-11-03 14:11:12 -07:00
Chris Araman
bfed0a7605
📄 Direct all disabled command warnings to #known-issues
2021-11-03 14:11:12 -07:00
Chris Araman
02ceea49cd
⚠️ Add a temporary warning about macOS Monterey
2021-11-02 20:16:17 -07:00
Chris Araman
9305160b2e
🧹 Lint
2021-11-02 20:16:17 -07:00
Chris Araman
3dc5789cdf
🐛 Print warnings and errors to stderr
...
Fixed #351 .
2021-11-02 20:16:17 -07:00
Justin Lecher
7fe27fc693
Use posix compliant tail syntax
...
homebrew allows using gnu coreutils on MacOS. Therefore we should
comply with posix standards
```bash
$ mas help | tail +3
tail: cannot open '+3' for reading: No such file or directory
$ type tail
tail is /usr/local/opt/coreutils/libexec/gnubin/tail
```
Switching to posix compliant `-n` syntax is compatible with UNIX and GNU tooling.
```bash
$ mas help | /usr/bin/tail -n +3 | wc -l
18
$ mas help | tail -n +3 | wc -l
18
```
2021-11-01 22:02:12 -07:00
Ben Chatelain
8c0267da3d
Merge pull request #424 from mas-cli/bump
...
🍺 Include macOS 12 Monterey when bottling
2021-10-26 18:26:16 -06:00
Ben Chatelain
5c269773f0
Merge branch 'main' into bump
2021-10-26 17:40:15 -06:00
Ben Chatelain
dc465df231
Merge pull request #425 from mas-cli/pk6
...
⬆️ PromiseKit (6.16.1)
2021-10-26 17:37:58 -06:00
Chris Araman
affb5f1b12
⬆️ PromiseKit (6.16.1)
2021-10-25 17:00:41 -07:00
Chris Araman
8a939a821f
🍺 Include Monterey in bottle builds
2021-10-25 16:59:01 -07:00
Chris Araman
e06dfc428f
🍺 Specify main
branch for --HEAD
installs
2021-10-25 16:59:01 -07:00
Chris Araman
3dcf3d2ebd
🍺 Add macOS 12 Monterey to custom formula
2021-10-25 16:59:00 -07:00
Chris Araman
261087786e
🍺 Update core formula from upstream
2021-10-25 16:59:00 -07:00
Chris Araman
4feb354032
🍺 Update Homebrew dependencies
2021-10-25 16:35:31 -07:00
Chris Araman
f50406ef52
Merge pull request #423 from mas-cli/dependabot/bundler/danger-8.4.1
...
⬆️ danger (8.4.1)
2021-10-25 10:51:08 -07:00
dependabot[bot]
868ab60a09
⬆️ (deps): Bump danger from 8.4.0 to 8.4.1
...
Bumps [danger](https://github.com/danger/danger ) from 8.4.0 to 8.4.1.
- [Release notes](https://github.com/danger/danger/releases )
- [Changelog](https://github.com/danger/danger/blob/master/CHANGELOG.md )
- [Commits](https://github.com/danger/danger/compare/v8.4.0...8.4.1 )
---
updated-dependencies:
- dependency-name: danger
dependency-type: direct:production
update-type: version-update:semver-patch
...
Signed-off-by: dependabot[bot] <support@github.com>
2021-10-25 12:01:44 +00:00
Chris Araman
eafd2d5c7b
Merge pull request #422 from mas-cli/oudated-os
...
🐛 Don't consider an app outdated if the update can't be installed on the current OS
2021-10-19 11:56:48 -07:00
Ben Chatelain
7a74278657
🚨 Remove TODO (leaving comment)
2021-10-19 07:19:31 -07:00
Ben Chatelain
8ef416cf35
👌🏻 Address review comments
2021-10-12 19:54:08 -06:00
Ben Chatelain
a955ff6bca
🚨 Fix lint issue
2021-10-12 19:54:08 -06:00
Ben Chatelain
1fe4b5b3e2
🍏 Ignore min OS for iOS apps
2021-10-12 19:54:08 -06:00
Ben Chatelain
75d6d39bd3
📋 Add kind property to SearchResult
2021-10-12 19:54:08 -06:00
Ben Chatelain
073ff08b87
🚨 Fix lint issue
2021-10-12 19:54:08 -06:00
Ben Chatelain
a78b9b338b
⬆️ swift-argument-parser (1.0.1)
2021-10-12 19:54:08 -06:00
Ben Chatelain
84461fa5c6
🐛 Don't consider an app outdated if the update can't be installed on the current OS
...
Fixes #420
2021-10-12 19:54:08 -06:00
dependabot[bot]
d4c06f9858
⬆️ (deps): Bump danger from 8.3.1 to 8.4.0
...
Bumps [danger](https://github.com/danger/danger ) from 8.3.1 to 8.4.0.
- [Release notes](https://github.com/danger/danger/releases )
- [Changelog](https://github.com/danger/danger/blob/master/CHANGELOG.md )
- [Commits](https://github.com/danger/danger/compare/8.3.1...v8.4.0 )
---
updated-dependencies:
- dependency-name: danger
dependency-type: direct:production
update-type: version-update:semver-minor
...
Signed-off-by: dependabot[bot] <support@github.com>
2021-10-05 12:58:41 -04:00
Ben Chatelain
05c7e08ad2
Merge pull request #415 from mas-cli/bump
...
⬆️ PromiseKit (6.16.0)
2021-09-27 19:52:56 -06:00
Chris Araman
13bb4d1c57
⬆️ PromiseKit (6.16.0)
2021-09-25 10:21:23 -07:00
Ben Chatelain
e6233ee122
🍺 Update formula version and custom tap bottle hashes
2021-09-08 18:29:41 -07:00
Ben Chatelain
ba45912f73
🔊 Fail bottle script earlier when formula hasn't been updated
2021-09-08 18:29:41 -07:00
Chris Araman
aeeb1c508e
🐛 Update branch in bug report template
2021-09-08 11:49:21 -07:00
Chris Araman
f673f6663d
⚙️ Update release drafter branch and version
2021-09-08 11:48:29 -07:00
Ben Chatelain
6b04203054
Merge pull request #407 from mas-cli/xcode13
2021-08-29 15:13:22 -06:00
Chris Araman
1176c00224
🔒 Update lockfiles
2021-08-29 13:05:40 -07:00
Chris Araman
e7b2ca88de
⬆️ Nimble (9.2.1)
2021-08-29 13:05:09 -07:00
Chris Araman
ca8684a142
🔥 Remove swiftenv
...
It is unused in our scripts, and there's no arm64 build available in kylef/formulae.
2021-08-29 13:03:36 -07:00
Ben Chatelain
7c960eeb93
Merge pull request #406 from mas-cli/swift-format-5.5
...
🧹 Enable linting with Xcode 13 beta 3
2021-07-26 18:43:41 -06:00
Chris Araman
999158ef23
🧹 Enable linting with Xcode 13 beta 3
2021-07-26 14:49:39 -07:00
Chris Araman
6cb7a77890
⬆️ Update lockfiles
2021-07-26 14:49:03 -07:00
Chris Araman
4d87eeaf3b
⬆️ SwiftFormat (0.48.9)
2021-07-12 20:54:28 -07:00
Chris Araman
cccd3453ef
💎 Update Ruby gems
2021-07-12 20:54:28 -07:00
Chris Araman
ab172c1c1d
⬆️ SwiftFormat (0.48.8)
2021-07-12 20:54:28 -07:00
Chris Araman
8680936865
⬆️ Ruby (3.0.2)
2021-07-12 20:54:28 -07:00