From 5dcdbeaa0adb08489ff8a8fa30b1c3a122f1d733 Mon Sep 17 00:00:00 2001 From: Tom Prince Date: Fri, 19 Jul 2019 13:01:33 -0600 Subject: [PATCH] 23.6.0 --- CHANGELOG.md | 10 ++++++++++ scriptworker/version.py | 2 +- version.json | 4 ++-- 3 files changed, 13 insertions(+), 3 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 3185f73e..26f4cad2 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -2,6 +2,16 @@ All notable changes to this project will be documented in this file. This project adheres to [Semantic Versioning](http://semver.org/). +## [23.6.0] - 2019-07-19 +### Fixed +- Don't include the non-existent top-level `repository` key in github json-e context. +- Remove untrusted repos from list of repos accepted by `trace_back_to_tree` controlling + tasks allowed as dependencies to tasks with restricted scopes. + +### Changed +- Allow arbitrary github repos (with appropriate scopes, in particular PRs), to use non-restricted + scopes. + ## [23.5.0] - 2019-07-17 ### Added - Provide more complete github contexts to pull requests. diff --git a/scriptworker/version.py b/scriptworker/version.py index 3e0aba61..12d63bb8 100755 --- a/scriptworker/version.py +++ b/scriptworker/version.py @@ -52,7 +52,7 @@ def get_version_string(version): # 1}}} # Semantic versioning 2.0.0 http://semver.org/ -__version__ = (23, 5, 0) +__version__ = (23, 6, 0) __version_string__ = get_version_string(__version__) diff --git a/version.json b/version.json index b9d5f442..19b21041 100644 --- a/version.json +++ b/version.json @@ -1,8 +1,8 @@ { "version": [ 23, - 5, + 6, 0 ], - "version_string": "23.5.0" + "version_string": "23.6.0" }