From 1a39d4eefcf36b59a57036bfe5cc7bec46833518 Mon Sep 17 00:00:00 2001 From: "google-cloud-policy-bot[bot]" <80869356+google-cloud-policy-bot[bot]@users.noreply.github.com> Date: Thu, 3 Jun 2021 09:09:00 -0600 Subject: [PATCH 1/3] chore: add SECURITY.md (#4) Co-authored-by: google-cloud-policy-bot[bot] <80869356+google-cloud-policy-bot[bot]@users.noreply.github.com> --- SECURITY.md | 7 +++++++ 1 file changed, 7 insertions(+) create mode 100644 SECURITY.md diff --git a/SECURITY.md b/SECURITY.md new file mode 100644 index 0000000..8b58ae9 --- /dev/null +++ b/SECURITY.md @@ -0,0 +1,7 @@ +# Security Policy + +To report a security issue, please use [g.co/vulnz](https://g.co/vulnz). + +The Google Security Team will respond within 5 working days of your report on g.co/vulnz. + +We use g.co/vulnz for our intake, and do coordination and disclosure here using GitHub Security Advisory to privately discuss and fix the issue. From 7f65db00cd1196d2fc2d7ec2197a594d6b56a568 Mon Sep 17 00:00:00 2001 From: Bu Sun Kim <8822365+busunkim96@users.noreply.github.com> Date: Tue, 15 Jun 2021 18:52:21 -0600 Subject: [PATCH 2/3] fix: exclude docs and tests from package (#5) Only include packages that start with google in the published artifact --- setup.py | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/setup.py b/setup.py index a687fed..2eab26a 100644 --- a/setup.py +++ b/setup.py @@ -33,7 +33,11 @@ author_email="googleapis-packages@oogle.com", license="Apache 2.0", url="https://github.com/googleapis/python-appengine-logging", - packages=setuptools.PEP420PackageFinder.find(), + packages=[ + package + for package in setuptools.PEP420PackageFinder.find() + if package.startswith("google") + ], namespace_packages=("google", "google.cloud"), platforms="Posix; MacOS X; Windows", include_package_data=True, From 68cf016b6b502d5652962cb55caa222f6ef18d36 Mon Sep 17 00:00:00 2001 From: "release-please[bot]" <55107282+release-please[bot]@users.noreply.github.com> Date: Wed, 16 Jun 2021 16:18:04 +0000 Subject: [PATCH 3/3] chore: release 0.1.1 (#6) :robot: I have created a release \*beep\* \*boop\* --- ### [0.1.1](https://www.github.com/googleapis/python-appengine-logging/compare/v0.1.0...v0.1.1) (2021-06-16) ### Bug Fixes * exclude docs and tests from package ([#5](https://www.github.com/googleapis/python-appengine-logging/issues/5)) ([7f65db0](https://www.github.com/googleapis/python-appengine-logging/commit/7f65db00cd1196d2fc2d7ec2197a594d6b56a568)) --- This PR was generated with [Release Please](https://github.com/googleapis/release-please). See [documentation](https://github.com/googleapis/release-please#release-please). --- CHANGELOG.md | 7 +++++++ setup.py | 2 +- 2 files changed, 8 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 820c401..d190f2e 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,12 @@ # Changelog +### [0.1.1](https://www.github.com/googleapis/python-appengine-logging/compare/v0.1.0...v0.1.1) (2021-06-16) + + +### Bug Fixes + +* exclude docs and tests from package ([#5](https://www.github.com/googleapis/python-appengine-logging/issues/5)) ([7f65db0](https://www.github.com/googleapis/python-appengine-logging/commit/7f65db00cd1196d2fc2d7ec2197a594d6b56a568)) + ## 0.1.0 (2021-06-02) diff --git a/setup.py b/setup.py index 2eab26a..07d5bb9 100644 --- a/setup.py +++ b/setup.py @@ -17,7 +17,7 @@ import os import setuptools # type: ignore -version = "0.1.0" +version = "0.1.1" package_root = os.path.abspath(os.path.dirname(__file__))