Skip to content

Commit

Permalink
Merge branch 'release/6.3.0'
Browse files Browse the repository at this point in the history
  • Loading branch information
matkoch committed Dec 12, 2022
2 parents 39132f3 + 87e024b commit 1b79192
Show file tree
Hide file tree
Showing 114 changed files with 6,247 additions and 917 deletions.
24 changes: 21 additions & 3 deletions .github/ISSUE_TEMPLATE/bug_report.yml
Original file line number Diff line number Diff line change
@@ -1,7 +1,14 @@
name: 🐞 Bug Report
description: "Report something that doesn't look alright"
labels: "bug :beetle:"
description: "Report something that doesn't look alright."
labels: ["bug", "triage"]
body:
- type: markdown
attributes:
value: |
_Hi there :wave: and thanks for taking the time to report a bug!_
_Before you continue, please check our updated [contribution guidelines](https://github.com/nuke-build/nuke/blob/develop/CONTRIBUTING.md) ([history](https://github.com/nuke-build/nuke/commits/develop/CONTRIBUTING.md))._
- type: input
id: usage-information
attributes:
Expand All @@ -24,7 +31,7 @@ body:
attributes:
label: Reproduction Steps
description: |
Please include minimal steps to reproduce the problem if possible. E.g.: the smallest possible code snippet; or a small project, with steps to run it. If possible include text as text rather than screenshots (so it shows up in searches).
Please include minimal steps to reproduce the problem if possible. E.g.: the smallest possible code snippet; or a small project, with steps to run it. Make sure to include logs and exceptions as text rather than screenshots.
placeholder: Minimal Reproduction
validations:
required: true
Expand Down Expand Up @@ -68,3 +75,14 @@ body:
placeholder: Known Workarounds
validations:
required: false

- type: dropdown
id: pull-request
attributes:
label: Could you help with a pull-request?
description: Make sure you have read the sections about [consumer expectations](https://github.com/nuke-build/nuke/blob/develop/CONTRIBUTING.md#consumer-expectations), [baseline contributions](https://github.com/nuke-build/nuke/blob/develop/CONTRIBUTING.md#baseline-contributions), [sustainability contributions](https://github.com/nuke-build/nuke/blob/develop/CONTRIBUTING.md#sustainability-contributions).
options:
- "No"
- "Yes"
validations:
required: true
20 changes: 10 additions & 10 deletions .github/ISSUE_TEMPLATE/config.yml
Original file line number Diff line number Diff line change
@@ -1,14 +1,14 @@
blank_issues_enabled: false
contact_links:
- name: 📚 Documentation
url: https://nuke.build/docs/getting-started/philosophy.html
about: Read our comprehensive documentation
url: https://nuke.build/docs/introduction/
about: Read our comprehensive documentation.
- name: 🚀 First-Class Support
url: https://github.com/sponsors/matkoch?frequency=one-time&sponsor=matkoch
about: Make a sponsorship to receive professional support
- name: 💬 Chat on Slack
url: https://slofile.com/slack/nukebuildnet
about: Get in touch with the whole community
- name: 🐦 Follow on Twitter
url: https://twitter.com/nukebuildnet
about: Stay informed about the latest greatness
url: https://github.com/sponsors/matkoch?frequency=one-time
about: Make a sponsorship to receive professional support.
- name: 💬 Ask on Slack
url: https://nuke.build/slack
about: Get in touch with the whole community.
- name: 💬 Ask on Discord
url: https://nuke.build/discord
about: Get in touch with the whole community.
38 changes: 38 additions & 0 deletions .github/ISSUE_TEMPLATE/feature_idea.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,38 @@
name: 💡 Feature Idea
description: "Suggest new features for the project."
labels: ["enhancement", "triage"]
body:
- type: markdown
attributes:
value: |
_Hi there :wave: and thanks for taking the time to send a feature idea!_
_Before you continue, please check our updated [contribution guidelines](https://github.com/nuke-build/nuke/blob/develop/CONTRIBUTING.md) ([history](https://github.com/nuke-build/nuke/commits/develop/CONTRIBUTING.md))._
- type: textarea
attributes:
label: Description
description: What should the new feature do?
validations:
required: true

- type: textarea
attributes:
label: Usage Example
description: How would the proposed feature be used?

- type: textarea
attributes:
label: Alternative
description: What is the current alternative?

- type: dropdown
id: pull-request
attributes:
label: Could you help with a pull-request?
description: Make sure you have read the sections about [consumer expectations](https://github.com/nuke-build/nuke/blob/develop/CONTRIBUTING.md#consumer-expectations), [baseline contributions](https://github.com/nuke-build/nuke/blob/develop/CONTRIBUTING.md#baseline-contributions), [sustainability contributions](https://github.com/nuke-build/nuke/blob/develop/CONTRIBUTING.md#sustainability-contributions).
options:
- "No"
- "Yes"
validations:
required: true
20 changes: 0 additions & 20 deletions .github/ISSUE_TEMPLATE/feature_request.yml

This file was deleted.

7 changes: 7 additions & 0 deletions .github/SECURITY.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
# Reporting Security Issues

If you discover a security issue, please report it by sending an email to [Matthias Koch](mailto:[email protected]).

This will allow us to assess the risk, and make a fix available before we add a bug report to the GitHub repository.

Thanks!
24 changes: 12 additions & 12 deletions .github/workflows/continuous.yml
Original file line number Diff line number Diff line change
Expand Up @@ -30,12 +30,12 @@ jobs:
name: windows-latest
runs-on: windows-latest
steps:
- uses: actions/checkout@v2
- uses: actions/checkout@v3
with:
submodules: recursive
fetch-depth: 0
- name: Cache .nuke/temp, ~/.nuget/packages
uses: actions/cache@v2
uses: actions/cache@v3
with:
path: |
.nuke/temp
Expand All @@ -45,24 +45,24 @@ jobs:
run: ./build.cmd Test Pack
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
- uses: actions/upload-artifact@v1
- uses: actions/upload-artifact@v3
with:
name: test-results
path: output/test-results
- uses: actions/upload-artifact@v1
- uses: actions/upload-artifact@v3
with:
name: packages
path: output/packages
ubuntu-latest:
name: ubuntu-latest
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: actions/checkout@v3
with:
submodules: recursive
fetch-depth: 0
- name: Cache .nuke/temp, ~/.nuget/packages
uses: actions/cache@v2
uses: actions/cache@v3
with:
path: |
.nuke/temp
Expand All @@ -72,24 +72,24 @@ jobs:
run: ./build.cmd Test Pack
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
- uses: actions/upload-artifact@v1
- uses: actions/upload-artifact@v3
with:
name: test-results
path: output/test-results
- uses: actions/upload-artifact@v1
- uses: actions/upload-artifact@v3
with:
name: packages
path: output/packages
macos-latest:
name: macos-latest
runs-on: macos-latest
steps:
- uses: actions/checkout@v2
- uses: actions/checkout@v3
with:
submodules: recursive
fetch-depth: 0
- name: Cache .nuke/temp, ~/.nuget/packages
uses: actions/cache@v2
uses: actions/cache@v3
with:
path: |
.nuke/temp
Expand All @@ -99,11 +99,11 @@ jobs:
run: ./build.cmd Test Pack
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
- uses: actions/upload-artifact@v1
- uses: actions/upload-artifact@v3
with:
name: test-results
path: output/test-results
- uses: actions/upload-artifact@v1
- uses: actions/upload-artifact@v3
with:
name: packages
path: output/packages
8 changes: 8 additions & 0 deletions .nuke/build.schema.json
Original file line number Diff line number Diff line change
Expand Up @@ -24,6 +24,10 @@
"type": "boolean",
"description": "Indicates to continue a previously failed build attempt"
},
"DiscordWebhook": {
"type": "string",
"default": "Secrets must be entered via 'nuke :secrets [profile]'"
},
"GitHubRegistryApiKey": {
"type": "string",
"default": "Secrets must be entered via 'nuke :secrets [profile]'"
Expand Down Expand Up @@ -71,6 +75,10 @@
"Major": {
"type": "boolean"
},
"MastodonAccessToken": {
"type": "string",
"default": "Secrets must be entered via 'nuke :secrets [profile]'"
},
"NoLogo": {
"type": "boolean",
"description": "Disables displaying the NUKE logo"
Expand Down
23 changes: 22 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,25 @@ and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0.

## [vNext]

## [6.3.0] / 2022-12-12
- Added new version of `Octokit`
- Added `OptionalAttribute` to suppress auto-injection warnings
- Added ability to override `ProcessCustomLogger` in `ToolSettings`
- Added ability to exclude auto-linked files in build project
- Added `DiscordTasks`
- Added `MastodonTasks`
- Added `JavaScriptProject` project type
- Added `MakeNSISTasks`
- Fixed wording for static and dynamic conditions in build summary
- Fixed waiting for confirmation when input is redirected
- Fixed recursion into symlink directories
- Fixed `ProcessException` to output standard output
- Fixed `MinimalOutput` in `UnityTasks`
- Fixed missing `AzurePipelinesBuildReason`
- Fixed missing arguments in `DotNetTasks`
- Fixed argument formatting in `HelmTasks`
- Fixed missing command in `DotNetTasks`

## [6.2.1] / 2022-08-19
- Fixed logging configuration

Expand Down Expand Up @@ -971,7 +990,8 @@ and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0.
- Added CLT tasks for Git
- Fixed background color in console output

[vNext]: https://github.com/nuke-build/nuke/compare/6.2.1...HEAD
[vNext]: https://github.com/nuke-build/nuke/compare/6.3.0...HEAD
[6.3.0]: https://github.com/nuke-build/nuke/compare/6.2.1...6.3.0
[6.2.1]: https://github.com/nuke-build/nuke/compare/6.2.0...6.2.1
[6.2.0]: https://github.com/nuke-build/nuke/compare/6.1.2...6.2.0
[6.1.2]: https://github.com/nuke-build/nuke/compare/6.1.1...6.1.2
Expand Down Expand Up @@ -1064,3 +1084,4 @@ and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0.
[0.3.1]: https://github.com/nuke-build/nuke/compare/0.2.10...0.3.1
[0.2.10]: https://github.com/nuke-build/nuke/compare/0.2.0...0.2.10
[0.2.0]: https://github.com/nuke-build/nuke/tree/0.2.0

76 changes: 76 additions & 0 deletions CODE_OF_CONDUCT.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,76 @@
# Contributor Covenant Code of Conduct

## Our Pledge

In the interest of fostering an open and welcoming environment, we as
contributors and maintainers pledge to making participation in our project and
our community a harassment-free experience for everyone, regardless of age, body
size, disability, ethnicity, sex characteristics, gender identity and expression,
level of experience, education, socio-economic status, nationality, personal
appearance, race, religion, or sexual identity and orientation.

## Our Standards

Examples of behavior that contributes to creating a positive environment
include:

* Using welcoming and inclusive language
* Being respectful of differing viewpoints and experiences
* Gracefully accepting constructive criticism
* Focusing on what is best for the community
* Showing empathy towards other community members

Examples of unacceptable behavior by participants include:

* The use of sexualized language or imagery and unwelcome sexual attention or
advances
* Trolling, insulting/derogatory comments, and personal or political attacks
* Public or private harassment
* Publishing others' private information, such as a physical or electronic
address, without explicit permission
* Other conduct which could reasonably be considered inappropriate in a
professional setting

## Our Responsibilities

Project maintainers are responsible for clarifying the standards of acceptable
behavior and are expected to take appropriate and fair corrective action in
response to any instances of unacceptable behavior.

Project maintainers have the right and responsibility to remove, edit, or
reject comments, commits, code, wiki edits, issues, and other contributions
that are not aligned to this Code of Conduct, or to ban temporarily or
permanently any contributor for other behaviors that they deem inappropriate,
threatening, offensive, or harmful.

## Scope

This Code of Conduct applies both within project spaces and in public spaces
when an individual is representing the project or its community. Examples of
representing a project or community include using an official project e-mail
address, posting via an official social media account, or acting as an appointed
representative at an online or offline event. Representation of a project may be
further defined and clarified by project maintainers.

## Enforcement

Instances of abusive, harassing, or otherwise unacceptable behavior may be
reported by contacting [Matthias Koch](mailto:[email protected]). All
complaints will be reviewed and investigated and will result in a response that
is deemed necessary and appropriate to the circumstances. The project team is
obligated to maintain confidentiality with regard to the reporter of an incident.
Further details of specific enforcement policies may be posted separately.

Project maintainers who do not follow or enforce the Code of Conduct in good
faith may face temporary or permanent repercussions as determined by other
members of the project's leadership.

## Attribution

This Code of Conduct is adapted from the [Contributor Covenant][homepage], version 1.4,
available at https://www.contributor-covenant.org/version/1/4/code-of-conduct.html

[homepage]: https://www.contributor-covenant.org

For answers to common questions about this code of conduct, see
https://www.contributor-covenant.org/faq
Loading

0 comments on commit 1b79192

Please sign in to comment.