Skip to content

Commit

Permalink
Apply scheduled running result
Browse files Browse the repository at this point in the history
  • Loading branch information
github-actions[bot] committed Aug 7, 2024
1 parent 948e354 commit 1bfece0
Show file tree
Hide file tree
Showing 4 changed files with 96 additions and 0 deletions.
12 changes: 12 additions & 0 deletions Outputs/Dependencies.json
Original file line number Diff line number Diff line change
Expand Up @@ -358,5 +358,17 @@
"title" : "1.3.6",
"url" : "https://github.com/pointfreeco/swift-dependencies/releases/tag/1.3.6",
"version" : "1.3.6"
},
{
"body" : "## What's Changed\r\n\r\n* Fixed: Add explicit XCTestDynamicOverlay dependency to DependenciesMacros target (thanks @andriyslyusar, https://github.com/pointfreeco/swift-dependencies/pull/254).\r\n* Fixed: Address Swift 6 snapshot boundary issue (thanks @hallee, https://github.com/pointfreeco/swift-dependencies/pull/256).\r\n\r\n## New Contributors\r\n* @andriyslyusar made their first contribution in https://github.com/pointfreeco/swift-dependencies/pull/254\r\n\r\n**Full Changelog**: https://github.com/pointfreeco/swift-dependencies/compare/1.3.6...1.3.7",
"createdAt" : "2024-08-07T01:35:47+09:00",
"fetchedFromAPIAt" : "2024-08-07T10:01:18+09:00",
"id" : "RE_kwDOIF_Mq84KEfkU",
"owner" : "pointfreeco",
"publishedAt" : "2024-08-07T01:39:03+09:00",
"repository" : "swift-dependencies",
"title" : "1.3.7",
"url" : "https://github.com/pointfreeco/swift-dependencies/releases/tag/1.3.7",
"version" : "1.3.7"
}
]
12 changes: 12 additions & 0 deletions Outputs/Swift Crypto.json
Original file line number Diff line number Diff line change
Expand Up @@ -478,5 +478,17 @@
"title" : "Swift Crypto 3.5.1",
"url" : "https://github.com/apple/swift-crypto/releases/tag/3.5.1",
"version" : "3.5.1"
},
{
"body" : "### SemVer Minor\r\n\r\n- extras: Provide initializers for RSA keys from RSA parameters (#247)\r\n\r\n### SemVer Patch\r\n\r\n- Reduce the number of heap allocations when computing hash digests (#238, patch credit to @baarde)",
"createdAt" : "2024-07-22T20:01:44+09:00",
"fetchedFromAPIAt" : "2024-08-07T10:01:18+09:00",
"id" : "RE_kwDOC9Swts4KEVBc",
"owner" : "apple",
"publishedAt" : "2024-08-06T22:30:36+09:00",
"repository" : "swift-crypto",
"title" : "Swift Crypto 3.6.0",
"url" : "https://github.com/apple/swift-crypto/releases/tag/3.6.0",
"version" : "3.6.0"
}
]
24 changes: 24 additions & 0 deletions Outputs/SwiftLint.json
Original file line number Diff line number Diff line change
Expand Up @@ -658,5 +658,29 @@
"title" : "0.55.1: Universal Washing Powder",
"url" : "https://github.com/realm/SwiftLint/releases/tag/0.55.1",
"version" : "0.55.1"
},
{
"body" : "#### Breaking\r\n\r\n* The deprecated `--path` and `--in-process-sourcekit` arguments have now been\r\n removed completely. \r\n [Martin Redington](https://github.com/mildm8nnered)\r\n [SimplyDanny](https://github.com/SimplyDanny)\r\n [#5614](https://github.com/realm/SwiftLint/issues/5614)\r\n\r\n* When SwiftLint corrects violations automatically (`swiftlint lint --fix`)\r\n it doesn't report the exact location of the fix any longer. The new format\r\n is `<file-path>: Correcting <rule-name>` without line and column numbers.\r\n Reason: Correction positions are likely just incorrect, especially when\r\n multiple rules apply their rewrites. Fixing that is not trivial and likely\r\n not worth the effort also considering that there haven't been any bug\r\n reports about wrong correction positions so far. \r\n [SimplyDanny](https://github.com/SimplyDanny)\r\n\r\n#### Experimental\r\n\r\n* None.\r\n\r\n#### Enhancements\r\n\r\n* Linting got up to 30% faster due to the praisworthy performance\r\n improvements done in the [SwiftSyntax](https://github.com/swiftlang/swift-syntax) library.\r\n\r\n* Rewrite the following rules with SwiftSyntax:\r\n * `missing_docs`\r\n\r\n [woxtu](https://github.com/woxtu) \r\n [SimplyDanny](https://github.com/SimplyDanny) \r\n\r\n* Add new `prefer_key_path` rule that triggers when a trailing closure on a standard\r\n function call is only hosting a (chained) member access expression since the closure\r\n can be replaced with a key path argument. Likewise, it triggers on closure arguments. \r\n [SimplyDanny](https://github.com/SimplyDanny)\r\n\r\n* Adds `baseline` and `write_baseline` configuration file settings, equivalent\r\n to the `--baseline` and `--write-baseline` command line options. \r\n [Martin Redington](https://github.com/mildm8nnered)\r\n [#5552](https://github.com/realm/SwiftLint/issues/5552)\r\n\r\n* Add `no_empty_block` opt-in rule to validate that code blocks are not empty.\r\n They should at least contain a comment. \r\n [Ueeek](https://github.com/Ueeek)\r\n [#5615](https://github.com/realm/SwiftLint/issues/5615)\r\n\r\n* Add new `contrasted_opening_brace` rule that enforces opening\r\n braces to be on a separate line after the preceding declaration. \r\n [SimplyDanny](https://github.com/SimplyDanny)\r\n\r\n* Add new `unused_parameter` rule that triggers on function/initializer/subscript\r\n parameters that are not used inside of the function/initializer/subscript. \r\n [SimplyDanny](https://github.com/SimplyDanny)\r\n [#2120](https://github.com/realm/SwiftLint/issues/2120)\r\n\r\n* Support `--target` paths being passed to command plugin by Xcode. \r\n [SimplyDanny](https://github.com/SimplyDanny)\r\n [#5603](https://github.com/realm/SwiftLint/issues/5603)\r\n\r\n* Add modified configurations to examples in rule documentation. \r\n [SimplyDanny](https://github.com/SimplyDanny)\r\n\r\n* Add new option `evaluate_effective_access_control_level` to `missing_docs`\r\n rule. Setting it to `true` stops the rule from triggering on declarations\r\n inside of types with lower visibility. These declarations effectively\r\n have at most the same access level. \r\n [SimplyDanny](https://github.com/SimplyDanny)\r\n\r\n* Add new `--check-for-updates` command line option for the `lint`, `analyze`,\r\n and `version` subcommands to check for new versions of SwiftLint, and an\r\n equivalent `check_for_updates` configuration file setting. \r\n [Martin Redington](https://github.com/mildm8nnered)\r\n [SimplyDanny](https://github.com/SimplyDanny)\r\n [Ian Leitch](https://github.com/ileitch)\r\n [#5613](https://github.com/realm/SwiftLint/issues/5613)\r\n\r\n* Add new `--only-rule` command line option for the `lint` and `analyze`,\r\n subcommands that overrides configuration file rule enablement and\r\n disablement, in particular to facilitate running `--fix` for single rules\r\n without having to temporarily edit the configuration file.\r\n [Martin Redington](https://github.com/mildm8nnered)\r\n [#5666](https://github.com/realm/SwiftLint/issues/5666)\r\n\r\n#### Bug Fixes\r\n\r\n* Fix a few false positives and negatives by updating the parser to support\r\n Swift 6 with all its new language constructs. \r\n [SimplyDanny](https://github.com/SimplyDanny)\r\n\r\n* Stop triggering `mark` rule on \"mark\" comments in the middle of another\r\n comment. \r\n [SimplyDanny](https://github.com/SimplyDanny)\r\n [#5592](https://github.com/realm/SwiftLint/issues/5592)\r\n\r\n* Don't consider specialized imports with attributes as duplicates in\r\n `duplicate_imports` rule. \r\n [SimplyDanny](https://github.com/SimplyDanny)\r\n [#5716](https://github.com/realm/SwiftLint/issues/5716)\r\n\r\n* Use correct types and relative paths in SARIF reporter output. Generally\r\n avoid escaping slashes in JSON output as well. \r\n [SimplyDanny](https://github.com/SimplyDanny)\r\n [#5598](https://github.com/realm/SwiftLint/issues/5598)\r\n [#5599](https://github.com/realm/SwiftLint/issues/5599)\r\n\r\n* Keep initializers with attributed parameters in\r\n `unneeded_synthesized_initializer` rule. \r\n [SimplyDanny](https://github.com/SimplyDanny)\r\n [#5153](https://github.com/realm/SwiftLint/issues/5153)\r\n\r\n* Make `vertical_whitespace_between_cases` rule work for\r\n cases ending with a string literal. \r\n [ilendemli](https://github.com/ilendemli)\r\n [#5612](https://github.com/realm/SwiftLint/issues/5612)\r\n\r\n* Ignore access level modifiers restricted to value setting in\r\n `extension_access_modifier` rule. \r\n [SimplyDanny](https://github.com/SimplyDanny)\r\n [#5623](https://github.com/realm/SwiftLint/issues/5623)\r\n\r\n* Fix `baseline compare` incorrectly reporting some violations\r\n as new, and also now sorts the violations from `baseline compare`\r\n deterministically. \r\n [Martin Redington](https://github.com/mildm8nnered)\r\n [#5606](https://github.com/realm/SwiftLint/issues/5606)\r\n\r\n* Fix rewriting for `implicit_return` rule when violations are\r\n nested within each other. \r\n [Martin Redington](https://github.com/mildm8nnered)\r\n [#5660](https://github.com/realm/SwiftLint/issues/5660)\r\n\r\n* Fix `opening_brace` correction and make sure that disable commands\r\n are taken into account before applying a fix. \r\n [swiftty](https://github.com/swiftty)\r\n [SimplyDanny](https://github.com/SimplyDanny)\r\n [#5598](https://github.com/realm/SwiftLint/issues/5598)\r\n\r\n* Violations of the `typesafe_array_init` rule will now be correctly\r\n reported as such, instead of as violations of the `array_init`\r\n rule. \r\n [Martin Redington](https://github.com/mildm8nnered)\r\n [#5709](https://github.com/realm/SwiftLint/issues/5709)\r\n\r\n---\r\n\r\n### Using Bazel\r\n\r\nWith bzlmod:\r\n\r\n```\r\n// Pending BCR update\r\nbazel_dep(name = \"swiftlint\", version = \"0.56.0\", repo_name = \"SwiftLint\")\r\n```\r\n\r\nWithout bzlmod, put this in your `WORKSPACE`:\r\n\r\n<details>\r\n\r\n<summary>WORKSPACE</summary>\r\n\r\n```python\r\nload(\"@bazel_tools//tools/build_defs/repo:http.bzl\", \"http_archive\")\r\n\r\nhttp_archive(\r\n name = \"build_bazel_rules_apple\",\r\n sha256 = \"9e26307516c4d5f2ad4aee90ac01eb8cd31f9b8d6ea93619fc64b3cbc81b0944\",\r\n url = \"https://github.com/bazelbuild/rules_apple/releases/download/2.2.0/rules_apple.2.2.0.tar.gz\",\r\n)\r\n\r\nload(\r\n \"@build_bazel_rules_apple//apple:repositories.bzl\",\r\n \"apple_rules_dependencies\",\r\n)\r\n\r\napple_rules_dependencies()\r\n\r\nload(\r\n \"@build_bazel_rules_swift//swift:repositories.bzl\",\r\n \"swift_rules_dependencies\",\r\n)\r\n\r\nswift_rules_dependencies()\r\n\r\nload(\r\n \"@build_bazel_rules_swift//swift:extras.bzl\",\r\n \"swift_rules_extra_dependencies\",\r\n)\r\n\r\nswift_rules_extra_dependencies()\r\n\r\nhttp_archive(\r\n name = \"SwiftLint\",\r\n sha256 = \"40a7873d54899ace4e485317d172c19507135ae1b3683159d521cc1daa42e196\",\r\n url = \"https://github.com/realm/SwiftLint/releases/download/0.56.0/bazel.tar.gz\",\r\n)\r\n\r\nload(\"@SwiftLint//bazel:repos.bzl\", \"swiftlint_repos\")\r\n\r\nswiftlint_repos()\r\n\r\nload(\"@SwiftLint//bazel:deps.bzl\", \"swiftlint_deps\")\r\n\r\nswiftlint_deps()\r\n```\r\n\r\n</details>\r\n\r\nThen you can run SwiftLint in the current directory with this command:\r\n\r\n```console\r\nbazel run @SwiftLint//:swiftlint -- --help\r\n```\r\n",
"createdAt" : "2024-08-07T05:37:33+09:00",
"fetchedFromAPIAt" : "2024-08-07T10:01:18+09:00",
"id" : "RE_kwDOAiE69s4KEoSY",
"owner" : "realm",
"publishedAt" : "2024-08-07T05:37:46+09:00",
"repository" : "SwiftLint",
"title" : "0.56.0: Heat Pump Dryer",
"url" : "https://github.com/realm/SwiftLint/releases/tag/0.56.0",
"version" : "0.56.0"
},
{
"body" : "#### Breaking\n\n* None.\n\n#### Experimental\n\n* None.\n\n#### Enhancements\n\n* None.\n\n#### Bug Fixes\n\n* Let `contrasted_opening_brace` be an opt-in rule. \n [SimplyDanny](https://github.com/SimplyDanny)\n\n---\n\n### Using Bazel\n\nWith bzlmod:\n\n```\n// Pending BCR update\nbazel_dep(name = \"swiftlint\", version = \"0.56.1\", repo_name = \"SwiftLint\")\n```\n\nWithout bzlmod, put this in your `WORKSPACE`:\n\n<details>\n\n<summary>WORKSPACE</summary>\n\n```python\nload(\"@bazel_tools//tools/build_defs/repo:http.bzl\", \"http_archive\")\n\nhttp_archive(\n name = \"build_bazel_rules_apple\",\n sha256 = \"9e26307516c4d5f2ad4aee90ac01eb8cd31f9b8d6ea93619fc64b3cbc81b0944\",\n url = \"https://github.com/bazelbuild/rules_apple/releases/download/2.2.0/rules_apple.2.2.0.tar.gz\",\n)\n\nload(\n \"@build_bazel_rules_apple//apple:repositories.bzl\",\n \"apple_rules_dependencies\",\n)\n\napple_rules_dependencies()\n\nload(\n \"@build_bazel_rules_swift//swift:repositories.bzl\",\n \"swift_rules_dependencies\",\n)\n\nswift_rules_dependencies()\n\nload(\n \"@build_bazel_rules_swift//swift:extras.bzl\",\n \"swift_rules_extra_dependencies\",\n)\n\nswift_rules_extra_dependencies()\n\nhttp_archive(\n name = \"SwiftLint\",\n sha256 = \"100aa8cbe1c42b0503d5b0a6c1944b9955c1c1795d59e39a4c1d3a5a3153c5b6\",\n url = \"https://github.com/realm/SwiftLint/releases/download/0.56.1/bazel.tar.gz\",\n)\n\nload(\"@SwiftLint//bazel:repos.bzl\", \"swiftlint_repos\")\n\nswiftlint_repos()\n\nload(\"@SwiftLint//bazel:deps.bzl\", \"swiftlint_deps\")\n\nswiftlint_deps()\n```\n\n</details>\n\nThen you can run SwiftLint in the current directory with this command:\n\n```console\nbazel run @SwiftLint//:swiftlint -- --help\n```\n",
"createdAt" : "2024-08-07T08:09:36+09:00",
"fetchedFromAPIAt" : "2024-08-07T10:01:18+09:00",
"id" : "RE_kwDOAiE69s4KEsXq",
"owner" : "realm",
"publishedAt" : "2024-08-07T08:09:48+09:00",
"repository" : "SwiftLint",
"title" : "0.56.1: Heat Pump Dryer",
"url" : "https://github.com/realm/SwiftLint/releases/tag/0.56.1",
"version" : "0.56.1"
}
]
48 changes: 48 additions & 0 deletions Outputs/xcbeautify.json
Original file line number Diff line number Diff line change
Expand Up @@ -683,6 +683,18 @@
"url" : "https://github.com/cpisciotta/xcbeautify/releases/tag/2.0.1",
"version" : "2.0.1"
},
{
"body" : "## What's Changed\r\n* Update Minimum SwiftFormat to 0.54.1 by @cpisciotta in https://github.com/cpisciotta/xcbeautify/pull/292\r\n* Bump github.com/apple/swift-argument-parser from 1.4.0 to 1.5.0 by @dependabot in https://github.com/cpisciotta/xcbeautify/pull/291\r\n\r\n\r\n**Full Changelog**: https://github.com/cpisciotta/xcbeautify/compare/2.4.1...2.5.0",
"createdAt" : "2024-07-27T02:21:20+09:00",
"fetchedFromAPIAt" : "2024-08-07T10:01:18+09:00",
"id" : "RE_kwDOCNUZc84J-mSB",
"owner" : "cpisciotta",
"publishedAt" : "2024-07-27T02:21:33+09:00",
"repository" : "xcbeautify",
"title" : "2.5.0",
"url" : "https://github.com/cpisciotta/xcbeautify/releases/tag/2.5.0",
"version" : "2.5.0"
},
{
"body" : "## What's Changed\r\n* Prefix parallel test results with test suite name by @jflan-dd in https://github.com/cpisciotta/xcbeautify/pull/289\r\n\r\n## New Contributors\r\n* @jflan-dd made their first contribution in https://github.com/cpisciotta/xcbeautify/pull/289\r\n\r\n**Full Changelog**: https://github.com/cpisciotta/xcbeautify/compare/2.4.0...2.4.1",
"createdAt" : "2024-07-13T01:01:09+09:00",
Expand Down Expand Up @@ -755,6 +767,30 @@
"url" : "https://github.com/cpisciotta/xcbeautify/releases/tag/2.3.1",
"version" : "2.3.1"
},
{
"body" : "## What's Changed\r\n* Delete TestSummary by @cpisciotta in https://github.com/cpisciotta/xcbeautify/pull/237\r\n* Ignore VSCode Files by @cpisciotta in https://github.com/cpisciotta/xcbeautify/pull/295\r\n\r\n\r\n**Full Changelog**: https://github.com/cpisciotta/xcbeautify/compare/2.5.0...2.6.0",
"createdAt" : "2024-07-30T10:21:26+09:00",
"fetchedFromAPIAt" : "2024-08-07T10:01:18+09:00",
"id" : "RE_kwDOCNUZc84J_6xp",
"owner" : "cpisciotta",
"publishedAt" : "2024-07-30T10:21:38+09:00",
"repository" : "xcbeautify",
"title" : "2.6.0",
"url" : "https://github.com/cpisciotta/xcbeautify/releases/tag/2.6.0",
"version" : "2.6.0"
},
{
"body" : "## What's Changed\r\n* Update CI Workflow by @cpisciotta in https://github.com/cpisciotta/xcbeautify/pull/296\r\n* Enable Upcoming and Experimental Features by @cpisciotta in https://github.com/cpisciotta/xcbeautify/pull/288\r\n\r\n\r\n**Full Changelog**: https://github.com/cpisciotta/xcbeautify/compare/2.6.0...2.7.0",
"createdAt" : "2024-07-30T12:03:20+09:00",
"fetchedFromAPIAt" : "2024-08-07T10:01:18+09:00",
"id" : "RE_kwDOCNUZc84J_8S4",
"owner" : "cpisciotta",
"publishedAt" : "2024-07-30T12:03:32+09:00",
"repository" : "xcbeautify",
"title" : "2.7.0",
"url" : "https://github.com/cpisciotta/xcbeautify/releases/tag/2.7.0",
"version" : "2.7.0"
},
{
"body" : "## What's Changed\r\n* Bump github.com/apple/swift-argument-parser from 1.3.1 to 1.4.0 by @dependabot in https://github.com/cpisciotta/xcbeautify/pull/281\r\n* Add Version Logging by @ikelax in https://github.com/cpisciotta/xcbeautify/pull/282\r\n* Rename isCi Flag by @cpisciotta in https://github.com/cpisciotta/xcbeautify/pull/286\r\n* Rename Logging Flag by @cpisciotta in https://github.com/cpisciotta/xcbeautify/pull/285\r\n\r\n## New Contributors\r\n* @ikelax made their first contribution in https://github.com/cpisciotta/xcbeautify/pull/282\r\n\r\n**Full Changelog**: https://github.com/cpisciotta/xcbeautify/compare/2.3.1...2.4.0",
"createdAt" : "2024-06-19T10:58:42+09:00",
Expand All @@ -766,5 +802,17 @@
"title" : "2.4.0",
"url" : "https://github.com/cpisciotta/xcbeautify/releases/tag/2.4.0",
"version" : "2.4.0"
},
{
"body" : "## What's Changed\r\n* Simplify Parser and Introduce Formatter by @cpisciotta in https://github.com/cpisciotta/xcbeautify/pull/238\r\n* Add Documentation by @cpisciotta in https://github.com/cpisciotta/xcbeautify/pull/301\r\n* Support Xcode 16 Beta 4 by @giginet in https://github.com/cpisciotta/xcbeautify/pull/297\r\n* Bump swift-actions/setup-swift from 1 to 2 by @dependabot in https://github.com/cpisciotta/xcbeautify/pull/300\r\n* Update CI Configurations by @cpisciotta in https://github.com/cpisciotta/xcbeautify/pull/302\r\n\r\n## New Contributors\r\n* @giginet made their first contribution in https://github.com/cpisciotta/xcbeautify/pull/297\r\n\r\n**Full Changelog**: https://github.com/cpisciotta/xcbeautify/compare/2.7.0...2.8.0",
"createdAt" : "2024-08-06T11:17:05+09:00",
"fetchedFromAPIAt" : "2024-08-07T10:01:18+09:00",
"id" : "RE_kwDOCNUZc84KD9wk",
"owner" : "cpisciotta",
"publishedAt" : "2024-08-06T11:17:19+09:00",
"repository" : "xcbeautify",
"title" : "2.8.0",
"url" : "https://github.com/cpisciotta/xcbeautify/releases/tag/2.8.0",
"version" : "2.8.0"
}
]

0 comments on commit 1bfece0

Please sign in to comment.