Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
36 commits
Select commit Hold shift + click to select a range
80500b4
Automatic merge into master to Release 3.18.6
situmops Feb 20, 2026
f225669
Automatic merge into master to Release 3.18.7
situmops Feb 23, 2026
ac5c4d2
Automatic merge into master to Release 3.18.8
situmops Feb 24, 2026
d4bc9da
Automatic merge into master to Release 3.18.9
situmops Feb 25, 2026
16c31d0
Automatic merge into master to Release 3.18.10
situmops Mar 18, 2026
2be003f
Automatic merge into master to Release 3.18.11
situmops Mar 23, 2026
857f3a6
Automatic merge into master to Release 3.18.12
situmops Apr 7, 2026
c6e5312
Merge pull request #609 from situmtech/release/3.18.13
SilviaMRegueira Apr 8, 2026
3411ec5
Automatic merge into master to Release 3.18.14
situmops Apr 9, 2026
2a96744
Automatic merge into master to Release 3.18.15
situmops Apr 13, 2026
2c0b5fe
Automatic merge into master to Release 3.18.16
situmops Apr 16, 2026
8e89e32
Automatic merge into master to Release 3.18.17
situmops May 4, 2026
aab7c2a
Automatic merge into master to Release 3.18.18
situmops May 5, 2026
f246476
Automatic merge into master to Release 3.18.19
situmops May 5, 2026
9e6a2e7
Automatic merge into master to Release 3.18.20
situmops May 20, 2026
544777c
Automatic merge into master to Release 3.18.21
situmops May 28, 2026
f3b291c
Automatic merge into master to Release 3.18.22
situmops Jun 4, 2026
e039e40
Automatic merge into master to Release 3.18.23
situmops Jun 9, 2026
6cf0c7b
Automatic merge into master to Release 3.18.24
situmops Jun 11, 2026
bb9dfd1
Automatic merge into master to Release 3.18.25
situmops Jun 30, 2026
c1c6c03
Merge pull request #637 from situmtech/release/3.18.25
SilviaMRegueira Jun 30, 2026
f5456f5
Automatic merge into master to Release 3.18.26
situmops Jul 1, 2026
6a6c501
Merge pull request #642 from situmtech/release/3.18.26
SilviaMRegueira Jul 1, 2026
b2c30cc
Added support for token authentication
adrian-situm Jul 7, 2026
f849990
Updated react native version
adrian-situm Jul 8, 2026
499e817
Added native implementation for setToken
adrian-situm Jul 8, 2026
22ec8b6
Fixed the auth being sent to the viewer when loading it with an apike…
adrian-situm Jul 9, 2026
fd61126
MapView now reloads when changing the apikey
adrian-situm Jul 9, 2026
0e18307
Cleaned some logic
adrian-situm Jul 10, 2026
ccab37f
Added comments and cleaned old logic
adrian-situm Jul 10, 2026
021f572
Updated changelog
adrian-situm Jul 10, 2026
ca185cb
Small refactors
adrian-situm Jul 10, 2026
cf94bc3
Refactors and logic changes to SitumProvider
adrian-situm Jul 13, 2026
11f885e
Small adjustments
adrian-situm Jul 13, 2026
e78e8b0
Simplified logic in SitumProvider and improved changelog
adrian-situm Jul 15, 2026
98c92a3
Merge remote-tracking branch 'origin/develop' into feature/PRD-1032
adrian-situm Jul 15, 2026
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
12 changes: 10 additions & 2 deletions CHANGELOG_UNRELEASED.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,11 @@
## Unreleased
### Added

- Updated Android example app targetSdkVersion from 35 to 37
- Added JWT token authentication support through `SitumPlugin.setToken()` and the new optional `SitumProvider.token` property.

@cristian-situm cristian-situm Jul 10, 2026

Copy link
Copy Markdown
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Que opcion va a tener preferencia en mi app si llamo a las 2 en mi codigo ? Entiendo que la ultima que hayas llamado ? Cual seria la opcion "ideal" o mas normal/idiomatica de usar la autenticacion por token ?

@adrian-situm adrian-situm Jul 10, 2026

Copy link
Copy Markdown
Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Exacto, se aplica la última a la que hayas llamado. La forma ideal de usarlo es por medio del provider, pues se integra con el flujo de React.
Por otro lado, aclaro que en el provider he hecho que el token tenga prioridad sobre la apikey para evitar posibles errores si mandas los 2 a la vez. A esto tampoco creo que haya que darle muchas vueltas, al final no se deberían utilizar apikey y token a la vez.

Copy link
Copy Markdown
Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Lo he cambiado, ya no hay prioridad, es siempre el último que pasas

Copy link
Copy Markdown
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Yo reflejaria esta aclaracion en el changelog y en la docu del provider si tiene

Copy link
Copy Markdown
Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Hecho

- MapView authentication can now be updated at runtime when using JWT token authentication.
Comment thread
cristian-situm marked this conversation as resolved.
- The most recently updated credential becomes the active authentication method, regardless of whether it is added through a `SitumPlugin` method or via a `SitumProvider` prop.

### Changed

- `SitumProvider.apiKey` is now optional. If no credentials are available when the MapView loads, it waits until authentication is provided.
- Updated the example application React Native from 0.79.1 to 0.83.10 to fix an issue that prevented the app from compiling on iOS.
- Updated Android example application targetSdkVersion from 35 to 37.
Loading