Skip to content

Commit

Permalink
Merge pull request #1160 from publishpress/release-v3.9.0
Browse files Browse the repository at this point in the history
Release v3.9.0
  • Loading branch information
olatechpro authored Nov 3, 2022
2 parents 10d1919 + 88afa67 commit c172917
Show file tree
Hide file tree
Showing 32 changed files with 4,090 additions and 3,168 deletions.
56 changes: 56 additions & 0 deletions .builder-rsync-filters
Original file line number Diff line number Diff line change
@@ -0,0 +1,56 @@
- *.code-workspace
- .babelrc
- .builder-rsync-filters
- .distignore
- .env.testing.linux.dist
- .env.testing.mac.dist
- .eslintrc.js
- .git
- .gitattributes
- .github
- .gitignore
- .idea
- .php-cs-fixer.cache
- .phpcs.xml
- .phplint-cache
- .phplint.yml
- .vscode
- .wordpress-org
- /dist
- Gruntfile.js
- README-build.md
- README.md
- RoboFile.php
- bin
- builder
- builder.yml
- builder.yml.dist
- codeception.dist.yml
- cypress
- cypress.json
- jest.config.ts
- jsconfig.json
- mix-manifest.json
- node_modules
- package-lock.json
- package.json
- phpcs.xml
- psalm.xml
- ray-dist.php
- ray.php
- screenshot-*.png
- scripts
- tailwind.config.js
- tests
- vendor/pimple/pimple/.gitignore
- vendor/pimple/pimple/.php_cs.dist
- vendor/psr/container/.gitignore
- vendor/publishpress/wordpress-reviews/phpcs.xml.dist
- vendor/publishpress/wordpress-version-notices/.gitignore
- vendor/publishpress/wordpress-version-notices/README.md
- vendor/publishpress/wordpress-version-notices/bin
- vendor/publishpress/wordpress-version-notices/codeception.dist.yml
- vendor/publishpress/wordpress-version-notices/codeception.yml
- vendor/publishpress/wordpress-version-notices/tests
- webpack.config.js
- webpack.mix.js
1 change: 1 addition & 0 deletions .github/ISSUE_TEMPLATE/release-free-plugin.md
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,7 @@ To release the Free plugin please make sure to check all the checkboxes below.

- [ ] Create the release branch as `release-<version>` based on the development branch
- [ ] Make sure to directly merge or use Pull Requests to merge hotfixes or features branches into the release branch
- [ ] Update publishpress-pro.pot language file
- [ ] Run `composer update` and check if there is any relevant update. Check if you need to lock the current version for any dependency. The `--no-dev` argument is optional here, since the build script will make sure to run the build with that argument.
- [ ] Update the changelog - make sure all the changes are there with a user-friendly description and that the release date is correct
- [ ] Update the version number to the next stable version. Use `$ vendor/bin/robo version <version-number>`
Expand Down
1 change: 1 addition & 0 deletions .github/ISSUE_TEMPLATE/release-pro-plugin.md
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,7 @@ To release the Pro plugin please make sure to check all the checkboxes below.

- [ ] Create the release branch as `release-<version>` based on the development branch
- [ ] Make sure to directly merge or use Pull Requests to merge hotfixes or features branches into the release branch
- [ ] Update publishpress.pot language file
- [ ] Update the `composer.json` file changing the version constraint to the Free plugin to use the most recent stable release tag
- [ ] Run `composer update` and check if there is any relevant update. Check if you need to lock the current version for any dependency. The `--no-dev` argument is optional here, since the build script will make sure to run the build with that argument.
- [ ] Update the changelog - make sure all the changes are there with a user-friendly description and that the release date is correct
Expand Down
47 changes: 0 additions & 47 deletions RoboFile.php

This file was deleted.

128 changes: 128 additions & 0 deletions builder/docker/Dockerfile
Original file line number Diff line number Diff line change
@@ -0,0 +1,128 @@
FROM php:7.4-cli

