Skip to content
Snippets Groups Projects

Compare revisions

Changes are shown as if the source revision was being merged into the target revision. Learn more about comparing revisions.

Source

Select target project
No results found

Target

Select target project
  • Zandor300/apnsframework
1 result
Show changes
Commits on Source (4)
......@@ -97,3 +97,6 @@ fabric.properties
*.p8
testNotification.php
/node_modules/
yarn-error.log
......@@ -2,6 +2,7 @@ image: composer:latest
stages:
- lint
- publish
cache:
paths:
......@@ -33,3 +34,19 @@ php-lint-examples:
tags:
- docker
allow_failure: true
publish:
image: node:lts
stage: publish
before_script:
- yarn install
script:
- yarn semantic-release
cache:
key: ${CI_COMMIT_REF_SLUG}
paths:
- .npm/
tags:
- docker
rules:
- if: $CI_COMMIT_BRANCH == $CI_DEFAULT_BRANCH && $CI_COMMIT_MESSAGE !~ /chore(release)$/
{
"branches": ["master"],
"plugins": [
"@semantic-release/commit-analyzer",
"@semantic-release/release-notes-generator",
"@semantic-release/changelog",
"@iwavesmedia/semantic-release-composer",
"@semantic-release/gitlab",
[
"@semantic-release/git",
{
"assets": ["composer.json", "CHANGELOG.md"],
"message": "chore(release): ${nextRelease.version}\n\n${nextRelease.notes}"
}
]
]
}
# [1.4.0](https://git.zsinfo.nl/Zandor300/apnsframework/compare/v1.3.3...v1.4.0) (2022-04-12)
### Bug Fixes
* Fix semantic-release package name for composer. ([af27130](https://git.zsinfo.nl/Zandor300/apnsframework/commit/af2713084f004768acfadc2b2af499db79ae1d6d))
### Features
* Implement automated release using semantic-release. ([172acc5](https://git.zsinfo.nl/Zandor300/apnsframework/commit/172acc566964141103bf21136d55ad8341a99fd5))
# 1.0.0 (2022-04-12)
### Bug Fixes
* Fix semantic-release package name for composer. ([af27130](https://git.zsinfo.nl/Zandor300/apnsframework/commit/af2713084f004768acfadc2b2af499db79ae1d6d))
### Features
* Implement automated release using semantic-release. ([172acc5](https://git.zsinfo.nl/Zandor300/apnsframework/commit/172acc566964141103bf21136d55ad8341a99fd5))
{
"name": "zandor300/apnsframework",
"description": "PHP framework for easy interaction with Apple's Push Notification Service.",
"type": "library",
"keywords": ["APNS", "Framework", "Apple", "iOS", "push", "notification"],
"homepage": "https://git.zsinfo.nl/Zandor300/apnsframework",
"license": "Apache-2.0",
"require": {
"php": ">=7.1.0",
"ext-json": "*",
"ext-curl": "*",
"firebase/php-jwt": "^5.2"
},
"autoload": {
"psr-4": {
"APNSFramework\\": "apnsframework/"
"name": "zandor300/apnsframework",
"version": "1.4.0",
"description": "PHP framework for easy interaction with Apple's Push Notification Service.",
"type": "library",
"keywords": [
"APNS",
"Framework",
"Apple",
"iOS",
"push",
"notification"
],
"homepage": "https://git.zsinfo.nl/Zandor300/apnsframework",
"license": "Apache-2.0",
"require": {
"php": ">=7.1.0",
"ext-json": "*",
"ext-curl": "*",
"firebase/php-jwt": "^5.2"
},
"autoload": {
"psr-4": {
"APNSFramework\\": "apnsframework/"
}
}
}
}
}
\ No newline at end of file
{
"name": "@zandor300/apnsframework",
"private": true,
"dependencies": {
"@iwavesmedia/semantic-release-composer": "1.0.0",
"@semantic-release/changelog": "6.0.1",
"@semantic-release/git": "10.0.1",
"@semantic-release/gitlab": "9.0.0",
"semantic-release": "19.0.2"
}
}
This diff is collapsed.