Skip to content

Commit 15f6143

Browse files
onesignal-deploygithub-actions[bot]fadi-george
committed
chore: Release 5.1.16 (#841)
Co-authored-by: github-actions[bot] <noreply@onesignal.com> Co-authored-by: Fadi George <fadii925@gmail.com>
1 parent 767e9e8 commit 15f6143

393 files changed

Lines changed: 1892 additions & 19769 deletions

File tree

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

.csharpierignore

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,5 @@
11
# Exclude Packages folders (Unity packages and third-party code)
2-
**/Packages/**
2+
**/Packages/**
3+
4+
# Exclude non-C# files
5+
**/*.xml

.github/workflows/cd.yml

Lines changed: 26 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,29 @@ jobs:
1717
if: |
1818
github.event.pull_request.merged == true &&
1919
contains(github.event.pull_request.title, 'chore: Release')
20-
uses: OneSignal/sdk-actions/.github/workflows/publish-npm-github.yml@main
21-
with:
22-
branch: ${{ github.event.pull_request.base.ref }}
23-
packages: '["com.onesignal.unity.core", "com.onesignal.unity.android", "com.onesignal.unity.ios"]'
20+
runs-on: ubuntu-latest
21+
steps:
22+
- name: Checkout
23+
uses: actions/checkout@v5
24+
25+
- name: Setup Node
26+
uses: actions/setup-node@v6
27+
with:
28+
node-version: "24"
29+
registry-url: "https://registry.npmjs.org"
30+
31+
- name: Determine npm tag
32+
id: npm-tag
33+
run: |
34+
VERSION=$(node -p "require('./com.onesignal.unity.core/package.json').version")
35+
if [[ "$VERSION" == *"alpha"* ]]; then
36+
echo "tag=--tag alpha" >> $GITHUB_OUTPUT
37+
elif [[ "$VERSION" == *"beta"* ]]; then
38+
echo "tag=--tag beta" >> $GITHUB_OUTPUT
39+
fi
40+
41+
- run: npm publish com.onesignal.unity.core --access public --provenance ${{ steps.npm-tag.outputs.tag }}
42+
43+
- run: npm publish com.onesignal.unity.android --access public --provenance ${{ steps.npm-tag.outputs.tag }}
44+
45+
- run: npm publish com.onesignal.unity.ios --access public --provenance ${{ steps.npm-tag.outputs.tag }}

.gitignore

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,5 @@
11

22
OneSignalExample/.idea/
3+
OneSignalExample/.utmp/
34

45
.DS_Store

OneSignalExample/Assets/OneSignal/Attribution/OneSignal.UnityPackage.Attribution.asmdef

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@
1616
"versionDefines": [
1717
{
1818
"name": "com.onesignal.unity.core",
19-
"expression": "5.1.15",
19+
"expression": "5.1.16",
2020
"define": "ONE_SIGNAL_INSTALLED"
2121
}
2222
],

OneSignalExample/Assets/OneSignal/CHANGELOG.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,10 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
55
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
66

77
## [Unreleased]
8+
## [5.1.16]
9+
### Changed
10+
11+
812
## [5.1.15]
913
### Changed
1014
- Updated included Android SDK from 5.1.31 to [5.1.37](https://github.com/OneSignal/OneSignal-Android-SDK/releases/tag/5.1.37)

OneSignalExample/Assets/OneSignal/Editor/OneSignal.UnityPackage.Editor.asmdef

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@
1616
"versionDefines": [
1717
{
1818
"name": "com.onesignal.unity.core",
19-
"expression": "5.1.15",
19+
"expression": "5.1.16",
2020
"define": "ONE_SIGNAL_INSTALLED"
2121
}
2222
],

OneSignalExample/Assets/OneSignal/Example/OneSignal.UnityPackage.Example.asmdef

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@
1818
"versionDefines": [
1919
{
2020
"name": "com.onesignal.unity.core",
21-
"expression": "5.1.15",
21+
"expression": "5.1.16",
2222
"define": "ONE_SIGNAL_INSTALLED"
2323
}
2424
],
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
5.1.15
1+
5.1.16

OneSignalExample/Assets/Plugins/Android/gradleTemplate.properties

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
org.gradle.jvmargs=-Xmx**JVM_HEAP_SIZE**M
22
org.gradle.parallel=true
3-
unityStreamingAssets=.unity3d**STREAMING_ASSETS**
3+
unityStreamingAssets=**STREAMING_ASSETS**
44
# Android Resolver Properties Start
55
android.useAndroidX=true
66
android.enableJetifier=true
Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,8 @@
1+
org.gradle.jvmargs=-Xmx**JVM_HEAP_SIZE**M
2+
org.gradle.parallel=true
3+
unityStreamingAssets=.unity3d**STREAMING_ASSETS**
4+
# Android Resolver Properties Start
5+
android.useAndroidX=true
6+
android.enableJetifier=true
7+
# Android Resolver Properties End
8+
**ADDITIONAL_PROPERTIES**

0 commit comments

Comments
 (0)