Skip to content
This repository has been archived by the owner on Feb 12, 2022. It is now read-only.

Commit

Permalink
Merge branch 'hotfix/release_notes'
Browse files Browse the repository at this point in the history
  • Loading branch information
tkral committed Aug 30, 2011
2 parents a13b371 + dd081ef commit e9dc55d
Showing 1 changed file with 37 additions and 0 deletions.
37 changes: 37 additions & 0 deletions ReleaseNotes.md
@@ -0,0 +1,37 @@
# Release Notes 22.0.6-BETA

## Upgrading to this Version
### Convert connection URLs to use query parameters
Force connection URLs now use standard query parameters. For example:

force://host;user=username;password=password

Becomes

force://host?user=username&password=password


Note that if a new connection URL is added directly to XML, any ampersand ('&') will need to be escaped as `&`

### Use ${} URL injection
A new JPA URL injection method is added that allows for better naming flexibility. Past versions performed URL injection based on naming convention. For example:

$ export FORCE_FORCEDATABASE_URL=force://host;user=username;password=password

Coupled with this persistence-unit:

<persistence-unit name="forceDatabase">
...

This can now be replaced with:

$ export FORCE_FORCEDATABASE_URL=force://host?user=username&password=password

And

<persistence-unit name="myPersistenceUnit">
<property name="datanucleus.ConnectionURL" value="${FORCE_FORCEDATABASE_URL}" />
...

## Bug Fixes
- A problem with local development container detection causes infinite OAuth redirect loop.

0 comments on commit e9dc55d

Please sign in to comment.