RUN set -ex; \
\
apt-get update; \
apt-get install -y \
libyaml-dev \
g++ \
make \
autoconf \
libzip-dev \
curl \
libcurl4-openssl-dev \
wget \
bash \
coreutils \
git \
openssh-client \
patch \
subversion \
tini \
unzip \
zip \
rsync \
; \
\
mkdir -p /usr/src/php/ext/yaml; \
curl -fsSL https://pecl.php.net/get/yaml | tar xvz -C "/usr/src/php/ext/yaml" --strip 1; \
\
docker-php-ext-configure zip; \
docker-php-ext-install zip gettext yaml; \
apt-get remove -y \
g++ \
make \
autoconf\
; \
\
apt-get purge -y --auto-remove; \
rm -rf /var/lib/apt/lists/*

RUN { \
# https://www.php.net/manual/en/errorfunc.constants.php
# https://github.com/docker-library/wordpress/issues/420#issuecomment-517839670
echo 'error_reporting = E_ERROR | E_WARNING | E_PARSE | E_CORE_ERROR | E_CORE_WARNING | E_COMPILE_ERROR | E_COMPILE_WARNING | E_RECOVERABLE_ERROR'; \
echo 'display_errors = Off'; \
echo 'display_startup_errors = Off'; \
echo 'log_errors = On'; \
echo 'error_log = /dev/stderr'; \
echo 'log_errors_max_len = 1024'; \
echo 'ignore_repeated_errors = On'; \
echo 'ignore_repeated_source = Off'; \
echo 'html_errors = Off'; \
} > /usr/local/etc/php/conf.d/error-logging.ini

# Install Composer
RUN printf "# composer php cli ini settings\n\
date.timezone=UTC\n\
memory_limit=-1\n\
" > $PHP_INI_DIR/php-cli.ini

ENV COMPOSER_ALLOW_SUPERUSER 1
ENV COMPOSER_HOME /tmp
ENV COMPOSER_VERSION 2.3.7

RUN set -eux ; \
# install https://github.com/mlocati/docker-php-extension-installer
curl \
--silent \
--fail \
--location \
--retry 3 \
--output /usr/local/bin/install-php-extensions \
--url https://github.com/mlocati/docker-php-extension-installer/releases/download/1.2.58/install-php-extensions \
; \
echo 182011b3dca5544a70fdeb587af44ed1760aa9a2ed37d787d0f280a99f92b008e638c37762360cd85583830a097665547849cb2293c4a0ee32c2a36ef7a349e2 /usr/local/bin/install-php-extensions | sha512sum --strict --check ; \
chmod +x /usr/local/bin/install-php-extensions ; \
# install public keys for snapshot and tag validation, see https://composer.github.io/pubkeys.html
curl \
--silent \
--fail \
--location \
--retry 3 \
--output /tmp/keys.dev.pub \
--url https://raw.githubusercontent.com/composer/composer.github.io/e7f28b7200249f8e5bc912b42837d4598c74153a/snapshots.pub \
; \
echo 572b963c4b7512a7de3c71a788772440b1996d918b1d2b5354bf8ba2bb057fadec6f7ac4852f2f8a8c01ab94c18141ce0422aec3619354b057216e0597db5ac2 /tmp/keys.dev.pub | sha512sum --strict --check ; \
curl \
--silent \
--fail \
--location \
--retry 3 \
--output /tmp/keys.tags.pub \
--url https://raw.githubusercontent.com/composer/composer.github.io/e7f28b7200249f8e5bc912b42837d4598c74153a/releases.pub \
; \
echo 47f374b8840dcb0aa7b2327f13d24ab5f6ae9e58aa630af0d62b3d0ea114f4a315c5d97b21dcad3c7ffe2f0a95db2edec267adaba3f4f5a262abebe39aed3a28 /tmp/keys.tags.pub | sha512sum --strict --check ; \
# download installer.php, see https://getcomposer.org/download/
curl \
--silent \
--fail \
--location \
--retry 3 \
--output /tmp/installer.php \
--url https://raw.githubusercontent.com/composer/getcomposer.org/f24b8f860b95b52167f91bbd3e3a7bcafe043038/web/installer \
; \
echo 3137ad86bd990524ba1dedc2038309dfa6b63790d3ca52c28afea65dcc2eaead16fb33e9a72fd2a7a8240afaf26e065939a2d472f3b0eeaa575d1e8648f9bf19 /tmp/installer.php | sha512sum --strict --check ; \
# install composer phar binary
php /tmp/installer.php \
--no-ansi \
--install-dir=/usr/bin \
--filename=composer \
--version=${COMPOSER_VERSION} \
; \
composer --ansi --version --no-interaction ; \
composer diagnose ; \
rm -f /tmp/installer.php ; \
find /tmp -type d -exec chmod -v 1777 {} +

RUN mkdir /app

VOLUME /app

WORKDIR /app

COPY scripts/build.sh /usr/local/bin/ppbuild

RUN chmod +x /usr/local/bin/ppbuild

ENTRYPOINT ["bash"]
Loading

0 comments on commit c172917

Please sign in to comment.