com.beamable 5.0.0 → 5.0.1-PREVIEW.RC1

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/.attestation.p7m CHANGED
Binary file
package/CHANGELOG.md CHANGED
@@ -5,6 +5,10 @@ All notable changes to this project will be documented in this file.
5
5
  The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
6
6
  and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
7
7
 
8
+ ## [5.0.1] - 2026-03-26
9
+ ### Fixed
10
+ - No longer automatically generate clients for readonly service references
11
+
8
12
  ## [5.0.0] - 2026-02-19
9
13
  ### Added
10
14
  - Unity 6.3 Support
@@ -54,7 +58,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
54
58
 
55
59
  ### Changed
56
60
  - Improved Beamable CLI installation reliability with automatic retry mechanism (up to 5 attempts) on timeout failures, along with enhanced error messaging for troubleshooting.
57
- - Improved Beam Accounts window when the `config-defaults.txt` is missing values.
61
+ - Improved Beam Accounts window when the `config-defaults.txt` is missing values.
58
62
  - Updated Beam CLI version to 6.2.0
59
63
 
60
64
  ## [3.1.7] - 2025-12-05
@@ -74,7 +78,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
74
78
  ### Fixed
75
79
  - Fixed an `IndexOutOfRangeException` occurring when using the Content Editor Window.
76
80
  - Fixed an issue where button to create a new snapshot was not displayed when no snapshots existed.
77
-
81
+
78
82
  ## [3.1.4] - 2025-10-7
79
83
  ### Fixed
80
84
  - Fixed an issue where content drawer was not including subtype contents
@@ -107,7 +111,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
107
111
  ## [3.0.0] - 2025-08-05
108
112
 
109
113
  ### Changed
110
- - Heartbeats are no longer sent when Realm is configured to use the Beamable websocket.
114
+ - Heartbeats are no longer sent when Realm is configured to use the Beamable websocket.
111
115
  - Able to use the new Client Code Generator from CLI that uses OpenAPI instead of the old one that uses Reflection
112
116
  - `Core.Platform.Api` namespace moved into `Beamable.Api` namespace
113
117
  - `Core.Platform` namespace moved into `Beamable` namespace
@@ -126,11 +130,24 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
126
130
  - Beamable Environment Switcher is now part of the login flow.
127
131
 
128
132
  ### Added
129
- - New Login window that uses CLI workflows rather than storing editor login information twice.
133
+ - New Login window that uses CLI workflows rather than storing editor login information twice.
130
134
  - New Content Manager window that uses CLI workflows and receives dynamic updates.
131
135
  - `BeamEditorContext.Microservices` property allows access to Microservice clients at editor time. [4102](https://github.com/beamable/BeamableProduct/issues/4102)
132
136
  - New Validation for Cron Schedule Definition
133
137
 
138
+ ## [2.4.5] - 2026-03-17
139
+
140
+ ### Changed
141
+
142
+ - Upgrade CLI to 4.3.6
143
+ - Backported content serialization performance improvements [4123](https://github.com/beamable/BeamableProduct/issues/4123)
144
+
145
+ ## [2.4.4] - 2026-03-03
146
+
147
+ ### Changed
148
+
149
+ - Upgrade CLI to 4.3.5
150
+
134
151
  ## [2.4.3] - 2025-08-01
135
152
  ### Fixed
136
153
  - TMP import infinite callback.
@@ -146,7 +163,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
146
163
  ### Fixed
147
164
  - Beamable Editor only checks for TMP and Addressable dependencies once per session.
148
165
 
149
- ## [2.4.0] - 2025-06-11
166
+ ## [2.4.0] - 2025-06-11
150
167
 
151
168
  ### Fixed
152
169
  - Fixed issue that CloudSaving could generate corrupted save files if the application was closed during saving process.
@@ -1537,4 +1554,4 @@ This is a broken package. It includes changes from the 1.1.0 release. Please do
1537
1554
  - Added OnUserLoggingOut event available from API. The event fires before a user switches account.
1538
1555
  - Doc Url to package.json.
1539
1556
  - Event phase validation. Events can no longer have zero phases. This may lead to disappearing Event Phases if your Beamable version is mismatched.
1540
- - Switched MatchmakingService API to point to our new backend matchmaking service.
1557
+ - Switched MatchmakingService API to point to our new backend matchmaking service.
@@ -12,6 +12,18 @@ namespace Beamable.Server.Editor.Usam
12
12
  {
13
13
  public partial class UsamService
14
14
  {
15
+ public bool ShouldServiceAutoGenerateClient(BeamManifestServiceEntry entry)
16
+ {
17
+ if (entry.IsReadonlyPackage) return false;
18
+
19
+ if (_config.AutoGenerateClientOnBuilds.TryGetValue(entry.beamoId, out var value))
20
+ {
21
+ return value;
22
+ }
23
+
24
+ return true;
25
+ }
26
+
15
27
  public bool ShouldServiceAutoGenerateClient(string beamoId)
16
28
  {
17
29
  if (_config.AutoGenerateClientOnBuilds.TryGetValue(beamoId, out var value))
@@ -133,7 +145,7 @@ namespace Beamable.Server.Editor.Usam
133
145
  public async Promise GenerateClient()
134
146
  {
135
147
  var idArr = latestManifest.services
136
- .Where(x => ShouldServiceAutoGenerateClient(x.beamoId))
148
+ .Where(ShouldServiceAutoGenerateClient)
137
149
  .Select(x => x.beamoId)
138
150
  .ToArray();
139
151
  await GenerateClient(new ProjectGenerateClientArgs
@@ -164,7 +176,7 @@ namespace Beamable.Server.Editor.Usam
164
176
  public async Promise GenerateClientFromOAPI()
165
177
  {
166
178
  var idArr = latestManifest.services
167
- .Where(x => ShouldServiceAutoGenerateClient(x.beamoId))
179
+ .Where(ShouldServiceAutoGenerateClient)
168
180
  .Select(x => x.beamoId)
169
181
  .ToArray();
170
182
  var args = new ProjectGenerateClientOapiArgs
@@ -1,9 +1,9 @@
1
- {
2
- "environment": "prod",
1
+ {
2
+ "environment": "staging",
3
3
  "apiUrl": "https://api.beamable.com",
4
4
  "portalUrl": "https://portal.beamable.com",
5
5
  "beamMongoExpressUrl": "https://storage.beamable.com",
6
6
  "dockerRegistryUrl": "https://microservices.beamable.com/v2/",
7
7
  "isUnityVsp": "false",
8
- "sdkVersion": "5.0.0"
8
+ "sdkVersion": "5.0.1-PREVIEW.RC1"
9
9
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "com.beamable",
3
- "version": "5.0.0",
3
+ "version": "5.0.1-PREVIEW.RC1",
4
4
  "displayName": "Beamable",
5
5
  "description": "A better way to build games in Unity\n",
6
6
  "unity": "2021.3",