블로그 이미지
News and Announcements (at) Apache Software Foundation. 노안돼지
Apache Software Foundation The Apache User Group KLDP From download

Recent Post»

Recent Comment»

Recent Trackback»

Archive»

« 2024/5 »
1 2 3 4
5 6 7 8 9 10 11
12 13 14 15 16 17 18
19 20 21 22 23 24 25
26 27 28 29 30 31

 

'Derby'에 해당되는 글 3

  1. 2010.05.20 Apache Derby 10.6.1.0 릴리즈
  2. 2009.08.28 Apache Derby 10.5.3.0 릴리즈
  3. 2009.05.03 Apache Derby 10.5.1.1 released
 
아파치 소프트웨어 재단은 아파치 오픈 소스 소프트웨어 프로젝트 커뮤니티 지원을 제공합니다.
아파치 프로젝트는 협업과 개발 프로세스를 기반으로 하는 상호간의 공감대와 개방되어 있는 실용적인 소프트웨어 라이센스, 그 분야에서 선두를 달릴 수 있는 고품질 소프트웨어 개발을 추구하고 있습니다.

우리는 심플한 서버 공유 프로젝트의 모임이라고도 하지만 오히려 개발자와 사용자간의 커뮤니티라고 생각합니다.

Apache Derby 10.6.1.0 릴리즈

뉴스/소식 | 2010. 5. 20. 09:55 | Posted by 노안돼지


The Apache Derby project is pleased to announce release 10.6.1.0. In addition to introducing many new features, this release fixes a security flaw. Please see below for more details.

Apache Derby is a subproject of the Apache DB project. Derby is a pure Java relational database engine which conforms to the ISO/ANSI SQL and JDBC standards. Derby aims to be easy for developers and end-users to work with.

Derby 10.6.1.0 can be obtained from the Derby download site:

  http://db.apache.org/derby/derby_downloads.html.


Derby 10.6.1.0 contains the following new features:

   * Sequence Generators - Named generators for allocating successive, evenly spaced numbers. See feature T176 of the SQL Standard.
   * User-defined types - Named types bound to serializable Java objects.
   * Restricted table functions - Limits on the columns and rows returned by table functions.
   * XPLAIN statistics collection - Query plan statistics stored in tables for later analysis.
   * GROUP BY ROLLUP - A subset of the SQL Standard ROLLUP functionality on the GROUP BY clause. See feature T431 of the SQL Standard.
   * CROSS JOIN - CROSS JOIN syntax. See feature F401-04 of the SQL Standard.
   * Named columns join - USING clauses in joins.
   * SHOW FUNCTIONS - IJ command that lists stored functions.
   * In-memory back end enhancements - Numerous improvements, including the ability to delete in-memory databases.
   * ORDER BY in subqueries - Syntax for explicitly ordering rows returned by subqueries. See features F851, F852, and F855 of the SQL Standard.
   * OFFSET, FETCH FIRST/NEXT in subqueries - Generalized syntax for retrieving row subsets. See features F856, F857, F858, F859, F861, F862, F863, and F864 of the SQL Standard.
   * NATURAL JOIN - Support for NATURAL JOIN. See feature T431 of the SQL Standard.
   * Qualified identifers in ij - Ability to reference cursors and prepared statements in other connections.
   * Configurable hash algorithm - Ability to customize the hash algorithm used by BUILTIN authentication.
   * Context-sniffing scripts - Ability of shipped scripts to locate Derby jars when DERBY_HOME isn't set.
   * Case-insensitive strings - Ability to ignore case in string comparisons and sorts.

In addition, Derby 10.6.1.0 contains many bug and documentation fixes.

Please try out this new release.

Derby 10.6.1.0 also fixes a security flaw tracked by the Apache Common Vulnerabilities and Exposures id "CVE-2009-4269". This flaw made it easy to crack passwords managed by Derby's BUILTIN authentication logic. Originally, the BUILTIN logic was intended only for testing purposes. However, Derby's user documentation suggested that this scheme was production-ready and it appears that many users rely on BUILTIN authentication in production. Tracked by DERBY-4483, the flaw is addressed as follows:

1) The bug itself is corrected for newly created 10.6 databases.

2) Password substitution is not allowed when logging into a database where the bug is corrected and BUILTIN passwords are stored in the database. See the release note for DERBY-4483.

3) Derby's default password-hashing scheme is changed from SHA-1 to SHA-256, which is harder to crack.

4) The user guides are glossed with warnings against production use of the BUILTIN authentication mechanism.

Users are urged to

i) Migrate production systems off the BUILTIN mechanism onto Derby's LDAP and user-customized authentication schemes.

ii) Or hard-upgrade to 10.6.1.0 immediately and perform the following additional steps:

a) Set derby.authentication.builtin.algorithm to a stronger authentication scheme like SHA-256 or SHA-512.

b) Reset all passwords stored in the database.

c) Stop using strong password substitution. Instead, encrypt all network traffic using SSL/TLS.

:

Apache Derby 10.5.3.0 릴리즈

뉴스/소식 | 2009. 8. 28. 16:58 | Posted by 노안돼지
The Apache Derby project is pleased to announce a new bug-fix release of Derby, 10.5.3.0.

Apache Derby is a subproject of the Apache DB project. Derby is a pure Java relational database engine which conforms to the ISO/ANSI SQL and JDBC standards. Derby aims to be easy for developers and customers to use.

Derby 10.5.3.0 can be obtained from the Apache download site:

 http://db.apache.org/derby/derby_downloads.html


Derby 10.5.3.0 contains many bug fixes plus localizations for messages added in the previous feature release, 10.5.1.1. 10.5.3.0 replaces 10.5.2.0, which introduced a query-ordering regression.

Please try out 10.5.3.0.
:

Apache Derby 10.5.1.1 released

뉴스/소식 | 2009. 5. 3. 22:51 | Posted by 노안돼지

Apache Derby 프로젝트에서 새로운 Derby 10.5.1.1을 릴리즈 하였습니다.

Apache Derby는 Apache DB 프로젝트의 서브 프로젝트로써,  ISO/ANSI SQL과 JDBC 표준을 따르는 순수 Java로 된 관계형 데이터베이스 엔진입니다.
Derby를 개발하는 목적은 개발자와 사용자(end-users)가 쉽게 업무를 처리 할 수 있도록 하는 것입니다.  

Derby 10.5.1.1은 아래 Derby 다운로드 사이트에서 받을 수 있습니다.
  http://db.apache.org/derby/derby_downloads.html.


Derby 10.5.1.1 contains the following new features:
  • SQL Roles - Support for most of SQL feature T331 and parts of T332
  • Generated Columns - Support for SQL feature T175
  • LOB Improvements - Many performance and usability improvements for BLOBs and CLOBs
  • Replication of encrypted databases - Support for replication of encrypted databases
  • OFFSET/FETCH FIRST - Support for limit result set cardinality (new SQL 2008 syntax)
  • In-memory back end - first revision of a storage engine for Derby storing all data in-memory.
  • Update Statistics Stored Procedure - Make it possible to refresh statistics


추가로, Derby 10.5.1.1은 많은 버그와 그동안 많은 수정내역을 가지고 있습니다.
여러분, Derby 10.5.1.1을 사용해보세요.!!!

: